X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/2b854a32613f34669af815e1416a6c623a4c2c5b..7bccea09a71ae668dc07f6d7c340160c15c33fce:/include/wx/gtk/minifram.h diff --git a/include/wx/gtk/minifram.h b/include/wx/gtk/minifram.h index 3747e49ffc..5f62b0af38 100644 --- a/include/wx/gtk/minifram.h +++ b/include/wx/gtk/minifram.h @@ -10,11 +10,14 @@ #ifndef __GTKMINIFRAMEH__ #define __GTKMINIFRAMEH__ -#ifdef __GNUG__ +#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) #pragma interface #endif #include "wx/defs.h" + +#if wxUSE_MINIFRAME + #include "wx/object.h" #include "wx/frame.h" @@ -53,17 +56,15 @@ public: long style = wxDEFAULT_FRAME_STYLE | wxTINY_CAPTION_HORIZ, const wxString& name = wxFrameNameStr); - // implementation + virtual void SetTitle( const wxString &title ); + // implementation + bool m_isDragging; int m_oldX,m_oldY; int m_diffX,m_diffY; - - void DrawFrame( int x, int y ); - void OnPaint( wxPaintEvent &event ); - void OnMouse( wxMouseEvent &event ); - - DECLARE_EVENT_TABLE() }; +#endif + #endif // __GTKMINIFRAMEH__