Crazy Eddie's GUI System
0.8.4
|
00001 /*********************************************************************** 00002 created: 25/4/2004 00003 author: Paul D Turner 00004 00005 purpose: Interface for a Titlebar Widget 00006 *************************************************************************/ 00007 /*************************************************************************** 00008 * Copyright (C) 2004 - 2006 Paul D Turner & The CEGUI Development Team 00009 * 00010 * Permission is hereby granted, free of charge, to any person obtaining 00011 * a copy of this software and associated documentation files (the 00012 * "Software"), to deal in the Software without restriction, including 00013 * without limitation the rights to use, copy, modify, merge, publish, 00014 * distribute, sublicense, and/or sell copies of the Software, and to 00015 * permit persons to whom the Software is furnished to do so, subject to 00016 * the following conditions: 00017 * 00018 * The above copyright notice and this permission notice shall be 00019 * included in all copies or substantial portions of the Software. 00020 * 00021 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 00022 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 00023 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 00024 * IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR 00025 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, 00026 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 00027 * OTHER DEALINGS IN THE SOFTWARE. 00028 ***************************************************************************/ 00029 #ifndef _CEGUITitlebar_h_ 00030 #define _CEGUITitlebar_h_ 00031 00032 #include "../Window.h" 00033 00034 00035 #if defined(_MSC_VER) 00036 # pragma warning(push) 00037 # pragma warning(disable : 4251) 00038 #endif 00039 00040 00041 // Start of CEGUI namespace section 00042 namespace CEGUI 00043 { 00044 00050 class CEGUIEXPORT Titlebar : public Window 00051 { 00052 public: 00053 static const String EventNamespace; 00054 static const String WidgetTypeName; 00055 00063 bool isDraggingEnabled(void) const; 00064 00065 00076 void setDraggingEnabled(bool setting); 00077 00082 bool isDragged() const; 00083 00088 const Vector2f& getDragPoint() const; 00089 00090 /************************************************************************* 00091 Construction / Destruction 00092 *************************************************************************/ 00097 Titlebar(const String& type, const String& name); 00098 00099 00104 virtual ~Titlebar(void); 00105 00106 00107 protected: 00108 /************************************************************************* 00109 Overridden event handler functions 00110 *************************************************************************/ 00111 virtual void onMouseMove(MouseEventArgs& e); 00112 virtual void onMouseButtonDown(MouseEventArgs& e); 00113 virtual void onMouseButtonUp(MouseEventArgs& e); 00114 virtual void onMouseDoubleClicked(MouseEventArgs& e); 00115 virtual void onCaptureLost(WindowEventArgs& e); 00116 virtual void onFontChanged(WindowEventArgs &e); 00117 00118 00119 /************************************************************************* 00120 New event handlers for title bar 00121 *************************************************************************/ 00129 virtual void onDraggingModeChanged(WindowEventArgs&) {} 00130 00131 /************************************************************************* 00132 Implementation Data 00133 *************************************************************************/ 00134 bool d_dragging; 00135 Vector2f d_dragPoint; 00136 bool d_dragEnabled; 00137 00138 Rectf d_oldCursorArea; 00139 00140 private: 00141 /************************************************************************* 00142 Private methods 00143 *************************************************************************/ 00144 void addTitlebarProperties(void); 00145 }; 00146 00147 } // End of CEGUI namespace section 00148 00149 #if defined(_MSC_VER) 00150 # pragma warning(pop) 00151 #endif 00152 00153 #endif // end of guard _CEGUITitlebar_h_