]> git.saurik.com Git - wxWidgets.git/blob - include/wx/motif/toplevel.h
Fix "Error: Curly braces do not match inside file fontmap.tex"
[wxWidgets.git] / include / wx / motif / toplevel.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/motif/toplevel.h
3 // Purpose: wxTopLevelWindow Motif implementation
4 // Author: Mattia Barbon
5 // Modified by:
6 // Created: 12/10/2002
7 // RCS-ID: $Id$
8 // Copyright: (c) Mattia Barbon
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11
12 #ifndef __MOTIFTOPLEVELH__
13 #define __MOTIFTOPLEVELH__
14
15 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
16 #pragma interface "toplevel.h"
17 #endif
18
19 class WXDLLIMPEXP_CORE wxTopLevelWindowMotif : public wxTopLevelWindowBase
20 {
21 public:
22 wxTopLevelWindowMotif() { Init(); }
23 wxTopLevelWindowMotif( wxWindow* parent, wxWindowID id,
24 const wxString& title,
25 const wxPoint& pos = wxDefaultPosition,
26 const wxSize& size = wxDefaultSize,
27 long style = wxDEFAULT_FRAME_STYLE,
28 const wxString& name = wxFrameNameStr )
29 {
30 Init();
31
32 Create( parent, id, title, pos, size, style, name );
33 }
34
35 bool Create( wxWindow* parent, wxWindowID id,
36 const wxString& title,
37 const wxPoint& pos = wxDefaultPosition,
38 const wxSize& size = wxDefaultSize,
39 long style = wxDEFAULT_FRAME_STYLE,
40 const wxString& name = wxFrameNameStr );
41
42 virtual ~wxTopLevelWindowMotif();
43
44 virtual bool ShowFullScreen( bool show, long style = wxFULLSCREEN_ALL );
45 virtual bool IsFullScreen() const;
46
47 virtual void Maximize(bool maximize = true);
48 virtual void Restore();
49 virtual void Iconize(bool iconize = true);
50 virtual bool IsMaximized() const;
51 virtual bool IsIconized() const;
52
53 virtual void Raise();
54 virtual void Lower();
55
56 virtual wxString GetTitle() const { return m_title; }
57 virtual void SetTitle( const wxString& title ) { m_title = title; }
58
59 virtual void DoSetSizeHints( int minW, int minH,
60 int maxW = -1, int maxH = -1,
61 int incW = -1, int incH = -1 );
62
63 virtual bool SetShape( const wxRegion& region );
64
65 WXWidget GetShellWidget() const;
66 protected:
67 // common part of all constructors
68 void Init();
69 // common part of wxDialog/wxFrame destructors
70 void PreDestroy();
71
72 virtual void DoGetPosition(int* x, int* y) const;
73
74 private:
75 #if wxCHECK_VERSION(2,7,0)
76 // DoDestroy() is not used anywhere else, DoCreate() should also be renamed
77 // in src/motif/dialog.cpp, frame.cpp and toplevel.cp
78 #error "Remove DoDestroy() and rename DoCreate() to XmDoCreateTLW(), they were only kept for binary backwards compatibility"
79 #endif
80
81 // really create the Motif widget for TLW
82 virtual bool DoCreate(wxWindow* parent,
83 wxWindowID id,
84 const wxString& title,
85 const wxPoint& pos,
86 const wxSize& size,
87 long style,
88 const wxString& name) = 0;
89
90 virtual void DoDestroy() { }
91
92 wxString m_title;
93 };
94
95 #endif // __MOTIFTOPLEVELH__