]>
Commit | Line | Data |
---|---|---|
83df96d6 | 1 | ///////////////////////////////////////////////////////////////////////////// |
ffd84c94 | 2 | // Name: wx/x11/window.h |
83df96d6 JS |
3 | // Purpose: wxWindow class |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 17/09/98 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Julian Smart | |
65571936 | 9 | // Licence: wxWindows licence |
83df96d6 JS |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
12 | #ifndef _WX_WINDOW_H_ | |
13 | #define _WX_WINDOW_H_ | |
14 | ||
83df96d6 JS |
15 | #include "wx/region.h" |
16 | ||
17 | // ---------------------------------------------------------------------------- | |
18 | // wxWindow class for Motif - see also wxWindowBase | |
19 | // ---------------------------------------------------------------------------- | |
20 | ||
968eb2ef | 21 | class WXDLLIMPEXP_CORE wxWindowX11 : public wxWindowBase |
83df96d6 JS |
22 | { |
23 | friend class WXDLLEXPORT wxDC; | |
24 | friend class WXDLLEXPORT wxWindowDC; | |
ffd84c94 | 25 | |
83df96d6 | 26 | public: |
bc797f4c | 27 | wxWindowX11() { Init(); } |
ffd84c94 | 28 | |
bc797f4c | 29 | wxWindowX11(wxWindow *parent, |
83df96d6 JS |
30 | wxWindowID id, |
31 | const wxPoint& pos = wxDefaultPosition, | |
32 | const wxSize& size = wxDefaultSize, | |
33 | long style = 0, | |
34 | const wxString& name = wxPanelNameStr) | |
35 | { | |
36 | Init(); | |
37 | Create(parent, id, pos, size, style, name); | |
38 | } | |
ffd84c94 | 39 | |
f79bd02d | 40 | virtual ~wxWindowX11(); |
ffd84c94 | 41 | |
83df96d6 JS |
42 | bool Create(wxWindow *parent, |
43 | wxWindowID id, | |
44 | const wxPoint& pos = wxDefaultPosition, | |
45 | const wxSize& size = wxDefaultSize, | |
46 | long style = 0, | |
47 | const wxString& name = wxPanelNameStr); | |
ffd84c94 | 48 | |
83df96d6 JS |
49 | virtual void Raise(); |
50 | virtual void Lower(); | |
ffd84c94 WS |
51 | |
52 | virtual void SetLabel(const wxString& label); | |
53 | virtual wxString GetLabel() const; | |
54 | ||
55 | virtual bool Show( bool show = true ); | |
56 | virtual bool Enable( bool enable = true ); | |
57 | ||
83df96d6 | 58 | virtual void SetFocus(); |
ffd84c94 | 59 | |
83df96d6 | 60 | virtual void WarpPointer(int x, int y); |
ffd84c94 WS |
61 | |
62 | virtual void Refresh( bool eraseBackground = true, | |
63 | const wxRect *rect = (const wxRect *) NULL ); | |
d02cb44e | 64 | virtual void Update(); |
ffd84c94 | 65 | |
83df96d6 JS |
66 | virtual bool SetBackgroundColour( const wxColour &colour ); |
67 | virtual bool SetForegroundColour( const wxColour &colour ); | |
ffd84c94 | 68 | |
83df96d6 JS |
69 | virtual bool SetCursor( const wxCursor &cursor ); |
70 | virtual bool SetFont( const wxFont &font ); | |
ffd84c94 | 71 | |
83df96d6 JS |
72 | virtual int GetCharHeight() const; |
73 | virtual int GetCharWidth() const; | |
74 | virtual void GetTextExtent(const wxString& string, | |
75 | int *x, int *y, | |
76 | int *descent = (int *) NULL, | |
77 | int *externalLeading = (int *) NULL, | |
78 | const wxFont *theFont = (const wxFont *) NULL) | |
79 | const; | |
ffd84c94 | 80 | |
83df96d6 JS |
81 | virtual void ScrollWindow( int dx, int dy, |
82 | const wxRect* rect = (wxRect *) NULL ); | |
ffd84c94 | 83 | |
571f6981 | 84 | virtual void DoSetSizeHints(int minW, int minH, |
ffd84c94 WS |
85 | int maxW = wxDefaultCoord, int maxH = wxDefaultCoord, |
86 | int incW = wxDefaultCoord, int incH = wxDefaultCoord); | |
571f6981 | 87 | |
83df96d6 JS |
88 | #if wxUSE_DRAG_AND_DROP |
89 | virtual void SetDropTarget( wxDropTarget *dropTarget ); | |
90 | #endif // wxUSE_DRAG_AND_DROP | |
ffd84c94 | 91 | |
83df96d6 JS |
92 | // Accept files for dragging |
93 | virtual void DragAcceptFiles(bool accept); | |
ffd84c94 | 94 | |
83df96d6 | 95 | // Get the unique identifier of a window |
bc797f4c | 96 | virtual WXWindow GetHandle() const { return GetMainWindow(); } |
ffd84c94 | 97 | |
83df96d6 JS |
98 | // implementation from now on |
99 | // -------------------------- | |
ffd84c94 | 100 | |
83df96d6 JS |
101 | // accessors |
102 | // --------- | |
ffd84c94 | 103 | |
ab6b6b15 | 104 | // Get main X11 window |
bc797f4c | 105 | virtual WXWindow GetMainWindow() const; |
ffd84c94 | 106 | |
ab6b6b15 | 107 | // Get X11 window representing the client area |
f41bc3e3 JS |
108 | virtual WXWindow GetClientAreaWindow() const; |
109 | ||
83df96d6 | 110 | void SetLastClick(int button, long timestamp) |
ba696cfa | 111 | { m_lastButton = button; m_lastTS = timestamp; } |
ffd84c94 | 112 | |
83df96d6 JS |
113 | int GetLastClickedButton() const { return m_lastButton; } |
114 | long GetLastClickTime() const { return m_lastTS; } | |
ffd84c94 | 115 | |
83df96d6 JS |
116 | // Gives window a chance to do something in response to a size message, e.g. |
117 | // arrange status bar, toolbar etc. | |
118 | virtual bool PreResize(); | |
ffd84c94 | 119 | |
887dd52f RR |
120 | // Generates paint events from m_updateRegion |
121 | void SendPaintEvents(); | |
ffd84c94 | 122 | |
ab6b6b15 RR |
123 | // Generates paint events from flag |
124 | void SendNcPaintEvents(); | |
ffd84c94 | 125 | |
887dd52f RR |
126 | // Generates erase events from m_clearRegion |
127 | void SendEraseEvents(); | |
ffd84c94 | 128 | |
3cd0b8c5 RR |
129 | // Clip to paint region? |
130 | bool GetClipPaintRegion() { return m_clipPaintRegion; } | |
ffd84c94 | 131 | |
ba696cfa RR |
132 | // Return clear region |
133 | wxRegion &GetClearRegion() { return m_clearRegion; } | |
ffd84c94 WS |
134 | |
135 | void NeedUpdateNcAreaInIdle( bool update = true ) { m_updateNcArea = update; } | |
136 | ||
ab6b6b15 RR |
137 | // Inserting into main window instead of client |
138 | // window. This is mostly for a wxWindow's own | |
139 | // scrollbars. | |
ffd84c94 | 140 | void SetInsertIntoMain( bool insert = true ) { m_insertIntoMain = insert; } |
ab6b6b15 | 141 | bool GetInsertIntoMain() { return m_insertIntoMain; } |
ffd84c94 | 142 | |
83df96d6 | 143 | // sets the fore/background colour for the given widget |
bc797f4c | 144 | static void DoChangeForegroundColour(WXWindow widget, wxColour& foregroundColour); |
ffd84c94 WS |
145 | static void DoChangeBackgroundColour(WXWindow widget, wxColour& backgroundColour, bool changeArmColour = false); |
146 | ||
0d1dff01 RR |
147 | // I don't want users to override what's done in idle so everything that |
148 | // has to be done in idle time in order for wxX11 to work is done in | |
149 | // OnInternalIdle | |
150 | virtual void OnInternalIdle(); | |
ffd84c94 | 151 | |
0d1dff01 | 152 | protected: |
83df96d6 JS |
153 | // Responds to colour changes: passes event on to children. |
154 | void OnSysColourChanged(wxSysColourChangedEvent& event); | |
ffd84c94 | 155 | |
83df96d6 JS |
156 | // For double-click detection |
157 | long m_lastTS; // last timestamp | |
158 | int m_lastButton; // last pressed button | |
ffd84c94 | 159 | |
83df96d6 | 160 | protected: |
ab6b6b15 RR |
161 | WXWindow m_mainWindow; |
162 | WXWindow m_clientWindow; | |
163 | bool m_insertIntoMain; | |
ffd84c94 | 164 | |
ab6b6b15 | 165 | bool m_winCaptured; |
1934d291 RR |
166 | wxRegion m_clearRegion; |
167 | bool m_clipPaintRegion; | |
ab6b6b15 | 168 | bool m_updateNcArea; |
3a0b23eb | 169 | bool m_needsInputFocus; // Input focus set in OnIdle |
b513212d | 170 | |
83df96d6 JS |
171 | // implement the base class pure virtuals |
172 | virtual void DoClientToScreen( int *x, int *y ) const; | |
173 | virtual void DoScreenToClient( int *x, int *y ) const; | |
174 | virtual void DoGetPosition( int *x, int *y ) const; | |
175 | virtual void DoGetSize( int *width, int *height ) const; | |
176 | virtual void DoGetClientSize( int *width, int *height ) const; | |
177 | virtual void DoSetSize(int x, int y, | |
178 | int width, int height, | |
179 | int sizeFlags = wxSIZE_AUTO); | |
180 | virtual void DoSetClientSize(int width, int height); | |
181 | virtual void DoMoveWindow(int x, int y, int width, int height); | |
83df96d6 JS |
182 | virtual void DoCaptureMouse(); |
183 | virtual void DoReleaseMouse(); | |
7edcafa4 | 184 | |
83df96d6 JS |
185 | #if wxUSE_TOOLTIPS |
186 | virtual void DoSetToolTip( wxToolTip *tip ); | |
187 | #endif // wxUSE_TOOLTIPS | |
ffd84c94 | 188 | |
83df96d6 JS |
189 | private: |
190 | // common part of all ctors | |
191 | void Init(); | |
ffd84c94 | 192 | |
bc797f4c JS |
193 | DECLARE_DYNAMIC_CLASS(wxWindowX11) |
194 | DECLARE_NO_COPY_CLASS(wxWindowX11) | |
83df96d6 JS |
195 | DECLARE_EVENT_TABLE() |
196 | }; | |
197 | ||
198 | // ---------------------------------------------------------------------------- | |
199 | // A little class to switch off `size optimization' while an instance of the | |
200 | // object exists: this may be useful to temporarily disable the optimisation | |
201 | // which consists to do nothing when the new size is equal to the old size - | |
202 | // although quite useful usually to avoid flicker, sometimes it leads to | |
203 | // undesired effects. | |
204 | // | |
205 | // Usage: create an instance of this class on the stack to disable the size | |
206 | // optimisation, it will be reenabled as soon as the object goes out from scope. | |
207 | // ---------------------------------------------------------------------------- | |
208 | ||
209 | class WXDLLEXPORT wxNoOptimize | |
210 | { | |
211 | public: | |
212 | wxNoOptimize() { ms_count++; } | |
213 | ~wxNoOptimize() { ms_count--; } | |
ffd84c94 | 214 | |
83df96d6 | 215 | static bool CanOptimize() { return ms_count == 0; } |
ffd84c94 | 216 | |
83df96d6 JS |
217 | protected: |
218 | static int ms_count; | |
219 | }; | |
220 | ||
ffd84c94 | 221 | #endif // _WX_WINDOW_H_ |