1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>Crazy Eddies GUI System: CEGUIWindowManager.h Source File</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css"/>
</head>
<body>
<!-- Generated by Doxygen 1.7.4 -->
<script type="text/javascript">
function hasClass(ele,cls) {
return ele.className.match(new RegExp('(\\s|^)'+cls+'(\\s|$)'));
}
function addClass(ele,cls) {
if (!this.hasClass(ele,cls)) ele.className += " "+cls;
}
function removeClass(ele,cls) {
if (hasClass(ele,cls)) {
var reg = new RegExp('(\\s|^)'+cls+'(\\s|$)');
ele.className=ele.className.replace(reg,' ');
}
}
function toggleVisibility(linkObj) {
var base = linkObj.getAttribute('id');
var summary = document.getElementById(base + '-summary');
var content = document.getElementById(base + '-content');
var trigger = document.getElementById(base + '-trigger');
if ( hasClass(linkObj,'closed') ) {
summary.style.display = 'none';
content.style.display = 'block';
trigger.src = 'open.png';
removeClass(linkObj,'closed');
addClass(linkObj,'opened');
} else if ( hasClass(linkObj,'opened') ) {
summary.style.display = 'block';
content.style.display = 'none';
trigger.src = 'closed.png';
removeClass(linkObj,'opened');
addClass(linkObj,'closed');
}
return false;
}
</script>
<div id="top">
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td style="padding-left: 0.5em;">
<div id="projectname">Crazy Eddies GUI System <span id="projectnumber">0.7.6</span></div>
</td>
</tr>
</tbody>
</table>
</div>
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main Page</span></a></li>
<li><a href="pages.html"><span>Related Pages</span></a></li>
<li><a href="namespaces.html"><span>Namespaces</span></a></li>
<li><a href="annotated.html"><span>Classes</span></a></li>
<li class="current"><a href="files.html"><span>Files</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="files.html"><span>File List</span></a></li>
</ul>
</div>
<div class="header">
<div class="headertitle">
<div class="title">CEGUIWindowManager.h</div> </div>
</div>
<div class="contents">
<div class="fragment"><pre class="fragment"><a name="l00001"></a>00001 <span class="comment">/***********************************************************************</span>
<a name="l00002"></a>00002 <span class="comment"> filename: CEGUIWindowManager.h</span>
<a name="l00003"></a>00003 <span class="comment"> created: 21/2/2004</span>
<a name="l00004"></a>00004 <span class="comment"> author: Paul D Turner</span>
<a name="l00005"></a>00005 <span class="comment"> </span>
<a name="l00006"></a>00006 <span class="comment"> purpose: Defines the interface for the WindowManager object</span>
<a name="l00007"></a>00007 <span class="comment">*************************************************************************/</span>
<a name="l00008"></a>00008 <span class="comment">/***************************************************************************</span>
<a name="l00009"></a>00009 <span class="comment"> * Copyright (C) 2004 - 2006 Paul D Turner & The CEGUI Development Team</span>
<a name="l00010"></a>00010 <span class="comment"> *</span>
<a name="l00011"></a>00011 <span class="comment"> * Permission is hereby granted, free of charge, to any person obtaining</span>
<a name="l00012"></a>00012 <span class="comment"> * a copy of this software and associated documentation files (the</span>
<a name="l00013"></a>00013 <span class="comment"> * "Software"), to deal in the Software without restriction, including</span>
<a name="l00014"></a>00014 <span class="comment"> * without limitation the rights to use, copy, modify, merge, publish,</span>
<a name="l00015"></a>00015 <span class="comment"> * distribute, sublicense, and/or sell copies of the Software, and to</span>
<a name="l00016"></a>00016 <span class="comment"> * permit persons to whom the Software is furnished to do so, subject to</span>
<a name="l00017"></a>00017 <span class="comment"> * the following conditions:</span>
<a name="l00018"></a>00018 <span class="comment"> *</span>
<a name="l00019"></a>00019 <span class="comment"> * The above copyright notice and this permission notice shall be</span>
<a name="l00020"></a>00020 <span class="comment"> * included in all copies or substantial portions of the Software.</span>
<a name="l00021"></a>00021 <span class="comment"> *</span>
<a name="l00022"></a>00022 <span class="comment"> * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,</span>
<a name="l00023"></a>00023 <span class="comment"> * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF</span>
<a name="l00024"></a>00024 <span class="comment"> * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.</span>
<a name="l00025"></a>00025 <span class="comment"> * IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR</span>
<a name="l00026"></a>00026 <span class="comment"> * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,</span>
<a name="l00027"></a>00027 <span class="comment"> * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR</span>
<a name="l00028"></a>00028 <span class="comment"> * OTHER DEALINGS IN THE SOFTWARE.</span>
<a name="l00029"></a>00029 <span class="comment"> ***************************************************************************/</span>
<a name="l00030"></a>00030 <span class="preprocessor">#ifndef _CEGUIWindowManager_h_</span>
<a name="l00031"></a>00031 <span class="preprocessor"></span><span class="preprocessor">#define _CEGUIWindowManager_h_</span>
<a name="l00032"></a>00032 <span class="preprocessor"></span>
<a name="l00033"></a>00033 <span class="preprocessor">#include "CEGUIBase.h"</span>
<a name="l00034"></a>00034 <span class="preprocessor">#include "CEGUIString.h"</span>
<a name="l00035"></a>00035 <span class="preprocessor">#include "CEGUISingleton.h"</span>
<a name="l00036"></a>00036 <span class="preprocessor">#include "CEGUILogger.h"</span>
<a name="l00037"></a>00037 <span class="preprocessor">#include "CEGUIIteratorBase.h"</span>
<a name="l00038"></a>00038 <span class="preprocessor">#include "CEGUIEventSet.h"</span>
<a name="l00039"></a>00039 <span class="preprocessor">#include <map></span>
<a name="l00040"></a>00040 <span class="preprocessor">#include <vector></span>
<a name="l00041"></a>00041
<a name="l00042"></a>00042 <span class="preprocessor">#if defined(_MSC_VER)</span>
<a name="l00043"></a>00043 <span class="preprocessor"></span><span class="preprocessor"># pragma warning(push)</span>
<a name="l00044"></a>00044 <span class="preprocessor"></span><span class="preprocessor"># pragma warning(disable : 4275)</span>
<a name="l00045"></a>00045 <span class="preprocessor"></span><span class="preprocessor"># pragma warning(disable : 4251)</span>
<a name="l00046"></a>00046 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
<a name="l00047"></a>00047 <span class="preprocessor"></span>
<a name="l00048"></a>00048
<a name="l00049"></a>00049 <span class="comment">// Start of CEGUI namespace section</span>
<a name="l00050"></a>00050 <span class="keyword">namespace </span>CEGUI
<a name="l00051"></a>00051 {
<a name="l00061"></a><a class="code" href="classCEGUI_1_1WindowManager.html">00061</a> <span class="keyword">class </span>CEGUIEXPORT <a class="code" href="classCEGUI_1_1WindowManager.html" title="The WindowManager class describes an object that manages creation and lifetime of Window objects...">WindowManager</a> : <span class="keyword">public</span> <a class="code" href="classCEGUI_1_1Singleton.html">Singleton</a> <WindowManager>,
<a name="l00062"></a>00062 <span class="keyword">public</span> <a class="code" href="classCEGUI_1_1EventSet.html" title="Class that collects together a set of Event objects.">EventSet</a>
<a name="l00063"></a>00063 {
<a name="l00064"></a>00064 <span class="keyword">public</span>:
<a name="l00065"></a>00065 <span class="comment">/*************************************************************************</span>
<a name="l00066"></a>00066 <span class="comment"> Public static data</span>
<a name="l00067"></a>00067 <span class="comment"> *************************************************************************/</span>
<a name="l00068"></a><a class="code" href="classCEGUI_1_1WindowManager.html#a7d5f28901cc384dc63235ba9edf234c9">00068</a> <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <a class="code" href="classCEGUI_1_1WindowManager.html#a7d5f28901cc384dc63235ba9edf234c9">GeneratedWindowNameBase</a>;
<a name="l00069"></a>00069
<a name="l00070"></a><a class="code" href="classCEGUI_1_1WindowManager.html#a58e4acbfe5da469b05c04c488c95f420">00070</a> <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <a class="code" href="classCEGUI_1_1WindowManager.html#a58e4acbfe5da469b05c04c488c95f420" title="Namespace for global events.">EventNamespace</a>;
<a name="l00075"></a><a class="code" href="classCEGUI_1_1WindowManager.html#ab61b2ff253cb00e288c19a7142905190">00075</a> <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <a class="code" href="classCEGUI_1_1WindowManager.html#ab61b2ff253cb00e288c19a7142905190">EventWindowCreated</a>;
<a name="l00080"></a><a class="code" href="classCEGUI_1_1WindowManager.html#a6efb8e75cf0fd3d40a1e16f969167cc6">00080</a> <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <a class="code" href="classCEGUI_1_1WindowManager.html#a6efb8e75cf0fd3d40a1e16f969167cc6">EventWindowDestroyed</a>;
<a name="l00081"></a>00081
<a name="l00103"></a><a class="code" href="classCEGUI_1_1WindowManager.html#a56843dd35f982777f97ae72975b6b3c0">00103</a> <span class="keyword">typedef</span> <span class="keywordtype">bool</span> <a class="code" href="classCEGUI_1_1WindowManager.html#a56843dd35f982777f97ae72975b6b3c0" title="Function type that is used as a callback when loading layouts from XML; the function is called for ea...">PropertyCallback</a>(<a class="code" href="classCEGUI_1_1Window.html" title="An abstract base class providing common functionality and specifying the required interface for deriv...">Window</a>* window, <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a>& propname, <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a>& propvalue, <span class="keywordtype">void</span>* userdata);
<a name="l00104"></a>00104
<a name="l00105"></a>00105 <span class="comment">/*************************************************************************</span>
<a name="l00106"></a>00106 <span class="comment"> Construction and Destruction</span>
<a name="l00107"></a>00107 <span class="comment"> *************************************************************************/</span>
<a name="l00116"></a>00116 <a class="code" href="classCEGUI_1_1WindowManager.html" title="The WindowManager class describes an object that manages creation and lifetime of Window objects...">WindowManager</a>(<span class="keywordtype">void</span>);
<a name="l00117"></a>00117
<a name="l00118"></a>00118
<a name="l00126"></a>00126 ~<a class="code" href="classCEGUI_1_1WindowManager.html" title="The WindowManager class describes an object that manages creation and lifetime of Window objects...">WindowManager</a>(<span class="keywordtype">void</span>);
<a name="l00127"></a>00127
<a name="l00128"></a>00128
<a name="l00129"></a>00129 <span class="comment">/*************************************************************************</span>
<a name="l00130"></a>00130 <span class="comment"> Window Related Methods</span>
<a name="l00131"></a>00131 <span class="comment"> *************************************************************************/</span>
<a name="l00152"></a>00152 <a class="code" href="classCEGUI_1_1Window.html" title="An abstract base class providing common functionality and specifying the required interface for deriv...">Window</a>* createWindow(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a>& type, <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a>& name = <span class="stringliteral">""</span>);
<a name="l00153"></a>00153
<a name="l00154"></a>00154
<a name="l00167"></a>00167 <span class="keywordtype">void</span> destroyWindow(<a class="code" href="classCEGUI_1_1Window.html" title="An abstract base class providing common functionality and specifying the required interface for deriv...">Window</a>* window);
<a name="l00168"></a>00168
<a name="l00169"></a>00169
<a name="l00182"></a>00182 <span class="keywordtype">void</span> destroyWindow(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a>& window);
<a name="l00183"></a>00183
<a name="l00184"></a>00184
<a name="l00197"></a>00197 <a class="code" href="classCEGUI_1_1Window.html" title="An abstract base class providing common functionality and specifying the required interface for deriv...">Window</a>* getWindow(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a>& name) <span class="keyword">const</span>;
<a name="l00198"></a>00198
<a name="l00199"></a>00199
<a name="l00210"></a>00210 <span class="keywordtype">bool</span> isWindowPresent(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a>& name) <span class="keyword">const</span>;
<a name="l00211"></a>00211
<a name="l00212"></a>00212
<a name="l00222"></a>00222 <span class="keywordtype">void</span> destroyAllWindows(<span class="keywordtype">void</span>);
<a name="l00223"></a>00223
<a name="l00224"></a>00224
<a name="l00255"></a>00255 <a class="code" href="classCEGUI_1_1Window.html" title="An abstract base class providing common functionality and specifying the required interface for deriv...">Window</a>* loadWindowLayout(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a>& filename, <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a>& name_prefix = <span class="stringliteral">""</span>, <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a>& resourceGroup = <span class="stringliteral">""</span>, PropertyCallback* callback = 0, <span class="keywordtype">void</span>* userdata = 0);
<a name="l00256"></a>00256
<a name="l00265"></a>00265 <span class="keywordtype">bool</span> isDeadPoolEmpty(<span class="keywordtype">void</span>) <span class="keyword">const</span>;
<a name="l00266"></a>00266
<a name="l00278"></a>00278 <span class="keywordtype">void</span> cleanDeadPool(<span class="keywordtype">void</span>);
<a name="l00279"></a>00279
<a name="l00297"></a>00297 <span class="keywordtype">void</span> writeWindowLayoutToStream(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1Window.html" title="An abstract base class providing common functionality and specifying the required interface for deriv...">Window</a>& window, <a class="code" href="namespaceCEGUI.html#ac2f7aaf6a0965b83cb35e0b1298c70b9" title="Output stream class.">OutStream</a>& out_stream, <span class="keywordtype">bool</span> writeParent = <span class="keyword">false</span>) <span class="keyword">const</span>;
<a name="l00298"></a>00298
<a name="l00316"></a>00316 <span class="keywordtype">void</span> writeWindowLayoutToStream(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a>& window, <a class="code" href="namespaceCEGUI.html#ac2f7aaf6a0965b83cb35e0b1298c70b9" title="Output stream class.">OutStream</a>& out_stream, <span class="keywordtype">bool</span> writeParent = <span class="keyword">false</span>) <span class="keyword">const</span>;
<a name="l00317"></a>00317
<a name="l00337"></a>00337 <span class="keywordtype">void</span> saveWindowLayout(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a>& window, <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a>& filename, <span class="keyword">const</span> <span class="keywordtype">bool</span> writeParent = <span class="keyword">false</span>) <span class="keyword">const</span>;
<a name="l00338"></a>00338
<a name="l00357"></a>00357 <span class="keywordtype">void</span> saveWindowLayout(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1Window.html" title="An abstract base class providing common functionality and specifying the required interface for deriv...">Window</a>& window, <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a>& filename, <span class="keyword">const</span> <span class="keywordtype">bool</span> writeParent = <span class="keyword">false</span>) <span class="keyword">const</span>;
<a name="l00358"></a>00358
<a name="l00375"></a>00375 <span class="keywordtype">void</span> renameWindow(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a>& window, <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a>& new_name);
<a name="l00376"></a>00376
<a name="l00390"></a>00390 <span class="keywordtype">void</span> renameWindow(<a class="code" href="classCEGUI_1_1Window.html" title="An abstract base class providing common functionality and specifying the required interface for deriv...">Window</a>* window, <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a>& new_name);
<a name="l00391"></a>00391
<a name="l00400"></a><a class="code" href="classCEGUI_1_1WindowManager.html#a8bae00ccb0f01d31a7976c9d03fc047b">00400</a> <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a>& getDefaultResourceGroup()
<a name="l00401"></a>00401 { <span class="keywordflow">return</span> d_defaultResourceGroup; }
<a name="l00402"></a>00402
<a name="l00413"></a><a class="code" href="classCEGUI_1_1WindowManager.html#af5acad18ec7a601e2d40db253a0111d9">00413</a> <span class="keyword">static</span> <span class="keywordtype">void</span> setDefaultResourceGroup(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a>& resourceGroup)
<a name="l00414"></a>00414 { d_defaultResourceGroup = resourceGroup; }
<a name="l00415"></a>00415
<a name="l00429"></a>00429 <span class="keywordtype">void</span> lock();
<a name="l00430"></a>00430
<a name="l00444"></a>00444 <span class="keywordtype">void</span> unlock();
<a name="l00445"></a>00445
<a name="l00462"></a>00462 <span class="keywordtype">bool</span> isLocked() <span class="keyword">const</span>;
<a name="l00463"></a>00463
<a name="l00464"></a>00464 <span class="keyword">private</span>:
<a name="l00465"></a>00465 <span class="comment">/*************************************************************************</span>
<a name="l00466"></a>00466 <span class="comment"> Implementation Methods</span>
<a name="l00467"></a>00467 <span class="comment"> *************************************************************************/</span>
<a name="l00472"></a>00472 <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> generateUniqueWindowName();
<a name="l00473"></a>00473
<a name="l00475"></a>00475 <span class="keywordtype">void</span> initialiseRenderEffect(<a class="code" href="classCEGUI_1_1Window.html" title="An abstract base class providing common functionality and specifying the required interface for deriv...">Window</a>* wnd, <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a>& effect) <span class="keyword">const</span>;
<a name="l00476"></a>00476
<a name="l00477"></a>00477 <span class="comment">/*************************************************************************</span>
<a name="l00478"></a>00478 <span class="comment"> Implementation Constants</span>
<a name="l00479"></a>00479 <span class="comment"> *************************************************************************/</span>
<a name="l00480"></a>00480 <span class="keyword">static</span> <span class="keyword">const</span> <span class="keywordtype">char</span> GUILayoutSchemaName[];
<a name="l00481"></a>00481
<a name="l00482"></a>00482
<a name="l00483"></a>00483 <span class="comment">/*************************************************************************</span>
<a name="l00484"></a>00484 <span class="comment"> Implementation Data</span>
<a name="l00485"></a>00485 <span class="comment"> *************************************************************************/</span>
<a name="l00486"></a>00486 <span class="keyword">typedef</span> std::map<String, Window*, String::FastLessCompare> WindowRegistry;
<a name="l00487"></a>00487 <span class="keyword">typedef</span> std::vector<Window*> WindowVector;
<a name="l00488"></a>00488
<a name="l00489"></a>00489 WindowRegistry d_windowRegistry;
<a name="l00490"></a>00490 WindowVector d_deathrow;
<a name="l00491"></a>00491
<a name="l00492"></a>00492 <span class="keywordtype">unsigned</span> <span class="keywordtype">long</span> d_uid_counter;
<a name="l00493"></a>00493 <span class="keyword">static</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> d_defaultResourceGroup;
<a name="l00494"></a>00494
<a name="l00495"></a>00495 uint d_lockCount;
<a name="l00496"></a>00496
<a name="l00497"></a>00497 <span class="keyword">public</span>:
<a name="l00498"></a>00498 <span class="comment">/*************************************************************************</span>
<a name="l00499"></a>00499 <span class="comment"> Iterator stuff</span>
<a name="l00500"></a>00500 <span class="comment"> *************************************************************************/</span>
<a name="l00501"></a>00501 <span class="keyword">typedef</span> <a class="code" href="classCEGUI_1_1ConstBaseIterator.html" title="Base class constant iterator used to offer iteration over various collections within the system...">ConstBaseIterator<WindowRegistry></a> WindowIterator;
<a name="l00502"></a>00502
<a name="l00507"></a>00507 WindowIterator getIterator(<span class="keywordtype">void</span>) <span class="keyword">const</span>;
<a name="l00508"></a>00508
<a name="l00519"></a>00519 <span class="keywordtype">void</span> DEBUG_dumpWindowNames(<a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> zone);
<a name="l00520"></a>00520 };
<a name="l00521"></a>00521
<a name="l00522"></a>00522 } <span class="comment">// End of CEGUI namespace section</span>
<a name="l00523"></a>00523
<a name="l00524"></a>00524 <span class="preprocessor">#if defined(_MSC_VER)</span>
<a name="l00525"></a>00525 <span class="preprocessor"></span><span class="preprocessor"># pragma warning(pop)</span>
<a name="l00526"></a>00526 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
<a name="l00527"></a>00527 <span class="preprocessor"></span>
<a name="l00528"></a>00528 <span class="preprocessor">#endif // end of guard _CEGUIWindowManager_h_</span>
</pre></div></div>
</div>
<hr class="footer"/><address class="footer"><small>Generated on Sun Jan 22 2012 16:07:40 for Crazy Eddies GUI System by 
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.4 </small></address>
</body>
</html>
|