#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"
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__