xref: /haiku/src/servers/app/Desktop.h (revision 9fe35223cf4eb9714865152d62e8efc36b327fef)
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:
6236deda69SAxel Dörfler 								Desktop(uid_t userID);
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; }
68770c05d6SAxel Dörfler 	virtual port_id				MessagePort() const { return fMessagePort; }
699dbce7a4SAxel Dörfler 			area_id				SharedReadOnlyArea() const
709dbce7a4SAxel Dörfler 									{ return fSharedReadOnlyArea; }
71770c05d6SAxel Dörfler 
72f7598223SAxel Dörfler 			::EventDispatcher&	EventDispatcher() { return fEventDispatcher; }
736c17d025SAxel Dörfler 
74770c05d6SAxel Dörfler 			void				BroadcastToAllApps(int32 code);
750a3f410fSAxel Dörfler 			void				BroadcastToAllWindows(int32 code);
7633bbe223SAxel Dörfler 
77cc93fbbbSAxel Dörfler 	// Locking
78cc93fbbbSAxel Dörfler #if USE_MULTI_LOCKER
79cc93fbbbSAxel Dörfler 			bool				LockSingleWindow()
80cc93fbbbSAxel Dörfler 									{ return fWindowLock.ReadLock(); }
81cc93fbbbSAxel Dörfler 			void				UnlockSingleWindow()
82cc93fbbbSAxel Dörfler 									{ fWindowLock.ReadUnlock(); }
83cc93fbbbSAxel Dörfler 
84cc93fbbbSAxel Dörfler 			bool				LockAllWindows()
85cc93fbbbSAxel Dörfler 									{ return fWindowLock.WriteLock(); }
86cc93fbbbSAxel Dörfler 			void				UnlockAllWindows()
87cc93fbbbSAxel Dörfler 									{ fWindowLock.WriteUnlock(); }
88cc93fbbbSAxel Dörfler 
8978ca6157SAxel Dörfler 			const MultiLocker&	WindowLocker() { return fWindowLock; }
90cc93fbbbSAxel Dörfler #else // USE_MULTI_LOCKER
91cc93fbbbSAxel Dörfler 			bool				LockSingleWindow()
92cc93fbbbSAxel Dörfler 									{ return fWindowLock.Lock(); }
93cc93fbbbSAxel Dörfler 			void				UnlockSingleWindow()
94cc93fbbbSAxel Dörfler 									{ fWindowLock.Unlock(); }
95cc93fbbbSAxel Dörfler 
96cc93fbbbSAxel Dörfler 			bool				LockAllWindows()
97cc93fbbbSAxel Dörfler 									{ return fWindowLock.Lock(); }
98cc93fbbbSAxel Dörfler 			void				UnlockAllWindows()
99cc93fbbbSAxel Dörfler 									{ fWindowLock.Unlock(); }
100cc93fbbbSAxel Dörfler #endif // USE_MULTI_LOCKER
101cc93fbbbSAxel Dörfler 
1020eed9183SAxel Dörfler 	// Mouse and cursor methods
10333bbe223SAxel Dörfler 
104195e980eSAxel Dörfler 			void				SetCursor(ServerCursor* cursor);
105ace2d5eeSStephan Aßmus 			ServerCursorReference Cursor() const;
1064d1c4228SStephan Aßmus 			void				SetLastMouseState(const BPoint& position,
10721b40eddSStephan Aßmus 									int32 buttons, Window* windowUnderMouse);
1084d1c4228SStephan Aßmus 									// for use by the mouse filter only
1094d1c4228SStephan Aßmus 									// both mouse position calls require
1104d1c4228SStephan Aßmus 									// the Desktop object to be locked
1114d1c4228SStephan Aßmus 									// already
1124d1c4228SStephan Aßmus 			void				GetLastMouseState(BPoint* position,
1134d1c4228SStephan Aßmus 									int32* buttons) const;
1144d1c4228SStephan Aßmus 									// for use by ServerWindow
1150eed9183SAxel Dörfler 
1160eed9183SAxel Dörfler 			CursorManager&		GetCursorManager() { return fCursorManager; }
1170eed9183SAxel Dörfler 
118fe7f167dSAxel Dörfler 	// Screen and drawing related methods
119fe7f167dSAxel Dörfler 
1200eed9183SAxel Dörfler 			status_t			SetScreenMode(int32 workspace, int32 id,
1210eed9183SAxel Dörfler 									const display_mode& mode, bool makeDefault);
1220eed9183SAxel Dörfler 			status_t			GetScreenMode(int32 workspace, int32 id,
1230eed9183SAxel Dörfler 									display_mode& mode);
124e18224cdSAxel Dörfler 			status_t			GetScreenFrame(int32 workspace, int32 id,
125e18224cdSAxel Dörfler 									BRect& frame);
1265e3f4c41SAxel Dörfler 			void				RevertScreenModes(uint32 workspaces);
1270eed9183SAxel Dörfler 
12878ca6157SAxel Dörfler 			MultiLocker&		ScreenLocker() { return fScreenLock; }
12978ca6157SAxel Dörfler 
130*9fe35223SAxel Dörfler 			status_t			LockDirectScreen(team_id team);
131*9fe35223SAxel Dörfler 			status_t			UnlockDirectScreen(team_id team);
132*9fe35223SAxel Dörfler 
1335e3f4c41SAxel Dörfler 			const ::VirtualScreen& VirtualScreen() const
1345e3f4c41SAxel Dörfler 									{ return fVirtualScreen; }
13527adb969SAxel Dörfler 			DrawingEngine*		GetDrawingEngine() const
13658468dfeSStephan Aßmus 									{ return fVirtualScreen.DrawingEngine(); }
13727adb969SAxel Dörfler 			::HWInterface*		HWInterface() const
138fd5bec1eSAxel Dörfler 									{ return fVirtualScreen.HWInterface(); }
13994fa2bd2SAdi Oanca 
1400eed9183SAxel Dörfler 	// ScreenOwner implementation
1415e3f4c41SAxel Dörfler 	virtual	void				ScreenRemoved(Screen* screen) {}
1425e3f4c41SAxel Dörfler 	virtual	void				ScreenAdded(Screen* screen) {}
1435e3f4c41SAxel Dörfler 	virtual	bool				ReleaseScreen(Screen* screen) { return false; }
1440eed9183SAxel Dörfler 
14527adb969SAxel Dörfler 	// Workspace methods
14627adb969SAxel Dörfler 
1474d1c4228SStephan Aßmus 			void				SetWorkspaceAsync(int32 index);
14827adb969SAxel Dörfler 			void				SetWorkspace(int32 index);
14927adb969SAxel Dörfler 			int32				CurrentWorkspace()
15027adb969SAxel Dörfler 									{ return fCurrentWorkspace; }
1515ca8477eSAxel Dörfler 			Workspace::Private&	WorkspaceAt(int32 index)
15227adb969SAxel Dörfler 									{ return fWorkspaces[index]; }
15369f9a367SAxel Dörfler 			status_t			SetWorkspacesLayout(int32 columns, int32 rows);
15427c43a2dSRene Gollent 			BRect				WorkspaceFrame(int32 index) const;
15527adb969SAxel Dörfler 
156cc93fbbbSAxel Dörfler 			void				StoreWorkspaceConfiguration(int32 index);
157cc93fbbbSAxel Dörfler 
158cc93fbbbSAxel Dörfler 			void				AddWorkspacesView(WorkspacesView* view);
159cc93fbbbSAxel Dörfler 			void				RemoveWorkspacesView(WorkspacesView* view);
160cc93fbbbSAxel Dörfler 
161953d895eSAxel Dörfler 	// Window methods
16227adb969SAxel Dörfler 
163953d895eSAxel Dörfler 			void				ActivateWindow(Window* window);
164953d895eSAxel Dörfler 			void				SendWindowBehind(Window* window,
165953d895eSAxel Dörfler 									Window* behindOf = NULL);
16627adb969SAxel Dörfler 
167953d895eSAxel Dörfler 			void				ShowWindow(Window* window);
168953d895eSAxel Dörfler 			void				HideWindow(Window* window);
16915918e4fSAxel Dörfler 
170953d895eSAxel Dörfler 			void				MoveWindowBy(Window* window, float x, float y,
17114fe11cfSAxel Dörfler 									int32 workspace = -1);
1729dbce7a4SAxel Dörfler 			void				ResizeWindowBy(Window* window, float x,
1739dbce7a4SAxel Dörfler 									float y);
1749dbce7a4SAxel Dörfler 			bool				SetWindowTabLocation(Window* window,
1759dbce7a4SAxel Dörfler 									float location);
176953d895eSAxel Dörfler 			bool				SetWindowDecoratorSettings(Window* window,
177b30e9021SStephan Aßmus 									const BMessage& settings);
17819d801a6SAxel Dörfler 
179953d895eSAxel Dörfler 			void				SetWindowWorkspaces(Window* window,
180a631158aSAxel Dörfler 									uint32 workspaces);
18127adb969SAxel Dörfler 
182953d895eSAxel Dörfler 			void				AddWindow(Window* window);
183953d895eSAxel Dörfler 			void				RemoveWindow(Window* window);
18457be2866SAxel Dörfler 
185953d895eSAxel Dörfler 			bool				AddWindowToSubset(Window* subset,
186953d895eSAxel Dörfler 									Window* window);
187953d895eSAxel Dörfler 			void				RemoveWindowFromSubset(Window* subset,
188953d895eSAxel Dörfler 									Window* window);
18934227d2cSAxel Dörfler 
1900a3f410fSAxel Dörfler 			void				FontsChanged(Window* window);
1910a3f410fSAxel Dörfler 
192953d895eSAxel Dörfler 			void				SetWindowLook(Window* window, window_look look);
193953d895eSAxel Dörfler 			void				SetWindowFeel(Window* window, window_feel feel);
194953d895eSAxel Dörfler 			void				SetWindowFlags(Window* window, uint32 flags);
1959dbce7a4SAxel Dörfler 			void				SetWindowTitle(Window* window,
1969dbce7a4SAxel Dörfler 									const char* title);
19733bbe223SAxel Dörfler 
198953d895eSAxel Dörfler 			Window*				FocusWindow() const { return fFocus; }
199953d895eSAxel Dörfler 			Window*				FrontWindow() const { return fFront; }
200953d895eSAxel Dörfler 			Window*				BackWindow() const { return fBack; }
201e83820edSAxel Dörfler 
202953d895eSAxel Dörfler 			Window*				WindowAt(BPoint where);
203e83820edSAxel Dörfler 
2049dbce7a4SAxel Dörfler 			Window*				MouseEventWindow() const
2059dbce7a4SAxel Dörfler 									{ return fMouseEventWindow; }
206953d895eSAxel Dörfler 			void				SetMouseEventWindow(Window* window);
207e83820edSAxel Dörfler 
2089dbce7a4SAxel Dörfler 			void				SetViewUnderMouse(const Window* window,
2099dbce7a4SAxel Dörfler 									int32 viewToken);
210953d895eSAxel Dörfler 			int32				ViewUnderMouse(const Window* window);
2111e766d46SAxel Dörfler 
21207dc2c69SAxel Dörfler 			EventTarget*		KeyboardEventTarget();
213cc93fbbbSAxel Dörfler 
214cc93fbbbSAxel Dörfler 			void				SetFocusWindow(Window* window = NULL);
21521b40eddSStephan Aßmus 			void				SetFocusLocked(const Window* window);
216e83820edSAxel Dörfler 
217953d895eSAxel Dörfler 			Window*				FindWindowByClientToken(int32 token,
218953d895eSAxel Dörfler 									team_id teamID);
21995530739SAxel Dörfler 			EventTarget*		FindTarget(BMessenger& messenger);
2206a0a0a80SAxel Dörfler 
221e83820edSAxel Dörfler 			void				MarkDirty(BRegion& region);
222b09e2f6fSStephan Aßmus 			void				Redraw();
223cc93fbbbSAxel Dörfler 			void				RedrawBackground();
224e83820edSAxel Dörfler 
225e83820edSAxel Dörfler 			BRegion&			BackgroundRegion()
226e83820edSAxel Dörfler 									{ return fBackgroundRegion; }
22733bbe223SAxel Dörfler 
228f877af82SAxel Dörfler 			void				MinimizeApplication(team_id team);
229f877af82SAxel Dörfler 			void				BringApplicationToFront(team_id team);
230bfe69873SAxel Dörfler 			void				WindowAction(int32 windowToken, int32 action);
231f877af82SAxel Dörfler 
23227adb969SAxel Dörfler 			void				WriteWindowList(team_id team,
23327adb969SAxel Dörfler 									BPrivate::LinkSender& sender);
23427adb969SAxel Dörfler 			void				WriteWindowInfo(int32 serverToken,
23527adb969SAxel Dörfler 									BPrivate::LinkSender& sender);
236ae0606beSAxel Dörfler 			void				WriteApplicationOrder(int32 workspace,
237ae0606beSAxel Dörfler 									BPrivate::LinkSender& sender);
238ae0606beSAxel Dörfler 			void				WriteWindowOrder(int32 workspace,
239ae0606beSAxel Dörfler 									BPrivate::LinkSender& sender);
24033bbe223SAxel Dörfler 
24133bbe223SAxel Dörfler private:
2426869c8a5SRyan Leavengood 			void				_LaunchInputServer();
243cc93fbbbSAxel Dörfler 			void				_GetLooperName(char* name, size_t size);
244cc93fbbbSAxel Dörfler 			void				_PrepareQuit();
245cc93fbbbSAxel Dörfler 			void				_DispatchMessage(int32 code,
246cc93fbbbSAxel Dörfler 									BPrivate::LinkReceiver &link);
247e83820edSAxel Dörfler 
248cc93fbbbSAxel Dörfler 			WindowList&			_CurrentWindows();
249cc93fbbbSAxel Dörfler 			WindowList&			_Windows(int32 index);
250e83820edSAxel Dörfler 
25134227d2cSAxel Dörfler 			void				_UpdateFloating(int32 previousWorkspace = -1,
252d479fa7aSAxel Dörfler 									int32 nextWorkspace = -1,
253953d895eSAxel Dörfler 									Window* mouseEventWindow = NULL);
254e83820edSAxel Dörfler 			void				_UpdateBack();
25534227d2cSAxel Dörfler 			void				_UpdateFront(bool updateFloating = true);
25634227d2cSAxel Dörfler 			void				_UpdateFronts(bool updateFloating = true);
257953d895eSAxel Dörfler 			bool				_WindowHasModal(Window* window);
258e83820edSAxel Dörfler 
259953d895eSAxel Dörfler 			void				_WindowChanged(Window* window);
260953d895eSAxel Dörfler 			void				_WindowRemoved(Window* window);
261ce8c4d79SAxel Dörfler 
262cc93fbbbSAxel Dörfler 			void				_ShowWindow(Window* window,
263cc93fbbbSAxel Dörfler 									bool affectsOtherWindows = true);
264cc93fbbbSAxel Dörfler 			void				_HideWindow(Window* window);
2655f2edc0fSAxel Dörfler 
266cc93fbbbSAxel Dörfler 			void				_UpdateSubsetWorkspaces(Window* window,
267cc93fbbbSAxel Dörfler 									int32 previousIndex = -1,
268cc93fbbbSAxel Dörfler 									int32 newIndex = -1);
269cc93fbbbSAxel Dörfler 			void				_ChangeWindowWorkspaces(Window* window,
270cc93fbbbSAxel Dörfler 									uint32 oldWorkspaces, uint32 newWorkspaces);
271cc93fbbbSAxel Dörfler 			void				_BringWindowsToFront(WindowList& windows,
272cc93fbbbSAxel Dörfler 									int32 list, bool wereVisible);
273cc93fbbbSAxel Dörfler 			Window*				_LastFocusSubsetWindow(Window* window);
274cc93fbbbSAxel Dörfler 			void				_SendFakeMouseMoved(Window* window = NULL);
275cc93fbbbSAxel Dörfler 
27678ca6157SAxel Dörfler 			Screen*				_DetermineScreenFor(BRect frame);
277cc93fbbbSAxel Dörfler 			void				_RebuildClippingForAllWindows(
278cc93fbbbSAxel Dörfler 									BRegion& stillAvailableOnScreen);
279cc93fbbbSAxel Dörfler 			void				_TriggerWindowRedrawing(
280cc93fbbbSAxel Dörfler 									BRegion& newDirtyRegion);
281cc93fbbbSAxel Dörfler 			void				_SetBackground(BRegion& background);
282cc93fbbbSAxel Dörfler 			void				_RebuildAndRedrawAfterWindowChange(
283cc93fbbbSAxel Dörfler 									Window* window, BRegion& dirty);
284cc93fbbbSAxel Dörfler 
285cc93fbbbSAxel Dörfler 			status_t			_ActivateApp(team_id team);
286cc93fbbbSAxel Dörfler 
28778ca6157SAxel Dörfler 			void				_SuspendDirectFrameBufferAccess();
28878ca6157SAxel Dörfler 			void				_ResumeDirectFrameBufferAccess();
28978ca6157SAxel Dörfler 
290cc93fbbbSAxel Dörfler 			void				_ScreenChanged(Screen* screen);
291cc93fbbbSAxel Dörfler 			void				_SetCurrentWorkspaceConfiguration();
292cc93fbbbSAxel Dörfler 			void				_SetWorkspace(int32 index);
293e83820edSAxel Dörfler 
2945f2edc0fSAxel Dörfler private:
295ef8810f2SAxel Dörfler 	friend class DesktopSettings;
296a17c3a48SAxel Dörfler 	friend class LockedDesktopSettings;
297ef8810f2SAxel Dörfler 
29836deda69SAxel Dörfler 			uid_t				fUserID;
299fd5bec1eSAxel Dörfler 			::VirtualScreen		fVirtualScreen;
300a17c3a48SAxel Dörfler 			DesktopSettingsPrivate*	fSettings;
3015f2edc0fSAxel Dörfler 			port_id				fMessagePort;
302f7598223SAxel Dörfler 			::EventDispatcher	fEventDispatcher;
3036c17d025SAxel Dörfler 			port_id				fInputPort;
3046d5488e1SAxel Dörfler 			area_id				fSharedReadOnlyArea;
3056d5488e1SAxel Dörfler 			server_read_only_memory* fServerReadOnlyMemory;
306770c05d6SAxel Dörfler 
307e83820edSAxel Dörfler 			BLocker				fApplicationsLock;
308e83820edSAxel Dörfler 			BObjectList<ServerApp> fApplications;
309770c05d6SAxel Dörfler 
310770c05d6SAxel Dörfler 			sem_id				fShutdownSemaphore;
311770c05d6SAxel Dörfler 			int32				fShutdownCount;
312770c05d6SAxel Dörfler 
31382081c70SJérôme Duval 			::Workspace::Private fWorkspaces[kMaxWorkspaces];
31478ca6157SAxel Dörfler 			MultiLocker			fScreenLock;
315*9fe35223SAxel Dörfler 			BLocker				fDirectScreenLock;
316*9fe35223SAxel Dörfler 			team_id				fDirectScreenTeam;
31727adb969SAxel Dörfler 			int32				fCurrentWorkspace;
3184932bc5eSAxel Dörfler 			int32				fPreviousWorkspace;
31927adb969SAxel Dörfler 
320e83820edSAxel Dörfler 			WindowList			fAllWindows;
32134227d2cSAxel Dörfler 			WindowList			fSubsetWindows;
322d01879e5SAxel Dörfler 			WindowList			fFocusList;
323d8ebe612SAxel Dörfler 
324953d895eSAxel Dörfler 			BObjectList<WorkspacesView> fWorkspacesViews;
325d8ebe612SAxel Dörfler 			BLocker				fWorkspacesLock;
32633bbe223SAxel Dörfler 
3273ddebe7eSMichael Lotz 			CursorManager		fCursorManager;
328e83820edSAxel Dörfler 
329e83820edSAxel Dörfler #if USE_MULTI_LOCKER
330e83820edSAxel Dörfler 			MultiLocker			fWindowLock;
331e83820edSAxel Dörfler #else
332e83820edSAxel Dörfler 			BLocker				fWindowLock;
333e83820edSAxel Dörfler #endif
334e83820edSAxel Dörfler 
335e83820edSAxel Dörfler 			BRegion				fBackgroundRegion;
336e83820edSAxel Dörfler 			BRegion				fScreenRegion;
337e83820edSAxel Dörfler 
338953d895eSAxel Dörfler 			Window*				fMouseEventWindow;
339953d895eSAxel Dörfler 			const Window*		fWindowUnderMouse;
34021b40eddSStephan Aßmus 			const Window*		fLockedFocusWindow;
3411e766d46SAxel Dörfler 			int32				fViewUnderMouse;
3424d1c4228SStephan Aßmus 			BPoint				fLastMousePosition;
3434d1c4228SStephan Aßmus 			int32				fLastMouseButtons;
3441e766d46SAxel Dörfler 
345953d895eSAxel Dörfler 			Window*				fFocus;
346953d895eSAxel Dörfler 			Window*				fFront;
347953d895eSAxel Dörfler 			Window*				fBack;
34833bbe223SAxel Dörfler };
34933bbe223SAxel Dörfler 
35027adb969SAxel Dörfler #endif	// DESKTOP_H
351