| 1 | ///////////////////////////////////////////////////////////////////////////// |
| 2 | // Name: wx/gtk/toplevel.h |
| 3 | // Purpose: |
| 4 | // Author: Robert Roebling |
| 5 | // Id: $Id$ |
| 6 | // Copyright: (c) 1998 Robert Roebling, Julian Smart |
| 7 | // Licence: wxWindows licence |
| 8 | ///////////////////////////////////////////////////////////////////////////// |
| 9 | |
| 10 | |
| 11 | #ifndef __GTKTOPLEVELH__ |
| 12 | #define __GTKTOPLEVELH__ |
| 13 | |
| 14 | #if defined(__GNUG__) && !defined(__APPLE__) |
| 15 | #pragma interface "toplevel.h" |
| 16 | #endif |
| 17 | |
| 18 | |
| 19 | //----------------------------------------------------------------------------- |
| 20 | // wxTopLevelWindowGTK |
| 21 | //----------------------------------------------------------------------------- |
| 22 | |
| 23 | class wxTopLevelWindowGTK : public wxTopLevelWindowBase |
| 24 | { |
| 25 | public: |
| 26 | // construction |
| 27 | wxTopLevelWindowGTK() { Init(); } |
| 28 | wxTopLevelWindowGTK(wxWindow *parent, |
| 29 | wxWindowID id, |
| 30 | const wxString& title, |
| 31 | const wxPoint& pos = wxDefaultPosition, |
| 32 | const wxSize& size = wxDefaultSize, |
| 33 | long style = wxDEFAULT_FRAME_STYLE, |
| 34 | const wxString& name = wxFrameNameStr) |
| 35 | { |
| 36 | Init(); |
| 37 | |
| 38 | Create(parent, id, title, pos, size, style, name); |
| 39 | } |
| 40 | |
| 41 | bool Create(wxWindow *parent, |
| 42 | wxWindowID id, |
| 43 | const wxString& title, |
| 44 | const wxPoint& pos = wxDefaultPosition, |
| 45 | const wxSize& size = wxDefaultSize, |
| 46 | long style = wxDEFAULT_FRAME_STYLE, |
| 47 | const wxString& name = wxFrameNameStr); |
| 48 | |
| 49 | virtual ~wxTopLevelWindowGTK(); |
| 50 | |
| 51 | // implement base class pure virtuals |
| 52 | virtual void Maximize(bool maximize = TRUE); |
| 53 | virtual bool IsMaximized() const; |
| 54 | virtual void Iconize(bool iconize = TRUE); |
| 55 | virtual bool IsIconized() const; |
| 56 | virtual void SetIcon(const wxIcon& icon); |
| 57 | virtual void SetIcons(const wxIconBundle& icons); |
| 58 | virtual void Restore(); |
| 59 | |
| 60 | virtual bool ShowFullScreen(bool show, long style = wxFULLSCREEN_ALL); |
| 61 | virtual bool IsFullScreen() const { return m_fsIsShowing; }; |
| 62 | |
| 63 | virtual bool Show(bool show = TRUE); |
| 64 | |
| 65 | virtual void SetTitle( const wxString &title ); |
| 66 | virtual wxString GetTitle() const { return m_title; } |
| 67 | |
| 68 | // Experimental, to allow help windows to be |
| 69 | // viewable from within modal dialogs |
| 70 | virtual void AddGrab(); |
| 71 | virtual void RemoveGrab(); |
| 72 | virtual bool IsGrabbed() const { return m_grabbed; } |
| 73 | |
| 74 | // implementation from now on |
| 75 | // -------------------------- |
| 76 | |
| 77 | // move the window to the specified location and resize it: this is called |
| 78 | // from both DoSetSize() and DoSetClientSize() |
| 79 | virtual void DoMoveWindow(int x, int y, int width, int height); |
| 80 | |
| 81 | // set the icon for this window |
| 82 | void DoSetIcon( const wxIcon& icon ); |
| 83 | |
| 84 | // GTK callbacks |
| 85 | virtual void GtkOnSize( int x, int y, int width, int height ); |
| 86 | virtual void OnInternalIdle(); |
| 87 | |
| 88 | // do *not* call this to iconize the frame, this is a private function! |
| 89 | void SetIconizeState(bool iconic); |
| 90 | |
| 91 | wxString m_title; |
| 92 | int m_miniEdge, |
| 93 | m_miniTitle; |
| 94 | GtkWidget *m_mainWidget; |
| 95 | bool m_insertInClientArea; /* not from within OnCreateXXX */ |
| 96 | |
| 97 | bool m_fsIsShowing; /* full screen */ |
| 98 | long m_fsSaveGdkFunc, m_fsSaveGdkDecor; |
| 99 | long m_fsSaveFlag; |
| 100 | wxRect m_fsSaveFrame; |
| 101 | |
| 102 | // m_windowStyle translated to GDK's terms |
| 103 | long m_gdkFunc, |
| 104 | m_gdkDecor; |
| 105 | |
| 106 | protected: |
| 107 | // common part of all ctors |
| 108 | void Init(); |
| 109 | |
| 110 | // override wxWindow methods to take into account tool/menu/statusbars |
| 111 | virtual void DoSetSize(int x, int y, |
| 112 | int width, int height, |
| 113 | int sizeFlags = wxSIZE_AUTO); |
| 114 | |
| 115 | virtual void DoSetClientSize(int width, int height); |
| 116 | virtual void DoGetClientSize( int *width, int *height ) const; |
| 117 | |
| 118 | // is the frame currently iconized? |
| 119 | bool m_isIconized; |
| 120 | // is the frame currently grabbed explicitly |
| 121 | // by the application? |
| 122 | bool m_grabbed; |
| 123 | }; |
| 124 | |
| 125 | #endif // __GTKTOPLEVELH__ |