2004-01-17 21:37:57 +03:00
|
|
|
//------------------------------------------------------------------------------
|
2004-09-21 02:50:02 +04:00
|
|
|
// Copyright (c) 2001-2002, Haiku, Inc.
|
2004-01-17 21:37:57 +03:00
|
|
|
//
|
|
|
|
// Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
// copy of this software and associated documentation files (the "Software"),
|
|
|
|
// to deal in the Software without restriction, including without limitation
|
|
|
|
// the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
|
|
// and/or sell copies of the Software, and to permit persons to whom the
|
|
|
|
// Software is furnished to do so, subject to the following conditions:
|
|
|
|
//
|
|
|
|
// The above copyright notice and this permission notice shall be included in
|
|
|
|
// all copies or substantial portions of the Software.
|
|
|
|
//
|
|
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
|
|
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
|
|
// DEALINGS IN THE SOFTWARE.
|
|
|
|
//
|
|
|
|
// File Name: Desktop.cpp
|
2005-01-17 00:35:02 +03:00
|
|
|
// Author: Adi Oanca <adioanca@cotty.iren.ro>
|
2004-01-17 21:37:57 +03:00
|
|
|
// Description: Class used to encapsulate desktop management
|
|
|
|
//
|
|
|
|
//------------------------------------------------------------------------------
|
2004-01-13 03:56:36 +03:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <Region.h>
|
2004-01-12 01:12:55 +03:00
|
|
|
#include <Message.h>
|
2004-01-13 03:56:36 +03:00
|
|
|
|
2004-01-22 03:32:07 +03:00
|
|
|
#include "AccelerantDriver.h"
|
|
|
|
#include "AppServer.h"
|
2004-01-13 03:56:36 +03:00
|
|
|
#include "Desktop.h"
|
2004-01-22 03:32:07 +03:00
|
|
|
#include "DisplayDriver.h"
|
|
|
|
#include "Globals.h"
|
2004-01-12 01:12:55 +03:00
|
|
|
#include "Layer.h"
|
2004-01-22 03:32:07 +03:00
|
|
|
#include "RootLayer.h"
|
|
|
|
#include "ServerConfig.h"
|
|
|
|
#include "ServerScreen.h"
|
|
|
|
#include "ServerWindow.h"
|
2003-01-29 02:58:06 +03:00
|
|
|
#include "ViewDriver.h"
|
2004-06-11 06:46:48 +04:00
|
|
|
#include "DirectDriver.h"
|
2004-01-12 01:12:55 +03:00
|
|
|
#include "WinBorder.h"
|
|
|
|
#include "Workspace.h"
|
2003-02-12 14:24:26 +03:00
|
|
|
|
2004-01-22 03:32:07 +03:00
|
|
|
//#define DEBUG_DESKTOP
|
2003-02-12 14:24:26 +03:00
|
|
|
|
2004-01-22 03:32:07 +03:00
|
|
|
#ifdef DEBUG_DESKTOP
|
|
|
|
#define STRACE(a) printf(a)
|
|
|
|
#else
|
|
|
|
#define STRACE(a) /* nothing */
|
|
|
|
#endif
|
2003-02-14 14:04:01 +03:00
|
|
|
|
2004-01-22 03:32:07 +03:00
|
|
|
Desktop::Desktop(void)
|
|
|
|
{
|
2004-01-12 01:12:55 +03:00
|
|
|
fActiveRootLayer = NULL;
|
2004-01-14 03:54:45 +03:00
|
|
|
fActiveScreen = NULL;
|
2003-01-24 18:19:27 +03:00
|
|
|
}
|
2004-01-22 03:32:07 +03:00
|
|
|
|
|
|
|
Desktop::~Desktop(void)
|
|
|
|
{
|
2004-01-13 03:56:36 +03:00
|
|
|
void *ptr;
|
2005-01-17 00:35:02 +03:00
|
|
|
|
|
|
|
for(int32 i=0; (ptr=fWinBorderList.ItemAt(i)); i++)
|
|
|
|
delete (WinBorder*)ptr;
|
|
|
|
|
2004-01-22 03:32:07 +03:00
|
|
|
for(int32 i=0; (ptr=fRootLayerList.ItemAt(i)); i++)
|
2004-01-12 01:12:55 +03:00
|
|
|
delete (RootLayer*)ptr;
|
2003-01-24 18:19:27 +03:00
|
|
|
|
2004-01-22 03:32:07 +03:00
|
|
|
for(int32 i=0; (ptr=fScreenList.ItemAt(i)); i++)
|
2004-01-12 01:12:55 +03:00
|
|
|
delete (Screen*)ptr;
|
2003-01-24 18:19:27 +03:00
|
|
|
|
|
|
|
}
|
2004-01-13 03:56:36 +03:00
|
|
|
|
2004-01-22 03:32:07 +03:00
|
|
|
void Desktop::Init(void)
|
|
|
|
{
|
2005-01-23 21:22:48 +03:00
|
|
|
DisplayDriver *driver=NULL;
|
|
|
|
|
|
|
|
switch(DISPLAYDRIVER)
|
2004-01-22 03:32:07 +03:00
|
|
|
{
|
2005-01-23 21:22:48 +03:00
|
|
|
case HWDRIVER:
|
2004-01-22 03:32:07 +03:00
|
|
|
{
|
|
|
|
// If we're using the AccelerantDriver for rendering, eventually we will loop through
|
|
|
|
// drivers until one can't initialize in order to support multiple monitors. For now,
|
|
|
|
// we'll just load one and be done with it.
|
2005-01-23 21:22:48 +03:00
|
|
|
|
|
|
|
bool initDrivers = true;
|
|
|
|
while(initDrivers)
|
|
|
|
{
|
|
|
|
driver = new AccelerantDriver();
|
|
|
|
AddDriver(driver);
|
|
|
|
}
|
2004-01-22 03:32:07 +03:00
|
|
|
}
|
2005-01-23 21:22:48 +03:00
|
|
|
case DIRECTDRIVER:
|
2004-06-11 06:46:48 +04:00
|
|
|
{
|
2005-01-23 21:22:48 +03:00
|
|
|
// It would be nice to have this for the default testing driver. Someday....
|
2004-06-11 06:46:48 +04:00
|
|
|
driver = new DirectDriver();
|
2005-01-23 21:22:48 +03:00
|
|
|
AddDriver(driver);
|
|
|
|
break;
|
2004-06-11 06:46:48 +04:00
|
|
|
}
|
2005-01-23 21:22:48 +03:00
|
|
|
default:
|
2004-01-22 03:32:07 +03:00
|
|
|
{
|
2005-01-23 21:22:48 +03:00
|
|
|
// It would be nice to not ever need this again....
|
2004-01-22 03:32:07 +03:00
|
|
|
driver = new ViewDriver();
|
2005-01-23 21:22:48 +03:00
|
|
|
AddDriver(driver);
|
|
|
|
break;
|
2004-01-12 01:12:55 +03:00
|
|
|
}
|
|
|
|
}
|
2003-02-14 14:04:01 +03:00
|
|
|
|
2005-01-23 21:22:48 +03:00
|
|
|
if(fScreenList.CountItems()<1)
|
|
|
|
{
|
2004-01-12 01:12:55 +03:00
|
|
|
delete this;
|
2004-03-28 19:02:53 +04:00
|
|
|
return;
|
|
|
|
}
|
2004-01-22 03:32:07 +03:00
|
|
|
|
2004-01-12 01:12:55 +03:00
|
|
|
InitMode();
|
2004-01-13 03:56:36 +03:00
|
|
|
|
2004-01-12 01:12:55 +03:00
|
|
|
SetActiveRootLayerByIndex(0);
|
|
|
|
}
|
2004-01-22 03:32:07 +03:00
|
|
|
|
2005-01-23 21:22:48 +03:00
|
|
|
void Desktop::AddDriver(DisplayDriver *driver)
|
|
|
|
{
|
|
|
|
if(driver->Initialize())
|
|
|
|
{
|
|
|
|
// TODO: be careful of screen initialization - monitor may not support 640x480
|
|
|
|
Screen *sc = new Screen(driver, BPoint(640, 480), B_RGB32, fScreenList.CountItems()+1);
|
|
|
|
fScreenList.AddItem(sc);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
driver->Shutdown();
|
|
|
|
delete driver;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-01-22 03:32:07 +03:00
|
|
|
void Desktop::InitMode(void)
|
|
|
|
{
|
|
|
|
// this is init mode for n-SS.
|
2004-01-14 03:54:45 +03:00
|
|
|
fActiveScreen = fScreenList.ItemAt(0)? (Screen*)fScreenList.ItemAt(0): NULL;
|
2004-01-22 03:32:07 +03:00
|
|
|
for (int32 i=0; i<fScreenList.CountItems(); i++)
|
|
|
|
{
|
2004-01-12 01:12:55 +03:00
|
|
|
char name[32];
|
|
|
|
sprintf(name, "RootLayer %ld", i+1);
|
2004-01-13 03:56:36 +03:00
|
|
|
|
|
|
|
Screen *screens[1];
|
|
|
|
screens[0] = (Screen*)fScreenList.ItemAt(i);
|
2004-01-12 01:12:55 +03:00
|
|
|
|
2004-02-24 15:03:51 +03:00
|
|
|
RootLayer *rl = new RootLayer(name, 4, this, GetDisplayDriver());
|
2004-01-12 01:12:55 +03:00
|
|
|
rl->SetScreens(screens, 1, 1);
|
2005-01-22 00:06:59 +03:00
|
|
|
rl->RunThread();
|
2004-01-12 01:12:55 +03:00
|
|
|
|
|
|
|
fRootLayerList.AddItem(rl);
|
2003-03-01 23:25:08 +03:00
|
|
|
}
|
2003-01-24 18:19:27 +03:00
|
|
|
}
|
|
|
|
|
2004-01-13 03:56:36 +03:00
|
|
|
//---------------------------------------------------------------------------
|
2004-01-22 03:32:07 +03:00
|
|
|
// Methods for multiple monitors.
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
|
|
Screen* Desktop::ScreenAt(int32 index) const
|
|
|
|
{
|
|
|
|
Screen *sc= static_cast<Screen*>(fScreenList.ItemAt(index));
|
2003-03-01 23:25:08 +03:00
|
|
|
|
2004-01-12 01:12:55 +03:00
|
|
|
return sc;
|
2003-01-24 18:19:27 +03:00
|
|
|
}
|
2004-01-22 03:32:07 +03:00
|
|
|
|
|
|
|
int32 Desktop::ScreenCount(void) const
|
|
|
|
{
|
2004-01-12 01:12:55 +03:00
|
|
|
return fScreenList.CountItems();
|
2003-02-24 18:47:06 +03:00
|
|
|
}
|
2004-01-22 03:32:07 +03:00
|
|
|
|
|
|
|
Screen* Desktop::ActiveScreen(void) const
|
|
|
|
{
|
2004-01-14 03:54:45 +03:00
|
|
|
return fActiveScreen;
|
2003-01-24 18:19:27 +03:00
|
|
|
}
|
2004-01-22 03:32:07 +03:00
|
|
|
|
|
|
|
void Desktop::SetActiveRootLayerByIndex(int32 listIndex)
|
|
|
|
{
|
|
|
|
RootLayer *rl=RootLayerAt(listIndex);
|
|
|
|
|
2004-01-12 01:12:55 +03:00
|
|
|
if (rl)
|
|
|
|
SetActiveRootLayer(rl);
|
2003-01-24 18:19:27 +03:00
|
|
|
}
|
2004-01-22 03:32:07 +03:00
|
|
|
|
|
|
|
void Desktop::SetActiveRootLayer(RootLayer* rl)
|
|
|
|
{
|
2004-01-12 01:12:55 +03:00
|
|
|
if (fActiveRootLayer == rl)
|
|
|
|
return;
|
2003-01-24 18:19:27 +03:00
|
|
|
|
2004-01-12 01:12:55 +03:00
|
|
|
fActiveRootLayer = rl;
|
2003-01-24 18:19:27 +03:00
|
|
|
}
|
2004-01-22 03:32:07 +03:00
|
|
|
|
|
|
|
RootLayer* Desktop::ActiveRootLayer(void) const
|
|
|
|
{
|
2004-01-12 01:12:55 +03:00
|
|
|
return fActiveRootLayer;
|
2003-07-06 23:48:17 +04:00
|
|
|
}
|
2004-01-22 03:32:07 +03:00
|
|
|
|
|
|
|
int32 Desktop::ActiveRootLayerIndex(void) const
|
|
|
|
{
|
2004-01-12 01:12:55 +03:00
|
|
|
int32 rootLayerCount = CountRootLayers();
|
2004-01-22 03:32:07 +03:00
|
|
|
for(int32 i=0; i<rootLayerCount; i++)
|
|
|
|
{
|
2004-01-12 01:12:55 +03:00
|
|
|
if(fActiveRootLayer == (RootLayer*)(fRootLayerList.ItemAt(i)))
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
return -1;
|
2003-01-24 18:19:27 +03:00
|
|
|
}
|
2004-01-22 03:32:07 +03:00
|
|
|
|
|
|
|
RootLayer* Desktop::RootLayerAt(int32 index)
|
|
|
|
{
|
|
|
|
RootLayer *rl=static_cast<RootLayer*>(fRootLayerList.ItemAt(index));
|
2003-09-09 01:18:39 +04:00
|
|
|
|
2004-01-12 01:12:55 +03:00
|
|
|
return rl;
|
2003-01-24 18:19:27 +03:00
|
|
|
}
|
2004-01-22 03:32:07 +03:00
|
|
|
|
|
|
|
int32 Desktop::CountRootLayers() const
|
|
|
|
{
|
2004-01-12 01:12:55 +03:00
|
|
|
return fRootLayerList.CountItems();
|
|
|
|
}
|
2003-09-09 01:18:39 +04:00
|
|
|
|
2004-01-22 03:32:07 +03:00
|
|
|
DisplayDriver* Desktop::GetDisplayDriver() const
|
|
|
|
{
|
2004-01-13 03:56:36 +03:00
|
|
|
return ScreenAt(0)->DDriver();
|
|
|
|
}
|
2004-01-22 03:32:07 +03:00
|
|
|
|
2004-01-13 03:56:36 +03:00
|
|
|
//---------------------------------------------------------------------------
|
2004-01-22 03:32:07 +03:00
|
|
|
// Methods for layer(WinBorder) manipulation.
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
|
|
void Desktop::AddWinBorder(WinBorder* winBorder)
|
|
|
|
{
|
2004-06-19 17:04:50 +04:00
|
|
|
desktop->fGeneralLock.Lock();
|
|
|
|
|
2004-01-12 01:12:55 +03:00
|
|
|
if(fWinBorderList.HasItem(winBorder))
|
2003-02-20 21:05:35 +03:00
|
|
|
return;
|
|
|
|
|
2004-01-22 03:32:07 +03:00
|
|
|
// special case for Tracker background window.
|
2005-01-17 00:35:02 +03:00
|
|
|
if (winBorder->Level() == B_SYSTEM_LAST)
|
2004-01-22 03:32:07 +03:00
|
|
|
{
|
|
|
|
// it's added in all RottLayers
|
|
|
|
for(int32 i=0; i<fRootLayerList.CountItems(); i++)
|
2004-01-12 01:12:55 +03:00
|
|
|
((RootLayer*)fRootLayerList.ItemAt(i))->AddWinBorder(winBorder);
|
|
|
|
}
|
2004-01-13 03:56:36 +03:00
|
|
|
else
|
2004-01-22 03:32:07 +03:00
|
|
|
// other windows are added to the current RootLayer only.
|
2004-01-12 01:12:55 +03:00
|
|
|
ActiveRootLayer()->AddWinBorder(winBorder);
|
2004-01-13 03:56:36 +03:00
|
|
|
|
2004-01-22 03:32:07 +03:00
|
|
|
// add that pointer to user winboder list so that we can keep track of them.
|
2004-01-13 03:56:36 +03:00
|
|
|
fLayerLock.Lock();
|
2004-01-12 01:12:55 +03:00
|
|
|
fWinBorderList.AddItem(winBorder);
|
2004-01-13 03:56:36 +03:00
|
|
|
fLayerLock.Unlock();
|
2004-06-19 17:04:50 +04:00
|
|
|
|
|
|
|
desktop->fGeneralLock.Unlock();
|
2004-01-12 01:12:55 +03:00
|
|
|
}
|
2004-01-22 03:32:07 +03:00
|
|
|
|
|
|
|
void Desktop::RemoveWinBorder(WinBorder* winBorder)
|
|
|
|
{
|
2004-06-19 17:04:50 +04:00
|
|
|
desktop->fGeneralLock.Lock();
|
|
|
|
|
2005-01-17 00:35:02 +03:00
|
|
|
if(winBorder->Level() == B_SYSTEM_LAST)
|
2004-01-22 03:32:07 +03:00
|
|
|
{
|
2004-01-12 01:12:55 +03:00
|
|
|
for(int32 i=0; i<fRootLayerList.CountItems(); i++)
|
|
|
|
((RootLayer*)fRootLayerList.ItemAt(i))->RemoveWinBorder(winBorder);
|
2004-01-13 03:56:36 +03:00
|
|
|
}
|
2004-01-22 03:32:07 +03:00
|
|
|
else
|
2004-01-12 01:12:55 +03:00
|
|
|
winBorder->GetRootLayer()->RemoveWinBorder(winBorder);
|
2003-09-09 01:18:39 +04:00
|
|
|
|
2004-01-13 03:56:36 +03:00
|
|
|
fLayerLock.Lock();
|
2004-01-12 01:12:55 +03:00
|
|
|
fWinBorderList.RemoveItem(winBorder);
|
2004-01-13 03:56:36 +03:00
|
|
|
fLayerLock.Unlock();
|
2004-06-19 17:04:50 +04:00
|
|
|
|
|
|
|
desktop->fGeneralLock.Unlock();
|
2003-08-31 21:38:34 +04:00
|
|
|
}
|
2004-01-22 03:32:07 +03:00
|
|
|
|
|
|
|
bool Desktop::HasWinBorder(WinBorder* winBorder)
|
|
|
|
{
|
2004-01-12 01:12:55 +03:00
|
|
|
return fWinBorderList.HasItem(winBorder);
|
2003-01-24 18:19:27 +03:00
|
|
|
}
|
2004-01-22 03:32:07 +03:00
|
|
|
|
2004-01-13 03:56:36 +03:00
|
|
|
//---------------------------------------------------------------------------
|
2004-01-22 03:32:07 +03:00
|
|
|
// Methods for various desktop stuff handled by the server
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
void Desktop::SetScrollBarInfo(const scroll_bar_info &info)
|
|
|
|
{
|
2004-01-12 01:12:55 +03:00
|
|
|
fScrollBarInfo = info;
|
2003-01-24 18:19:27 +03:00
|
|
|
}
|
2004-01-22 03:32:07 +03:00
|
|
|
|
|
|
|
scroll_bar_info Desktop::ScrollBarInfo(void) const
|
|
|
|
{
|
2004-01-12 01:12:55 +03:00
|
|
|
return fScrollBarInfo;
|
|
|
|
}
|
2004-01-22 03:32:07 +03:00
|
|
|
|
|
|
|
void Desktop::SetMenuInfo(const menu_info &info)
|
|
|
|
{
|
2004-01-12 01:12:55 +03:00
|
|
|
fMenuInfo = info;
|
2003-07-06 23:48:17 +04:00
|
|
|
}
|
2004-01-22 03:32:07 +03:00
|
|
|
|
|
|
|
menu_info Desktop::MenuInfo(void) const
|
|
|
|
{
|
2004-01-12 01:12:55 +03:00
|
|
|
return fMenuInfo;
|
2003-07-06 23:48:17 +04:00
|
|
|
}
|
2004-01-22 03:32:07 +03:00
|
|
|
|
|
|
|
void Desktop::UseFFMouse(const bool &useffm)
|
|
|
|
{
|
2004-01-12 01:12:55 +03:00
|
|
|
fFFMouseMode = useffm;
|
2003-07-06 23:48:17 +04:00
|
|
|
}
|
2004-01-22 03:32:07 +03:00
|
|
|
|
|
|
|
bool Desktop::FFMouseInUse(void) const
|
|
|
|
{
|
2004-01-12 01:12:55 +03:00
|
|
|
return fFFMouseMode;
|
2003-07-06 23:48:17 +04:00
|
|
|
}
|
2004-01-22 03:32:07 +03:00
|
|
|
|
|
|
|
void Desktop::SetFFMouseMode(const mode_mouse &value)
|
|
|
|
{
|
2004-01-12 01:12:55 +03:00
|
|
|
fMouseMode = value;
|
2003-07-06 23:48:17 +04:00
|
|
|
}
|
2004-01-22 03:32:07 +03:00
|
|
|
|
|
|
|
mode_mouse Desktop::FFMouseMode(void) const
|
|
|
|
{
|
2004-01-12 01:12:55 +03:00
|
|
|
return fMouseMode;
|
2003-07-06 23:48:17 +04:00
|
|
|
}
|
2004-01-22 03:32:07 +03:00
|
|
|
|
|
|
|
void Desktop::RemoveSubsetWindow(WinBorder* wb)
|
|
|
|
{
|
2004-01-12 01:12:55 +03:00
|
|
|
WinBorder *winBorder = NULL;
|
2004-01-17 19:33:22 +03:00
|
|
|
|
|
|
|
fLayerLock.Lock();
|
2004-01-12 01:12:55 +03:00
|
|
|
int32 count = fWinBorderList.CountItems();
|
2004-01-22 03:32:07 +03:00
|
|
|
for(int32 i=0; i < count; i++)
|
|
|
|
{
|
2004-01-12 01:12:55 +03:00
|
|
|
winBorder = static_cast<WinBorder*>(fWinBorderList.ItemAt(i));
|
2005-01-17 00:35:02 +03:00
|
|
|
if (winBorder->Level() == B_NORMAL_FEEL)
|
2004-01-13 03:56:36 +03:00
|
|
|
winBorder->Window()->fWinFMWList.RemoveItem(wb);
|
2003-07-06 23:48:17 +04:00
|
|
|
}
|
2004-01-17 19:33:22 +03:00
|
|
|
fLayerLock.Unlock();
|
|
|
|
|
2004-01-22 03:32:07 +03:00
|
|
|
RootLayer *rl = winBorder->GetRootLayer();
|
2004-01-17 19:33:22 +03:00
|
|
|
|
|
|
|
if (!fGeneralLock.IsLocked())
|
|
|
|
debugger("Desktop::RemoveWinBorder() - fGeneralLock must be locked!\n");
|
|
|
|
if (!(rl->fMainLock.IsLocked()))
|
|
|
|
debugger("Desktop::RemoveWinBorder() - fMainLock must be locked!\n");
|
|
|
|
|
2004-01-22 03:32:07 +03:00
|
|
|
int32 countWKs = rl->WorkspaceCount();
|
|
|
|
for (int32 i=0; i < countWKs; i++)
|
2004-07-11 14:01:01 +04:00
|
|
|
rl->WorkspaceAt(i+1)->RemoveWinBorder(wb);
|
2004-01-22 03:32:07 +03:00
|
|
|
|
2004-01-12 01:12:55 +03:00
|
|
|
}
|
2004-01-22 03:32:07 +03:00
|
|
|
|
|
|
|
void Desktop::PrintToStream(void)
|
|
|
|
{
|
2004-01-12 01:12:55 +03:00
|
|
|
printf("RootLayer List:\n=======\n");
|
2004-01-22 03:32:07 +03:00
|
|
|
for(int32 i=0; i<fRootLayerList.CountItems(); i++)
|
|
|
|
{
|
2004-01-12 01:12:55 +03:00
|
|
|
printf("\t%s\n", ((RootLayer*)fRootLayerList.ItemAt(i))->GetName());
|
|
|
|
((RootLayer*)fRootLayerList.ItemAt(i))->PrintToStream();
|
|
|
|
printf("-------\n");
|
|
|
|
}
|
|
|
|
printf("=======\nActive RootLayer: %s\n", fActiveRootLayer? fActiveRootLayer->GetName(): "NULL");
|
2004-01-13 03:56:36 +03:00
|
|
|
// printf("Active WinBorder: %s\n", fActiveWinBorder? fActiveWinBorder->Name(): "NULL");
|
2003-07-06 23:48:17 +04:00
|
|
|
|
2004-01-12 01:12:55 +03:00
|
|
|
printf("Screen List:\n");
|
2004-01-22 03:32:07 +03:00
|
|
|
for(int32 i=0; i<fScreenList.CountItems(); i++)
|
2004-01-12 01:12:55 +03:00
|
|
|
printf("\t%ld\n", ((Screen*)fScreenList.ItemAt(i))->ScreenNumber());
|
2003-07-06 23:48:17 +04:00
|
|
|
}
|
2004-01-22 03:32:07 +03:00
|
|
|
|
|
|
|
WinBorder* Desktop::FindWinBorderByServerWindowTokenAndTeamID(int32 token, team_id teamID)
|
|
|
|
{
|
2004-01-14 03:26:15 +03:00
|
|
|
WinBorder* wb;
|
|
|
|
fLayerLock.Lock();
|
2004-01-22 03:32:07 +03:00
|
|
|
for (int32 i = 0; (wb = (WinBorder*)fWinBorderList.ItemAt(i)); i++)
|
|
|
|
{
|
2004-01-16 19:09:36 +03:00
|
|
|
if (wb->Window()->ClientToken() == token
|
|
|
|
&& wb->Window()->ClientTeamID() == teamID)
|
2004-01-14 03:26:15 +03:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
fLayerLock.Unlock();
|
|
|
|
|
|
|
|
return wb;
|
|
|
|
}
|
2004-01-22 03:32:07 +03:00
|
|
|
|
|
|
|
void Desktop::PrintVisibleInRootLayerNo(int32 no)
|
|
|
|
{
|
2004-01-12 01:12:55 +03:00
|
|
|
if (no<0 || no>=fRootLayerList.CountItems())
|
|
|
|
return;
|
|
|
|
|
|
|
|
printf("Visible windows in RootLayer %ld, Workspace %ld\n",
|
|
|
|
ActiveRootLayerIndex(), ActiveRootLayer()->ActiveWorkspaceIndex());
|
2004-01-22 03:32:07 +03:00
|
|
|
WinBorder *wb = NULL;
|
|
|
|
Workspace *ws = ActiveRootLayer()->ActiveWorkspace();
|
|
|
|
for(wb = (WinBorder*)ws->GoToTopItem(); wb != NULL; wb = (WinBorder*)ws->GoToLowerItem())
|
|
|
|
{
|
2004-01-12 01:12:55 +03:00
|
|
|
if (!wb->IsHidden())
|
|
|
|
wb->PrintToStream();
|
|
|
|
}
|
|
|
|
}
|