Change {DECLARE,IMPLEMENT}_*CLASS and {DECLARE,BEGIN,END}_EVENT_TABLE
occurrences to use the wx-prefixed version of the macros.
		
	
		
			
				
	
	
		
			66 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			66 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| /////////////////////////////////////////////////////////////////////////////
 | |
| // Name:        wx/gtk1/minifram.h
 | |
| // Purpose:     wxMiniFrame class
 | |
| // Author:      Robert Roebling
 | |
| // Copyright:   (c) Robert Roebling
 | |
| // Licence:     wxWindows licence
 | |
| /////////////////////////////////////////////////////////////////////////////
 | |
| 
 | |
| #ifndef __GTKMINIFRAMEH__
 | |
| #define __GTKMINIFRAMEH__
 | |
| 
 | |
| #include "wx/defs.h"
 | |
| 
 | |
| #if wxUSE_MINIFRAME
 | |
| 
 | |
| #include "wx/object.h"
 | |
| #include "wx/frame.h"
 | |
| 
 | |
| //-----------------------------------------------------------------------------
 | |
| // classes
 | |
| //-----------------------------------------------------------------------------
 | |
| 
 | |
| class WXDLLIMPEXP_FWD_CORE wxMiniFrame;
 | |
| 
 | |
| //-----------------------------------------------------------------------------
 | |
| // wxMiniFrame
 | |
| //-----------------------------------------------------------------------------
 | |
| 
 | |
| class WXDLLIMPEXP_CORE wxMiniFrame: public wxFrame
 | |
| {
 | |
|     wxDECLARE_DYNAMIC_CLASS(wxMiniFrame);
 | |
| 
 | |
| public:
 | |
|     wxMiniFrame() {}
 | |
|     wxMiniFrame(wxWindow *parent,
 | |
|             wxWindowID id,
 | |
|             const wxString& title,
 | |
|             const wxPoint& pos = wxDefaultPosition,
 | |
|             const wxSize& size = wxDefaultSize,
 | |
|             long style = wxDEFAULT_FRAME_STYLE | wxTINY_CAPTION,
 | |
|             const wxString& name = wxFrameNameStr)
 | |
|     {
 | |
|         Create(parent, id, title, pos, size, style, name);
 | |
|     }
 | |
| 
 | |
|     bool Create(wxWindow *parent,
 | |
|             wxWindowID id,
 | |
|             const wxString& title,
 | |
|             const wxPoint& pos = wxDefaultPosition,
 | |
|             const wxSize& size = wxDefaultSize,
 | |
|             long style = wxDEFAULT_FRAME_STYLE | wxTINY_CAPTION,
 | |
|             const wxString& name = wxFrameNameStr);
 | |
| 
 | |
|     virtual void SetTitle( const wxString &title );
 | |
|  // implementation
 | |
| 
 | |
|     bool   m_isDragging;
 | |
|     int    m_oldX,m_oldY;
 | |
|     int    m_diffX,m_diffY;
 | |
| };
 | |
| 
 | |
| #endif
 | |
| 
 | |
| #endif
 | |
|   //  __GTKMINIFRAMEH__
 |