]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/x11/toplevel.h
add possibility to specify the conversion to use in wxStringOutputStream; use it...
[wxWidgets.git] / include / wx / x11 / toplevel.h
index 013d3a2909c64dc296e3ffe1ab90cdeb2992b292..7aaffb52437563889eae74c960e0621c3ae92ea4 100644 (file)
 #ifndef _WX_X11_TOPLEVEL_H_
 #define _WX_X11_TOPLEVEL_H_
 
-#ifdef __GNUG__
-    #pragma interface "toplevel.h"
-#endif
-
 // ----------------------------------------------------------------------------
 // wxTopLevelWindowX11
 // ----------------------------------------------------------------------------
 
-class WXDLLEXPORT wxTopLevelWindowX11 : public wxTopLevelWindowBase
+class WXDLLIMPEXP_CORE wxTopLevelWindowX11 : public wxTopLevelWindowBase
 {
 public:
     // constructors and such
@@ -50,34 +46,26 @@ public:
     virtual ~wxTopLevelWindowX11();
 
     // implement base class pure virtuals
-    virtual void Maximize(bool maximize = TRUE);
+    virtual void Maximize(bool maximize = true);
     virtual bool IsMaximized() const;
-    virtual void Iconize(bool iconize = TRUE);
+    virtual void Iconize(bool iconize = true);
     virtual bool IsIconized() const;
-    virtual void SetIcon(const wxIcon& icon) { SetIcons( wxIconBundle( icon ) ); }
     virtual void SetIcons(const wxIconBundle& icons);
     virtual void Restore();
 
-    virtual bool Show( bool show = TRUE );
+    virtual bool Show( bool show = true );
 
     virtual bool ShowFullScreen( bool show, long style = wxFULLSCREEN_ALL );
     virtual bool IsFullScreen() const { return m_fsIsShowing; }
 
     virtual void SetTitle( const wxString& title);
     virtual wxString GetTitle() const;
-    
+
     // implementation
-    void SetNeedResizeInIdle( bool set = TRUE )
+    void SetNeedResizeInIdle( bool set = true )
         { m_needResizeInIdle = set; }
     void SetConfigureGeometry( int x, int y, int width, int height )
         { m_x = x; m_y = y; m_width = width; m_height = height; }
-    
-protected:
-    // common part of all ctors
-    void Init();
-
-    // set the icon for the window
-    void DoSetIcon( const wxIcon& icon );
 
     virtual bool SetShape(const wxRegion& region);
 
@@ -85,9 +73,17 @@ protected:
     // client area smaller
     virtual wxPoint GetClientAreaOrigin() const;
 
+    virtual void OnInternalIdle();
+
+protected:
+    // common part of all ctors
+    void Init();
+
+    // set the icon for the window
+    void DoSetIcon( const wxIcon& icon );
+
     // For implementation of delayed resize events
     bool m_needResizeInIdle;
-    virtual void OnInternalIdle();
 
     virtual void DoGetClientSize( int *width, int *height ) const;
     virtual void DoGetSize( int *width, int *height ) const;
@@ -96,7 +92,7 @@ protected:
         int width, int height,
         int sizeFlags = wxSIZE_AUTO);
     virtual void DoGetPosition( int *x, int *y ) const;
-    
+
     // Is the frame currently iconized?
     bool m_iconized;
 
@@ -110,13 +106,12 @@ protected:
     bool                  m_fsIsMaximized;
     bool                  m_fsIsShowing;
     wxString              m_title;
-    
+
     // Geometry
     int                   m_x,m_y,m_width,m_height;
 };
 
 // list of all frames and modeless dialogs
-//extern WXDLLEXPORT_DATA(wxWindowList) wxModelessWindows;
+//extern WXDLLIMPEXP_DATA_CORE(wxWindowList) wxModelessWindows;
 
 #endif // _WX_X11_TOPLEVEL_H_
-