]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/gtk/minifram.h
Support for G_FILENAME_ENCODING=@locale
[wxWidgets.git] / include / wx / gtk / minifram.h
index 3747e49ffc31e14e48beeb37a5400d369f7032cc..5f62b0af38e17982369feaa557ebcca3c51e6dbb 100644 (file)
 #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__