xref: /haiku/src/servers/app/Desktop.h (revision 68667bf48a9e29a2d142cb3308b606d80bee3c2d)
16a0a0a80SAxel Dörfler /*
269f9a367SAxel Dörfler  * Copyright 2001-2009, Haiku.
36a0a0a80SAxel Dörfler  * Distributed under the terms of the MIT License.
46a0a0a80SAxel Dörfler  *
56a0a0a80SAxel Dörfler  * Authors:
66a0a0a80SAxel Dörfler  *		Adrian Oanca <adioanca@cotty.iren.ro>
76a0a0a80SAxel Dörfler  *		Stephan Aßmus <superstippi@gmx.de>
86a0a0a80SAxel Dörfler  *		Axel Dörfler, axeld@pinc-software.de
9b09e2f6fSStephan Aßmus  *		Andrej Spielmann, <andrej.spielmann@seh.ox.ac.uk>
106a0a0a80SAxel Dörfler  */
1127adb969SAxel Dörfler #ifndef DESKTOP_H
1227adb969SAxel Dörfler #define DESKTOP_H
1333bbe223SAxel Dörfler 
1408f35604SAxel Dörfler 
153ddebe7eSMichael Lotz #include "CursorManager.h"
16ace2d5eeSStephan Aßmus #include "DesktopSettings.h"
1708f35604SAxel Dörfler #include "EventDispatcher.h"
18ace2d5eeSStephan Aßmus #include "MessageLooper.h"
19953d895eSAxel Dörfler #include "Screen.h"
20fd5bec1eSAxel Dörfler #include "ScreenManager.h"
21ace2d5eeSStephan Aßmus #include "ServerCursor.h"
22fd5bec1eSAxel Dörfler #include "VirtualScreen.h"
23e83820edSAxel Dörfler #include "WindowList.h"
2427adb969SAxel Dörfler #include "Workspace.h"
255ca8477eSAxel Dörfler #include "WorkspacePrivate.h"
26fd5bec1eSAxel Dörfler 
27e83820edSAxel Dörfler #include <ObjectList.h>
28e83820edSAxel Dörfler 
29e83820edSAxel Dörfler #include <Autolock.h>
3033bbe223SAxel Dörfler #include <InterfaceDefs.h>
313dcb3b07SStephan Aßmus #include <List.h>
323dcb3b07SStephan Aßmus #include <Menu.h>
33e83820edSAxel Dörfler #include <Region.h>
3457be2866SAxel Dörfler #include <Window.h>
356a0a0a80SAxel Dörfler 
360eed9183SAxel Dörfler 
3739c9925fSStephan Aßmus #define USE_MULTI_LOCKER 1
38e83820edSAxel Dörfler 
39e83820edSAxel Dörfler #if USE_MULTI_LOCKER
40e83820edSAxel Dörfler #  include "MultiLocker.h"
41e83820edSAxel Dörfler #else
42e83820edSAxel Dörfler #  include <Locker.h>
43e83820edSAxel Dörfler #endif
4433bbe223SAxel Dörfler 
450eed9183SAxel Dörfler 
463dcb3b07SStephan Aßmus class BMessage;
476a0a0a80SAxel Dörfler 
4858468dfeSStephan Aßmus class DrawingEngine;
493dcb3b07SStephan Aßmus class HWInterface;
50e83820edSAxel Dörfler class ServerApp;
51953d895eSAxel Dörfler class Window;
52953d895eSAxel Dörfler class WorkspacesView;
536d5488e1SAxel Dörfler struct server_read_only_memory;
5433bbe223SAxel Dörfler 
556a0a0a80SAxel Dörfler namespace BPrivate {
566a0a0a80SAxel Dörfler 	class LinkSender;
576a0a0a80SAxel Dörfler };
586a0a0a80SAxel Dörfler 
590eed9183SAxel Dörfler 
605f2edc0fSAxel Dörfler class Desktop : public MessageLooper, public ScreenOwner {
6133bbe223SAxel Dörfler public:
62*68667bf4SMichael Lotz 								Desktop(uid_t userID, const char* targetScreen);
633dcb3b07SStephan Aßmus 	virtual						~Desktop();
643dcb3b07SStephan Aßmus 
656d5488e1SAxel Dörfler 			status_t			Init();
6636deda69SAxel Dörfler 
6736deda69SAxel Dörfler 			uid_t				UserID() const { return fUserID; }
68*68667bf4SMichael Lotz 			const char*			TargetScreen() { return fTargetScreen; }
69770c05d6SAxel Dörfler 	virtual port_id				MessagePort() const { return fMessagePort; }
709dbce7a4SAxel Dörfler 			area_id				SharedReadOnlyArea() const
719dbce7a4SAxel Dörfler 									{ return fSharedReadOnlyArea; }
72770c05d6SAxel Dörfler 
73f7598223SAxel Dörfler 			::EventDispatcher&	EventDispatcher() { return fEventDispatcher; }
746c17d025SAxel Dörfler 
75770c05d6SAxel Dörfler 			void				BroadcastToAllApps(int32 code);
760a3f410fSAxel Dörfler 			void				BroadcastToAllWindows(int32 code);
7733bbe223SAxel Dörfler 
78cc93fbbbSAxel Dörfler 	// Locking
79cc93fbbbSAxel Dörfler #if USE_MULTI_LOCKER
80cc93fbbbSAxel Dörfler 			bool				LockSingleWindow()
81cc93fbbbSAxel Dörfler 									{ return fWindowLock.ReadLock(); }
82cc93fbbbSAxel Dörfler 			void				UnlockSingleWindow()
83cc93fbbbSAxel Dörfler 									{ fWindowLock.ReadUnlock(); }
84cc93fbbbSAxel Dörfler 
85cc93fbbbSAxel Dörfler 			bool				LockAllWindows()
86cc93fbbbSAxel Dörfler 									{ return fWindowLock.WriteLock(); }
87cc93fbbbSAxel Dörfler 			void				UnlockAllWindows()
88cc93fbbbSAxel Dörfler 									{ fWindowLock.WriteUnlock(); }
89cc93fbbbSAxel Dörfler 
9078ca6157SAxel Dörfler 			const MultiLocker&	WindowLocker() { return fWindowLock; }
91cc93fbbbSAxel Dörfler #else // USE_MULTI_LOCKER
92cc93fbbbSAxel Dörfler 			bool				LockSingleWindow()
93cc93fbbbSAxel Dörfler 									{ return fWindowLock.Lock(); }
94cc93fbbbSAxel Dörfler 			void				UnlockSingleWindow()
95cc93fbbbSAxel Dörfler 									{ fWindowLock.Unlock(); }
96cc93fbbbSAxel Dörfler 
97cc93fbbbSAxel Dörfler 			bool				LockAllWindows()
98cc93fbbbSAxel Dörfler 									{ return fWindowLock.Lock(); }
99cc93fbbbSAxel Dörfler 			void				UnlockAllWindows()
100cc93fbbbSAxel Dörfler 									{ fWindowLock.Unlock(); }
101cc93fbbbSAxel Dörfler #endif // USE_MULTI_LOCKER
102cc93fbbbSAxel Dörfler 
1030eed9183SAxel Dörfler 	// Mouse and cursor methods
10433bbe223SAxel Dörfler 
105195e980eSAxel Dörfler 			void				SetCursor(ServerCursor* cursor);
106ace2d5eeSStephan Aßmus 			ServerCursorReference Cursor() const;
1074d1c4228SStephan Aßmus 			void				SetLastMouseState(const BPoint& position,
10821b40eddSStephan Aßmus 									int32 buttons, Window* windowUnderMouse);
1094d1c4228SStephan Aßmus 									// for use by the mouse filter only
1104d1c4228SStephan Aßmus 									// both mouse position calls require
1114d1c4228SStephan Aßmus 									// the Desktop object to be locked
1124d1c4228SStephan Aßmus 									// already
1134d1c4228SStephan Aßmus 			void				GetLastMouseState(BPoint* position,
1144d1c4228SStephan Aßmus 									int32* buttons) const;
1154d1c4228SStephan Aßmus 									// for use by ServerWindow
1160eed9183SAxel Dörfler 
1170eed9183SAxel Dörfler 			CursorManager&		GetCursorManager() { return fCursorManager; }
1180eed9183SAxel Dörfler 
119fe7f167dSAxel Dörfler 	// Screen and drawing related methods
120fe7f167dSAxel Dörfler 
1210eed9183SAxel Dörfler 			status_t			SetScreenMode(int32 workspace, int32 id,
1220eed9183SAxel Dörfler 									const display_mode& mode, bool makeDefault);
1230eed9183SAxel Dörfler 			status_t			GetScreenMode(int32 workspace, int32 id,
1240eed9183SAxel Dörfler 									display_mode& mode);
125e18224cdSAxel Dörfler 			status_t			GetScreenFrame(int32 workspace, int32 id,
126e18224cdSAxel Dörfler 									BRect& frame);
1275e3f4c41SAxel Dörfler 			void				RevertScreenModes(uint32 workspaces);
1280eed9183SAxel Dörfler 
12978ca6157SAxel Dörfler 			MultiLocker&		ScreenLocker() { return fScreenLock; }
13078ca6157SAxel Dörfler 
1319fe35223SAxel Dörfler 			status_t			LockDirectScreen(team_id team);
1329fe35223SAxel Dörfler 			status_t			UnlockDirectScreen(team_id team);
1339fe35223SAxel Dörfler 
1345e3f4c41SAxel Dörfler 			const ::VirtualScreen& VirtualScreen() const
1355e3f4c41SAxel Dörfler 									{ return fVirtualScreen; }
13627adb969SAxel Dörfler 			DrawingEngine*		GetDrawingEngine() const
13758468dfeSStephan Aßmus 									{ return fVirtualScreen.DrawingEngine(); }
13827adb969SAxel Dörfler 			::HWInterface*		HWInterface() const
139fd5bec1eSAxel Dörfler 									{ return fVirtualScreen.HWInterface(); }
14094fa2bd2SAdi Oanca 
1410eed9183SAxel Dörfler 	// ScreenOwner implementation
1425e3f4c41SAxel Dörfler 	virtual	void				ScreenRemoved(Screen* screen) {}
1435e3f4c41SAxel Dörfler 	virtual	void				ScreenAdded(Screen* screen) {}
1445e3f4c41SAxel Dörfler 	virtual	bool				ReleaseScreen(Screen* screen) { return false; }
1450eed9183SAxel Dörfler 
14627adb969SAxel Dörfler 	// Workspace methods
14727adb969SAxel Dörfler 
1484d1c4228SStephan Aßmus 			void				SetWorkspaceAsync(int32 index);
14927adb969SAxel Dörfler 			void				SetWorkspace(int32 index);
15027adb969SAxel Dörfler 			int32				CurrentWorkspace()
15127adb969SAxel Dörfler 									{ return fCurrentWorkspace; }
1525ca8477eSAxel Dörfler 			Workspace::Private&	WorkspaceAt(int32 index)
15327adb969SAxel Dörfler 									{ return fWorkspaces[index]; }
15469f9a367SAxel Dörfler 			status_t			SetWorkspacesLayout(int32 columns, int32 rows);
15527c43a2dSRene Gollent 			BRect				WorkspaceFrame(int32 index) const;
15627adb969SAxel Dörfler 
157cc93fbbbSAxel Dörfler 			void				StoreWorkspaceConfiguration(int32 index);
158cc93fbbbSAxel Dörfler 
159cc93fbbbSAxel Dörfler 			void				AddWorkspacesView(WorkspacesView* view);
160cc93fbbbSAxel Dörfler 			void				RemoveWorkspacesView(WorkspacesView* view);
161cc93fbbbSAxel Dörfler 
162953d895eSAxel Dörfler 	// Window methods
16327adb969SAxel Dörfler 
164953d895eSAxel Dörfler 			void				ActivateWindow(Window* window);
165953d895eSAxel Dörfler 			void				SendWindowBehind(Window* window,
166953d895eSAxel Dörfler 									Window* behindOf = NULL);
16727adb969SAxel Dörfler 
168953d895eSAxel Dörfler 			void				ShowWindow(Window* window);
169953d895eSAxel Dörfler 			void				HideWindow(Window* window);
17015918e4fSAxel Dörfler 
171953d895eSAxel Dörfler 			void				MoveWindowBy(Window* window, float x, float y,
17214fe11cfSAxel Dörfler 									int32 workspace = -1);
1739dbce7a4SAxel Dörfler 			void				ResizeWindowBy(Window* window, float x,
1749dbce7a4SAxel Dörfler 									float y);
1759dbce7a4SAxel Dörfler 			bool				SetWindowTabLocation(Window* window,
1769dbce7a4SAxel Dörfler 									float location);
177953d895eSAxel Dörfler 			bool				SetWindowDecoratorSettings(Window* window,
178b30e9021SStephan Aßmus 									const BMessage& settings);
17919d801a6SAxel Dörfler 
180953d895eSAxel Dörfler 			void				SetWindowWorkspaces(Window* window,
181a631158aSAxel Dörfler 									uint32 workspaces);
18227adb969SAxel Dörfler 
183953d895eSAxel Dörfler 			void				AddWindow(Window* window);
184953d895eSAxel Dörfler 			void				RemoveWindow(Window* window);
18557be2866SAxel Dörfler 
186953d895eSAxel Dörfler 			bool				AddWindowToSubset(Window* subset,
187953d895eSAxel Dörfler 									Window* window);
188953d895eSAxel Dörfler 			void				RemoveWindowFromSubset(Window* subset,
189953d895eSAxel Dörfler 									Window* window);
19034227d2cSAxel Dörfler 
1910a3f410fSAxel Dörfler 			void				FontsChanged(Window* window);
1920a3f410fSAxel Dörfler 
193953d895eSAxel Dörfler 			void				SetWindowLook(Window* window, window_look look);
194953d895eSAxel Dörfler 			void				SetWindowFeel(Window* window, window_feel feel);
195953d895eSAxel Dörfler 			void				SetWindowFlags(Window* window, uint32 flags);
1969dbce7a4SAxel Dörfler 			void				SetWindowTitle(Window* window,
1979dbce7a4SAxel Dörfler 									const char* title);
19833bbe223SAxel Dörfler 
199953d895eSAxel Dörfler 			Window*				FocusWindow() const { return fFocus; }
200953d895eSAxel Dörfler 			Window*				FrontWindow() const { return fFront; }
201953d895eSAxel Dörfler 			Window*				BackWindow() const { return fBack; }
202e83820edSAxel Dörfler 
203953d895eSAxel Dörfler 			Window*				WindowAt(BPoint where);
204e83820edSAxel Dörfler 
2059dbce7a4SAxel Dörfler 			Window*				MouseEventWindow() const
2069dbce7a4SAxel Dörfler 									{ return fMouseEventWindow; }
207953d895eSAxel Dörfler 			void				SetMouseEventWindow(Window* window);
208e83820edSAxel Dörfler 
2099dbce7a4SAxel Dörfler 			void				SetViewUnderMouse(const Window* window,
2109dbce7a4SAxel Dörfler 									int32 viewToken);
211953d895eSAxel Dörfler 			int32				ViewUnderMouse(const Window* window);
2121e766d46SAxel Dörfler 
21307dc2c69SAxel Dörfler 			EventTarget*		KeyboardEventTarget();
214cc93fbbbSAxel Dörfler 
215cc93fbbbSAxel Dörfler 			void				SetFocusWindow(Window* window = NULL);
21621b40eddSStephan Aßmus 			void				SetFocusLocked(const Window* window);
217e83820edSAxel Dörfler 
218953d895eSAxel Dörfler 			Window*				FindWindowByClientToken(int32 token,
219953d895eSAxel Dörfler 									team_id teamID);
22095530739SAxel Dörfler 			EventTarget*		FindTarget(BMessenger& messenger);
2216a0a0a80SAxel Dörfler 
222e83820edSAxel Dörfler 			void				MarkDirty(BRegion& region);
223b09e2f6fSStephan Aßmus 			void				Redraw();
224cc93fbbbSAxel Dörfler 			void				RedrawBackground();
225e83820edSAxel Dörfler 
226e83820edSAxel Dörfler 			BRegion&			BackgroundRegion()
227e83820edSAxel Dörfler 									{ return fBackgroundRegion; }
22833bbe223SAxel Dörfler 
229f877af82SAxel Dörfler 			void				MinimizeApplication(team_id team);
230f877af82SAxel Dörfler 			void				BringApplicationToFront(team_id team);
231bfe69873SAxel Dörfler 			void				WindowAction(int32 windowToken, int32 action);
232f877af82SAxel Dörfler 
23327adb969SAxel Dörfler 			void				WriteWindowList(team_id team,
23427adb969SAxel Dörfler 									BPrivate::LinkSender& sender);
23527adb969SAxel Dörfler 			void				WriteWindowInfo(int32 serverToken,
23627adb969SAxel Dörfler 									BPrivate::LinkSender& sender);
237ae0606beSAxel Dörfler 			void				WriteApplicationOrder(int32 workspace,
238ae0606beSAxel Dörfler 									BPrivate::LinkSender& sender);
239ae0606beSAxel Dörfler 			void				WriteWindowOrder(int32 workspace,
240ae0606beSAxel Dörfler 									BPrivate::LinkSender& sender);
24133bbe223SAxel Dörfler 
24233bbe223SAxel Dörfler private:
2436869c8a5SRyan Leavengood 			void				_LaunchInputServer();
244cc93fbbbSAxel Dörfler 			void				_GetLooperName(char* name, size_t size);
245cc93fbbbSAxel Dörfler 			void				_PrepareQuit();
246cc93fbbbSAxel Dörfler 			void				_DispatchMessage(int32 code,
247cc93fbbbSAxel Dörfler 									BPrivate::LinkReceiver &link);
248e83820edSAxel Dörfler 
249cc93fbbbSAxel Dörfler 			WindowList&			_CurrentWindows();
250cc93fbbbSAxel Dörfler 			WindowList&			_Windows(int32 index);
251e83820edSAxel Dörfler 
25234227d2cSAxel Dörfler 			void				_UpdateFloating(int32 previousWorkspace = -1,
253d479fa7aSAxel Dörfler 									int32 nextWorkspace = -1,
254953d895eSAxel Dörfler 									Window* mouseEventWindow = NULL);
255e83820edSAxel Dörfler 			void				_UpdateBack();
25634227d2cSAxel Dörfler 			void				_UpdateFront(bool updateFloating = true);
25734227d2cSAxel Dörfler 			void				_UpdateFronts(bool updateFloating = true);
258953d895eSAxel Dörfler 			bool				_WindowHasModal(Window* window);
259e83820edSAxel Dörfler 
260953d895eSAxel Dörfler 			void				_WindowChanged(Window* window);
261953d895eSAxel Dörfler 			void				_WindowRemoved(Window* window);
262ce8c4d79SAxel Dörfler 
263cc93fbbbSAxel Dörfler 			void				_ShowWindow(Window* window,
264cc93fbbbSAxel Dörfler 									bool affectsOtherWindows = true);
265cc93fbbbSAxel Dörfler 			void				_HideWindow(Window* window);
2665f2edc0fSAxel Dörfler 
267cc93fbbbSAxel Dörfler 			void				_UpdateSubsetWorkspaces(Window* window,
268cc93fbbbSAxel Dörfler 									int32 previousIndex = -1,
269cc93fbbbSAxel Dörfler 									int32 newIndex = -1);
270cc93fbbbSAxel Dörfler 			void				_ChangeWindowWorkspaces(Window* window,
271cc93fbbbSAxel Dörfler 									uint32 oldWorkspaces, uint32 newWorkspaces);
272cc93fbbbSAxel Dörfler 			void				_BringWindowsToFront(WindowList& windows,
273cc93fbbbSAxel Dörfler 									int32 list, bool wereVisible);
274cc93fbbbSAxel Dörfler 			Window*				_LastFocusSubsetWindow(Window* window);
275cc93fbbbSAxel Dörfler 			void				_SendFakeMouseMoved(Window* window = NULL);
276cc93fbbbSAxel Dörfler 
27778ca6157SAxel Dörfler 			Screen*				_DetermineScreenFor(BRect frame);
278cc93fbbbSAxel Dörfler 			void				_RebuildClippingForAllWindows(
279cc93fbbbSAxel Dörfler 									BRegion& stillAvailableOnScreen);
280cc93fbbbSAxel Dörfler 			void				_TriggerWindowRedrawing(
281cc93fbbbSAxel Dörfler 									BRegion& newDirtyRegion);
282cc93fbbbSAxel Dörfler 			void				_SetBackground(BRegion& background);
283cc93fbbbSAxel Dörfler 			void				_RebuildAndRedrawAfterWindowChange(
284cc93fbbbSAxel Dörfler 									Window* window, BRegion& dirty);
285cc93fbbbSAxel Dörfler 
286cc93fbbbSAxel Dörfler 			status_t			_ActivateApp(team_id team);
287cc93fbbbSAxel Dörfler 
28878ca6157SAxel Dörfler 			void				_SuspendDirectFrameBufferAccess();
28978ca6157SAxel Dörfler 			void				_ResumeDirectFrameBufferAccess();
29078ca6157SAxel Dörfler 
291cc93fbbbSAxel Dörfler 			void				_ScreenChanged(Screen* screen);
292cc93fbbbSAxel Dörfler 			void				_SetCurrentWorkspaceConfiguration();
293cc93fbbbSAxel Dörfler 			void				_SetWorkspace(int32 index);
294e83820edSAxel Dörfler 
2955f2edc0fSAxel Dörfler private:
296ef8810f2SAxel Dörfler 	friend class DesktopSettings;
297a17c3a48SAxel Dörfler 	friend class LockedDesktopSettings;
298ef8810f2SAxel Dörfler 
29936deda69SAxel Dörfler 			uid_t				fUserID;
300*68667bf4SMichael Lotz 			const char*			fTargetScreen;
301fd5bec1eSAxel Dörfler 			::VirtualScreen		fVirtualScreen;
302a17c3a48SAxel Dörfler 			DesktopSettingsPrivate*	fSettings;
3035f2edc0fSAxel Dörfler 			port_id				fMessagePort;
304f7598223SAxel Dörfler 			::EventDispatcher	fEventDispatcher;
3056c17d025SAxel Dörfler 			port_id				fInputPort;
3066d5488e1SAxel Dörfler 			area_id				fSharedReadOnlyArea;
3076d5488e1SAxel Dörfler 			server_read_only_memory* fServerReadOnlyMemory;
308770c05d6SAxel Dörfler 
309e83820edSAxel Dörfler 			BLocker				fApplicationsLock;
310e83820edSAxel Dörfler 			BObjectList<ServerApp> fApplications;
311770c05d6SAxel Dörfler 
312770c05d6SAxel Dörfler 			sem_id				fShutdownSemaphore;
313770c05d6SAxel Dörfler 			int32				fShutdownCount;
314770c05d6SAxel Dörfler 
31582081c70SJérôme Duval 			::Workspace::Private fWorkspaces[kMaxWorkspaces];
31678ca6157SAxel Dörfler 			MultiLocker			fScreenLock;
3179fe35223SAxel Dörfler 			BLocker				fDirectScreenLock;
3189fe35223SAxel Dörfler 			team_id				fDirectScreenTeam;
31927adb969SAxel Dörfler 			int32				fCurrentWorkspace;
3204932bc5eSAxel Dörfler 			int32				fPreviousWorkspace;
32127adb969SAxel Dörfler 
322e83820edSAxel Dörfler 			WindowList			fAllWindows;
32334227d2cSAxel Dörfler 			WindowList			fSubsetWindows;
324d01879e5SAxel Dörfler 			WindowList			fFocusList;
325d8ebe612SAxel Dörfler 
326953d895eSAxel Dörfler 			BObjectList<WorkspacesView> fWorkspacesViews;
327d8ebe612SAxel Dörfler 			BLocker				fWorkspacesLock;
32833bbe223SAxel Dörfler 
3293ddebe7eSMichael Lotz 			CursorManager		fCursorManager;
330e83820edSAxel Dörfler 
331e83820edSAxel Dörfler #if USE_MULTI_LOCKER
332e83820edSAxel Dörfler 			MultiLocker			fWindowLock;
333e83820edSAxel Dörfler #else
334e83820edSAxel Dörfler 			BLocker				fWindowLock;
335e83820edSAxel Dörfler #endif
336e83820edSAxel Dörfler 
337e83820edSAxel Dörfler 			BRegion				fBackgroundRegion;
338e83820edSAxel Dörfler 			BRegion				fScreenRegion;
339e83820edSAxel Dörfler 
340953d895eSAxel Dörfler 			Window*				fMouseEventWindow;
341953d895eSAxel Dörfler 			const Window*		fWindowUnderMouse;
34221b40eddSStephan Aßmus 			const Window*		fLockedFocusWindow;
3431e766d46SAxel Dörfler 			int32				fViewUnderMouse;
3444d1c4228SStephan Aßmus 			BPoint				fLastMousePosition;
3454d1c4228SStephan Aßmus 			int32				fLastMouseButtons;
3461e766d46SAxel Dörfler 
347953d895eSAxel Dörfler 			Window*				fFocus;
348953d895eSAxel Dörfler 			Window*				fFront;
349953d895eSAxel Dörfler 			Window*				fBack;
35033bbe223SAxel Dörfler };
35133bbe223SAxel Dörfler 
35227adb969SAxel Dörfler #endif	// DESKTOP_H
353