]> git.saurik.com Git - wxWidgets.git/blame - include/wx/motif/toplevel.h
SetSelection must not send an event. Fixed an off
[wxWidgets.git] / include / wx / motif / toplevel.h
CommitLineData
0de6dfa7
MB
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(__APPLE__)
16 #pragma interface "toplevel.h"
17#endif
18
19class wxTopLevelWindowMotif : public wxTopLevelWindowBase
20{
21public:
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 WXWidget GetShellWidget() const;
60protected:
61 // common part of all constructors
62 void Init();
63
64private:
65 // both these functions should be pure virtual
66 virtual bool DoCreate( wxWindow* parent, wxWindowID id,
67 const wxString& title,
68 const wxPoint& pos,
69 const wxSize& size,
70 long style,
71 const wxString& name )
72 {
73 return FALSE;
74 }
75
76 virtual void DoDestroy() { }
77
78 wxString m_title;
79};
80
81#endif // __MOTIFTOPLEVELH__