27adb96962
* workspace switch and subset windows functionality temporarily removed (away with that mess!). * no more RevealWMState() - we now have methods like ActivateWindow() and SendWindowBehind() that do all the work - just a little cleaner and with less overhead. * Workspace is now a pretty passive class - it only stores configurations of the windows and screens. * added an evil work-around for a locking problem (in RootLayer::_SetFocus()). * I'll plan to move pretty much all of the remaining root layer functionality to Desktop - so that the all regions lock is only held in case clipping regions are affected. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@15207 a95241bf-73f2-0310-859d-f6bbb57e9c96
33 lines
559 B
C++
33 lines
559 B
C++
/*
|
|
* Copyright 2001-2005, Haiku.
|
|
* Distributed under the terms of the MIT License.
|
|
*
|
|
* Authors:
|
|
* Adrian Oanca <adioanca@cotty.iren.ro>
|
|
*/
|
|
#ifndef _SUB_WINDOW_LIST_H_
|
|
#define _SUB_WINDOW_LIST_H_
|
|
|
|
|
|
#include <List.h>
|
|
#include <Window.h>
|
|
|
|
|
|
class WindowLayer;
|
|
|
|
class SubWindowList : public BList {
|
|
public:
|
|
SubWindowList();
|
|
virtual ~SubWindowList();
|
|
|
|
void AddWindowLayer(WindowLayer *windowLayer);
|
|
|
|
// special
|
|
void AddSubWindowList(SubWindowList *list);
|
|
|
|
// debugging methods
|
|
void PrintToStream() const;
|
|
};
|
|
|
|
#endif /* _SUB_WINDOW_LIST_H_ */
|