00001 /* 00002 * Copyright (c) 2003-2005, Bram Stein 00003 * All rights reserved. 00004 * 00005 * Redistribution and use in source and binary forms, with or without 00006 * modification, are permitted provided that the following conditions 00007 * are met: 00008 * 00009 * 1. Redistributions of source code must retain the above copyright 00010 * notice, this list of conditions and the following disclaimer. 00011 * 2. Redistributions in binary form must reproduce the above copyright 00012 * notice, this list of conditions and the following disclaimer in the 00013 * documentation and/or other materials provided with the distribution. 00014 * 3. The name of the author may not be used to endorse or promote products 00015 * derived from this software without specific prior written permission. 00016 * 00017 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR IMPLIED 00018 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 00019 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO 00020 * EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, 00021 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, 00022 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 00023 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY 00024 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING 00025 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, 00026 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 00027 */ 00028 #pragma once 00029 #ifndef WINDOW_H 00030 #define WINDOW_H 00031 00032 #include "..\CompoundComponent.h" 00033 #include "..\event\WindowListener.h" 00034 #include "..\layout\BorderLayout.h" 00035 #include ".\TitleBar.h" 00036 00037 namespace ui 00038 { 00042 class Window : public CompoundComponent 00043 { 00044 public: 00048 Window(); 00049 00053 virtual ~Window(); 00054 00061 void addOwnedWindow(Window *window); 00062 00068 void removeOwnedWindow(Window *window); 00069 00074 void removeOwnedWindows(); 00075 00079 const WindowList& getOwnedWindows() const; 00080 00086 void setContentPane(Container *pane); 00087 00095 Container * getContentPane() const; 00096 00105 void add(Component* comp, int constraints = -1); 00106 00112 void remove(Component *comp); 00113 00122 void show(); 00123 00132 void hide(); 00133 00134 00140 void pack(); 00141 00150 void updateComponent(float deltaTime); 00151 00155 virtual bool isRootContainer() const; 00156 00162 void addWindowListener(event::WindowListener *listener); 00163 00169 void removeWindowListener(event::WindowListener *listener); 00170 00174 void removeWindowListeners(); 00175 00181 const event::WindowListenerList getWindowListeners() const; 00182 00189 void processWindowEvent(const event::WindowEvent &e); 00190 00191 void setTitleBar(TitleBar *titleBar); 00192 00193 TitleBar * getTitleBar() const; 00194 00195 void setActiveWindow(Window *window); 00196 00197 Window * getActiveWindow() const; 00198 00199 protected: 00205 void paintChildren(Graphics& g); 00206 00207 00208 00209 private: 00210 void paintOwnedWindows(Graphics& g); 00211 00212 Container* rootPane; 00213 event::WindowListenerList windowListenerList; 00214 00215 WindowList windowList; 00216 Window* activeWindow; 00217 layout::BorderLayout layout; 00218 TitleBar *titleBar; 00219 }; 00220 } 00221 #endif