2005-06-17 20:34:22 +04:00
|
|
|
/*
|
|
|
|
* 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>
|
|
|
|
|
|
|
|
|
2005-11-24 20:45:26 +03:00
|
|
|
class WindowLayer;
|
2005-06-17 20:34:22 +04:00
|
|
|
|
|
|
|
class SubWindowList : public BList {
|
|
|
|
public:
|
2005-11-29 02:36:59 +03:00
|
|
|
SubWindowList();
|
|
|
|
virtual ~SubWindowList();
|
2005-06-17 20:34:22 +04:00
|
|
|
|
2005-11-24 20:45:26 +03:00
|
|
|
void AddWindowLayer(WindowLayer *windowLayer);
|
2005-06-17 20:34:22 +04:00
|
|
|
|
|
|
|
// special
|
|
|
|
void AddSubWindowList(SubWindowList *list);
|
|
|
|
|
|
|
|
// debugging methods
|
|
|
|
void PrintToStream() const;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* _SUB_WINDOW_LIST_H_ */
|