X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/2187eef5bb7a81ee3b2738a312f4ecfceb49bded..2c17722ec8a15d93ef9ec4a4ff390a0db9a34d9d:/include/wx/motif/toplevel.h?ds=sidebyside

diff --git a/include/wx/motif/toplevel.h b/include/wx/motif/toplevel.h
index 61c26d82e8..80e3f1d204 100644
--- a/include/wx/motif/toplevel.h
+++ b/include/wx/motif/toplevel.h
@@ -12,11 +12,7 @@
 #ifndef __MOTIFTOPLEVELH__
 #define __MOTIFTOPLEVELH__
 
-#if defined(__GNUG__) && !defined(__APPLE__)
-    #pragma interface "toplevel.h"
-#endif
-
-class wxTopLevelWindowMotif : public wxTopLevelWindowBase
+class WXDLLIMPEXP_CORE wxTopLevelWindowMotif : public wxTopLevelWindowBase
 {
 public:
     wxTopLevelWindowMotif() { Init(); }
@@ -44,9 +40,9 @@ public:
     virtual bool ShowFullScreen( bool show, long style = wxFULLSCREEN_ALL );
     virtual bool IsFullScreen() const;
 
-    virtual void Maximize(bool maximize = TRUE);
+    virtual void Maximize(bool maximize = true);
     virtual void Restore();
-    virtual void Iconize(bool iconize = TRUE);
+    virtual void Iconize(bool iconize = true);
     virtual bool IsMaximized() const;
     virtual bool IsIconized() const;
 
@@ -56,6 +52,12 @@ public:
     virtual wxString GetTitle() const { return m_title; }
     virtual void SetTitle( const wxString& title ) { m_title = title; }
 
+    virtual void DoSetSizeHints( int minW, int minH,
+                               int maxW = -1, int maxH = -1,
+                               int incW = -1, int incH = -1 );
+
+    virtual bool SetShape( const wxRegion& region );
+
     WXWidget GetShellWidget() const;
 protected:
     // common part of all constructors
@@ -63,19 +65,18 @@ protected:
     // common part of wxDialog/wxFrame destructors
     void PreDestroy();
 
+    virtual void DoGetPosition(int* x, int* y) const;
+
 private:
-    // both these functions should be pure virtual
-    virtual bool DoCreate( wxWindow* parent, wxWindowID id,
-                           const wxString& title,
-                           const wxPoint& pos,
-                           const wxSize& size,
-                           long style,
-                           const wxString& name )
-    {
-        return FALSE;
-    }
+    // really create the Motif widget for TLW
+    virtual bool XmDoCreateTLW(wxWindow* parent,
+                               wxWindowID id,
+                               const wxString& title,
+                               const wxPoint& pos,
+                               const wxSize& size,
+                               long style,
+                               const wxString& name) = 0;
 
-    virtual void DoDestroy() { }
 
     wxString m_title;
 };