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 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408
|
<!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: CEGUI::Property Class Reference</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 class="current"><a href="annotated.html"><span>Classes</span></a></li>
<li><a href="files.html"><span>Files</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class List</span></a></li>
<li><a href="classes.html"><span>Class Index</span></a></li>
<li><a href="inherits.html"><span>Class Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class Members</span></a></li>
</ul>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><a class="el" href="namespaceCEGUI.html">CEGUI</a> </li>
<li class="navelem"><a class="el" href="classCEGUI_1_1Property.html">Property</a> </li>
</ul>
</div>
</div>
<div class="header">
<div class="summary">
<a href="#pub-methods">Public Member Functions</a> |
<a href="#pro-attribs">Protected Attributes</a> </div>
<div class="headertitle">
<div class="title">CEGUI::Property Class Reference</div> </div>
</div>
<div class="contents">
<!-- doxytag: class="CEGUI::Property" -->
<p>An abstract class that defines the interface to access object properties by name.
<a href="classCEGUI_1_1Property.html#details">More...</a></p>
<p>Inherited by <a class="el" href="classCEGUI_1_1CheckboxProperties_1_1Selected.html">CEGUI::CheckboxProperties::Selected</a>, <a class="el" href="classCEGUI_1_1ComboboxProperties_1_1CaratIndex.html">CEGUI::ComboboxProperties::CaratIndex</a>, <a class="el" href="classCEGUI_1_1ComboboxProperties_1_1EditSelectionLength.html">CEGUI::ComboboxProperties::EditSelectionLength</a>, <a class="el" href="classCEGUI_1_1ComboboxProperties_1_1EditSelectionStart.html">CEGUI::ComboboxProperties::EditSelectionStart</a>, <a class="el" href="classCEGUI_1_1ComboboxProperties_1_1ForceHorzScrollbar.html">CEGUI::ComboboxProperties::ForceHorzScrollbar</a>, <a class="el" href="classCEGUI_1_1ComboboxProperties_1_1ForceVertScrollbar.html">CEGUI::ComboboxProperties::ForceVertScrollbar</a>, <a class="el" href="classCEGUI_1_1ComboboxProperties_1_1MaxEditTextLength.html">CEGUI::ComboboxProperties::MaxEditTextLength</a>, <a class="el" href="classCEGUI_1_1ComboboxProperties_1_1ReadOnly.html">CEGUI::ComboboxProperties::ReadOnly</a>, <a class="el" href="classCEGUI_1_1ComboboxProperties_1_1SingleClickMode.html">CEGUI::ComboboxProperties::SingleClickMode</a>, <a class="el" href="classCEGUI_1_1ComboboxProperties_1_1SortList.html">CEGUI::ComboboxProperties::SortList</a>, <a class="el" href="classCEGUI_1_1ComboboxProperties_1_1ValidationString.html">CEGUI::ComboboxProperties::ValidationString</a>, <a class="el" href="classCEGUI_1_1DragContainerProperties_1_1DragAlpha.html">CEGUI::DragContainerProperties::DragAlpha</a>, <a class="el" href="classCEGUI_1_1DragContainerProperties_1_1DragCursorImage.html">CEGUI::DragContainerProperties::DragCursorImage</a>, <a class="el" href="classCEGUI_1_1DragContainerProperties_1_1DraggingEnabled.html">CEGUI::DragContainerProperties::DraggingEnabled</a>, <a class="el" href="classCEGUI_1_1DragContainerProperties_1_1DragThreshold.html">CEGUI::DragContainerProperties::DragThreshold</a>, <a class="el" href="classCEGUI_1_1DragContainerProperties_1_1FixedDragOffset.html">CEGUI::DragContainerProperties::FixedDragOffset</a>, <a class="el" href="classCEGUI_1_1DragContainerProperties_1_1StickyMode.html">CEGUI::DragContainerProperties::StickyMode</a>, <a class="el" href="classCEGUI_1_1DragContainerProperties_1_1UseFixedDragOffset.html">CEGUI::DragContainerProperties::UseFixedDragOffset</a>, <a class="el" href="classCEGUI_1_1EditboxProperties_1_1ActiveSelectionColour.html">CEGUI::EditboxProperties::ActiveSelectionColour</a>, <a class="el" href="classCEGUI_1_1EditboxProperties_1_1CaratIndex.html">CEGUI::EditboxProperties::CaratIndex</a>, <a class="el" href="classCEGUI_1_1EditboxProperties_1_1InactiveSelectionColour.html">CEGUI::EditboxProperties::InactiveSelectionColour</a>, <a class="el" href="classCEGUI_1_1EditboxProperties_1_1MaskCodepoint.html">CEGUI::EditboxProperties::MaskCodepoint</a>, <a class="el" href="classCEGUI_1_1EditboxProperties_1_1MaskText.html">CEGUI::EditboxProperties::MaskText</a>, <a class="el" href="classCEGUI_1_1EditboxProperties_1_1MaxTextLength.html">CEGUI::EditboxProperties::MaxTextLength</a>, <a class="el" href="classCEGUI_1_1EditboxProperties_1_1NormalTextColour.html">CEGUI::EditboxProperties::NormalTextColour</a>, <a class="el" href="classCEGUI_1_1EditboxProperties_1_1ReadOnly.html">CEGUI::EditboxProperties::ReadOnly</a>, <a class="el" href="classCEGUI_1_1EditboxProperties_1_1SelectedTextColour.html">CEGUI::EditboxProperties::SelectedTextColour</a>, <a class="el" href="classCEGUI_1_1EditboxProperties_1_1SelectionLength.html">CEGUI::EditboxProperties::SelectionLength</a>, <a class="el" href="classCEGUI_1_1EditboxProperties_1_1SelectionStart.html">CEGUI::EditboxProperties::SelectionStart</a>, <a class="el" href="classCEGUI_1_1EditboxProperties_1_1ValidationString.html">CEGUI::EditboxProperties::ValidationString</a>, <a class="el" href="classCEGUI_1_1FalagardEditboxProperties_1_1BlinkCaret.html">CEGUI::FalagardEditboxProperties::BlinkCaret</a>, <a class="el" href="classCEGUI_1_1FalagardEditboxProperties_1_1BlinkCaretTimeout.html">CEGUI::FalagardEditboxProperties::BlinkCaretTimeout</a>, <a class="el" href="classCEGUI_1_1FalagardEditboxProperties_1_1TextFormatting.html">CEGUI::FalagardEditboxProperties::TextFormatting</a>, <a class="el" href="classCEGUI_1_1FalagardListHeaderProperties_1_1SegmentWidgetType.html">CEGUI::FalagardListHeaderProperties::SegmentWidgetType</a>, <a class="el" href="classCEGUI_1_1FalagardMultiLineEditboxProperties_1_1BlinkCaret.html">CEGUI::FalagardMultiLineEditboxProperties::BlinkCaret</a>, <a class="el" href="classCEGUI_1_1FalagardMultiLineEditboxProperties_1_1BlinkCaretTimeout.html">CEGUI::FalagardMultiLineEditboxProperties::BlinkCaretTimeout</a>, <a class="el" href="classCEGUI_1_1FalagardProgressBarProperties_1_1ReversedProgress.html">CEGUI::FalagardProgressBarProperties::ReversedProgress</a>, <a class="el" href="classCEGUI_1_1FalagardProgressBarProperties_1_1VerticalProgress.html">CEGUI::FalagardProgressBarProperties::VerticalProgress</a>, <a class="el" href="classCEGUI_1_1FalagardScrollbarProperties_1_1VerticalScrollbar.html">CEGUI::FalagardScrollbarProperties::VerticalScrollbar</a>, <a class="el" href="classCEGUI_1_1FalagardSliderProperties_1_1ReversedDirection.html">CEGUI::FalagardSliderProperties::ReversedDirection</a>, <a class="el" href="classCEGUI_1_1FalagardSliderProperties_1_1VerticalSlider.html">CEGUI::FalagardSliderProperties::VerticalSlider</a>, <a class="el" href="classCEGUI_1_1FalagardStaticImageProperties_1_1Image.html">CEGUI::FalagardStaticImageProperties::Image</a>, <a class="el" href="classCEGUI_1_1FalagardStaticProperties_1_1BackgroundEnabled.html">CEGUI::FalagardStaticProperties::BackgroundEnabled</a>, <a class="el" href="classCEGUI_1_1FalagardStaticProperties_1_1FrameEnabled.html">CEGUI::FalagardStaticProperties::FrameEnabled</a>, <a class="el" href="classCEGUI_1_1FalagardStaticTextProperties_1_1HorzExtent.html">CEGUI::FalagardStaticTextProperties::HorzExtent</a>, <a class="el" href="classCEGUI_1_1FalagardStaticTextProperties_1_1HorzFormatting.html">CEGUI::FalagardStaticTextProperties::HorzFormatting</a>, <a class="el" href="classCEGUI_1_1FalagardStaticTextProperties_1_1HorzScrollbar.html">CEGUI::FalagardStaticTextProperties::HorzScrollbar</a>, <a class="el" href="classCEGUI_1_1FalagardStaticTextProperties_1_1TextColours.html">CEGUI::FalagardStaticTextProperties::TextColours</a>, <a class="el" href="classCEGUI_1_1FalagardStaticTextProperties_1_1VertExtent.html">CEGUI::FalagardStaticTextProperties::VertExtent</a>, <a class="el" href="classCEGUI_1_1FalagardStaticTextProperties_1_1VertFormatting.html">CEGUI::FalagardStaticTextProperties::VertFormatting</a>, <a class="el" href="classCEGUI_1_1FalagardStaticTextProperties_1_1VertScrollbar.html">CEGUI::FalagardStaticTextProperties::VertScrollbar</a>, <a class="el" href="classCEGUI_1_1FalagardTabControlProperties_1_1TabButtonType.html">CEGUI::FalagardTabControlProperties::TabButtonType</a>, <a class="el" href="classCEGUI_1_1FrameWindowProperties_1_1CloseButtonEnabled.html">CEGUI::FrameWindowProperties::CloseButtonEnabled</a>, <a class="el" href="classCEGUI_1_1FrameWindowProperties_1_1DragMovingEnabled.html">CEGUI::FrameWindowProperties::DragMovingEnabled</a>, <a class="el" href="classCEGUI_1_1FrameWindowProperties_1_1EWSizingCursorImage.html">CEGUI::FrameWindowProperties::EWSizingCursorImage</a>, <a class="el" href="classCEGUI_1_1FrameWindowProperties_1_1FrameEnabled.html">CEGUI::FrameWindowProperties::FrameEnabled</a>, <a class="el" href="classCEGUI_1_1FrameWindowProperties_1_1NESWSizingCursorImage.html">CEGUI::FrameWindowProperties::NESWSizingCursorImage</a>, <a class="el" href="classCEGUI_1_1FrameWindowProperties_1_1NSSizingCursorImage.html">CEGUI::FrameWindowProperties::NSSizingCursorImage</a>, <a class="el" href="classCEGUI_1_1FrameWindowProperties_1_1NWSESizingCursorImage.html">CEGUI::FrameWindowProperties::NWSESizingCursorImage</a>, <a class="el" href="classCEGUI_1_1FrameWindowProperties_1_1RollUpEnabled.html">CEGUI::FrameWindowProperties::RollUpEnabled</a>, <a class="el" href="classCEGUI_1_1FrameWindowProperties_1_1RollUpState.html">CEGUI::FrameWindowProperties::RollUpState</a>, <a class="el" href="classCEGUI_1_1FrameWindowProperties_1_1SizingBorderThickness.html">CEGUI::FrameWindowProperties::SizingBorderThickness</a>, <a class="el" href="classCEGUI_1_1FrameWindowProperties_1_1SizingEnabled.html">CEGUI::FrameWindowProperties::SizingEnabled</a>, <a class="el" href="classCEGUI_1_1FrameWindowProperties_1_1TitlebarEnabled.html">CEGUI::FrameWindowProperties::TitlebarEnabled</a>, <a class="el" href="classCEGUI_1_1GridLayoutContainerProperties_1_1AutoPositioning.html">CEGUI::GridLayoutContainerProperties::AutoPositioning</a>, <a class="el" href="classCEGUI_1_1GridLayoutContainerProperties_1_1GridSize.html">CEGUI::GridLayoutContainerProperties::GridSize</a>, <a class="el" href="classCEGUI_1_1ItemEntryProperties_1_1Selectable.html">CEGUI::ItemEntryProperties::Selectable</a>, <a class="el" href="classCEGUI_1_1ItemEntryProperties_1_1Selected.html">CEGUI::ItemEntryProperties::Selected</a>, <a class="el" href="classCEGUI_1_1ItemListBaseProperties_1_1AutoResizeEnabled.html">CEGUI::ItemListBaseProperties::AutoResizeEnabled</a>, <a class="el" href="classCEGUI_1_1ItemListBaseProperties_1_1SortEnabled.html">CEGUI::ItemListBaseProperties::SortEnabled</a>, <a class="el" href="classCEGUI_1_1ItemListBaseProperties_1_1SortMode.html">CEGUI::ItemListBaseProperties::SortMode</a>, <a class="el" href="classCEGUI_1_1ItemListboxProperties_1_1MultiSelect.html">CEGUI::ItemListboxProperties::MultiSelect</a>, <a class="el" href="classCEGUI_1_1ListboxProperties_1_1ForceHorzScrollbar.html">CEGUI::ListboxProperties::ForceHorzScrollbar</a>, <a class="el" href="classCEGUI_1_1ListboxProperties_1_1ForceVertScrollbar.html">CEGUI::ListboxProperties::ForceVertScrollbar</a>, <a class="el" href="classCEGUI_1_1ListboxProperties_1_1ItemTooltips.html">CEGUI::ListboxProperties::ItemTooltips</a>, <a class="el" href="classCEGUI_1_1ListboxProperties_1_1MultiSelect.html">CEGUI::ListboxProperties::MultiSelect</a>, <a class="el" href="classCEGUI_1_1ListboxProperties_1_1Sort.html">CEGUI::ListboxProperties::Sort</a>, <a class="el" href="classCEGUI_1_1ListHeaderProperties_1_1ColumnsMovable.html">CEGUI::ListHeaderProperties::ColumnsMovable</a>, <a class="el" href="classCEGUI_1_1ListHeaderProperties_1_1ColumnsSizable.html">CEGUI::ListHeaderProperties::ColumnsSizable</a>, <a class="el" href="classCEGUI_1_1ListHeaderProperties_1_1SortColumnID.html">CEGUI::ListHeaderProperties::SortColumnID</a>, <a class="el" href="classCEGUI_1_1ListHeaderProperties_1_1SortDirection.html">CEGUI::ListHeaderProperties::SortDirection</a>, <a class="el" href="classCEGUI_1_1ListHeaderProperties_1_1SortSettingEnabled.html">CEGUI::ListHeaderProperties::SortSettingEnabled</a>, <a class="el" href="classCEGUI_1_1ListHeaderSegmentProperties_1_1Clickable.html">CEGUI::ListHeaderSegmentProperties::Clickable</a>, <a class="el" href="classCEGUI_1_1ListHeaderSegmentProperties_1_1Dragable.html">CEGUI::ListHeaderSegmentProperties::Dragable</a>, <a class="el" href="classCEGUI_1_1ListHeaderSegmentProperties_1_1MovingCursorImage.html">CEGUI::ListHeaderSegmentProperties::MovingCursorImage</a>, <a class="el" href="classCEGUI_1_1ListHeaderSegmentProperties_1_1Sizable.html">CEGUI::ListHeaderSegmentProperties::Sizable</a>, <a class="el" href="classCEGUI_1_1ListHeaderSegmentProperties_1_1SizingCursorImage.html">CEGUI::ListHeaderSegmentProperties::SizingCursorImage</a>, <a class="el" href="classCEGUI_1_1ListHeaderSegmentProperties_1_1SortDirection.html">CEGUI::ListHeaderSegmentProperties::SortDirection</a>, <a class="el" href="classCEGUI_1_1MenuBaseProperties_1_1AllowMultiplePopups.html">CEGUI::MenuBaseProperties::AllowMultiplePopups</a>, <a class="el" href="classCEGUI_1_1MenuBaseProperties_1_1AutoCloseNestedPopups.html">CEGUI::MenuBaseProperties::AutoCloseNestedPopups</a>, <a class="el" href="classCEGUI_1_1MenuBaseProperties_1_1ItemSpacing.html">CEGUI::MenuBaseProperties::ItemSpacing</a>, <a class="el" href="classCEGUI_1_1MenuItemProperties_1_1AutoPopupTimeout.html">CEGUI::MenuItemProperties::AutoPopupTimeout</a>, <a class="el" href="classCEGUI_1_1MenuItemProperties_1_1PopupOffset.html">CEGUI::MenuItemProperties::PopupOffset</a>, <a class="el" href="classCEGUI_1_1MultiColumnListProperties_1_1ColumnHeader.html">CEGUI::MultiColumnListProperties::ColumnHeader</a>, <a class="el" href="classCEGUI_1_1MultiColumnListProperties_1_1ColumnsMovable.html">CEGUI::MultiColumnListProperties::ColumnsMovable</a>, <a class="el" href="classCEGUI_1_1MultiColumnListProperties_1_1ColumnsSizable.html">CEGUI::MultiColumnListProperties::ColumnsSizable</a>, <a class="el" href="classCEGUI_1_1MultiColumnListProperties_1_1ForceHorzScrollbar.html">CEGUI::MultiColumnListProperties::ForceHorzScrollbar</a>, <a class="el" href="classCEGUI_1_1MultiColumnListProperties_1_1ForceVertScrollbar.html">CEGUI::MultiColumnListProperties::ForceVertScrollbar</a>, <a class="el" href="classCEGUI_1_1MultiColumnListProperties_1_1NominatedSelectionColumnID.html">CEGUI::MultiColumnListProperties::NominatedSelectionColumnID</a>, <a class="el" href="classCEGUI_1_1MultiColumnListProperties_1_1NominatedSelectionRow.html">CEGUI::MultiColumnListProperties::NominatedSelectionRow</a>, <a class="el" href="classCEGUI_1_1MultiColumnListProperties_1_1RowCount.html">CEGUI::MultiColumnListProperties::RowCount</a>, <a class="el" href="classCEGUI_1_1MultiColumnListProperties_1_1SelectionMode.html">CEGUI::MultiColumnListProperties::SelectionMode</a>, <a class="el" href="classCEGUI_1_1MultiColumnListProperties_1_1SortColumnID.html">CEGUI::MultiColumnListProperties::SortColumnID</a>, <a class="el" href="classCEGUI_1_1MultiColumnListProperties_1_1SortDirection.html">CEGUI::MultiColumnListProperties::SortDirection</a>, <a class="el" href="classCEGUI_1_1MultiColumnListProperties_1_1SortSettingEnabled.html">CEGUI::MultiColumnListProperties::SortSettingEnabled</a>, <a class="el" href="classCEGUI_1_1MultiLineEditboxProperties_1_1CaratIndex.html">CEGUI::MultiLineEditboxProperties::CaratIndex</a>, <a class="el" href="classCEGUI_1_1MultiLineEditboxProperties_1_1ForceVertScrollbar.html">CEGUI::MultiLineEditboxProperties::ForceVertScrollbar</a>, <a class="el" href="classCEGUI_1_1MultiLineEditboxProperties_1_1MaxTextLength.html">CEGUI::MultiLineEditboxProperties::MaxTextLength</a>, <a class="el" href="classCEGUI_1_1MultiLineEditboxProperties_1_1ReadOnly.html">CEGUI::MultiLineEditboxProperties::ReadOnly</a>, <a class="el" href="classCEGUI_1_1MultiLineEditboxProperties_1_1SelectionBrushImage.html">CEGUI::MultiLineEditboxProperties::SelectionBrushImage</a>, <a class="el" href="classCEGUI_1_1MultiLineEditboxProperties_1_1SelectionLength.html">CEGUI::MultiLineEditboxProperties::SelectionLength</a>, <a class="el" href="classCEGUI_1_1MultiLineEditboxProperties_1_1SelectionStart.html">CEGUI::MultiLineEditboxProperties::SelectionStart</a>, <a class="el" href="classCEGUI_1_1MultiLineEditboxProperties_1_1WordWrap.html">CEGUI::MultiLineEditboxProperties::WordWrap</a>, <a class="el" href="classCEGUI_1_1PopupMenuProperties_1_1FadeInTime.html">CEGUI::PopupMenuProperties::FadeInTime</a>, <a class="el" href="classCEGUI_1_1PopupMenuProperties_1_1FadeOutTime.html">CEGUI::PopupMenuProperties::FadeOutTime</a>, <a class="el" href="classCEGUI_1_1ProgressBarProperties_1_1CurrentProgress.html">CEGUI::ProgressBarProperties::CurrentProgress</a>, <a class="el" href="classCEGUI_1_1ProgressBarProperties_1_1StepSize.html">CEGUI::ProgressBarProperties::StepSize</a>, <a class="el" href="classCEGUI_1_1PropertyDefinitionBase.html">CEGUI::PropertyDefinitionBase</a>, <a class="el" href="classCEGUI_1_1RadioButtonProperties_1_1GroupID.html">CEGUI::RadioButtonProperties::GroupID</a>, <a class="el" href="classCEGUI_1_1RadioButtonProperties_1_1Selected.html">CEGUI::RadioButtonProperties::Selected</a>, <a class="el" href="classCEGUI_1_1ScrollablePaneProperties_1_1ContentArea.html">CEGUI::ScrollablePaneProperties::ContentArea</a>, <a class="el" href="classCEGUI_1_1ScrollablePaneProperties_1_1ContentPaneAutoSized.html">CEGUI::ScrollablePaneProperties::ContentPaneAutoSized</a>, <a class="el" href="classCEGUI_1_1ScrollablePaneProperties_1_1ForceHorzScrollbar.html">CEGUI::ScrollablePaneProperties::ForceHorzScrollbar</a>, <a class="el" href="classCEGUI_1_1ScrollablePaneProperties_1_1ForceVertScrollbar.html">CEGUI::ScrollablePaneProperties::ForceVertScrollbar</a>, <a class="el" href="classCEGUI_1_1ScrollablePaneProperties_1_1HorzOverlapSize.html">CEGUI::ScrollablePaneProperties::HorzOverlapSize</a>, <a class="el" href="classCEGUI_1_1ScrollablePaneProperties_1_1HorzScrollPosition.html">CEGUI::ScrollablePaneProperties::HorzScrollPosition</a>, <a class="el" href="classCEGUI_1_1ScrollablePaneProperties_1_1HorzStepSize.html">CEGUI::ScrollablePaneProperties::HorzStepSize</a>, <a class="el" href="classCEGUI_1_1ScrollablePaneProperties_1_1VertOverlapSize.html">CEGUI::ScrollablePaneProperties::VertOverlapSize</a>, <a class="el" href="classCEGUI_1_1ScrollablePaneProperties_1_1VertScrollPosition.html">CEGUI::ScrollablePaneProperties::VertScrollPosition</a>, <a class="el" href="classCEGUI_1_1ScrollablePaneProperties_1_1VertStepSize.html">CEGUI::ScrollablePaneProperties::VertStepSize</a>, <a class="el" href="classCEGUI_1_1ScrollbarProperties_1_1DocumentSize.html">CEGUI::ScrollbarProperties::DocumentSize</a>, <a class="el" href="classCEGUI_1_1ScrollbarProperties_1_1EndLockEnabled.html">CEGUI::ScrollbarProperties::EndLockEnabled</a>, <a class="el" href="classCEGUI_1_1ScrollbarProperties_1_1OverlapSize.html">CEGUI::ScrollbarProperties::OverlapSize</a>, <a class="el" href="classCEGUI_1_1ScrollbarProperties_1_1PageSize.html">CEGUI::ScrollbarProperties::PageSize</a>, <a class="el" href="classCEGUI_1_1ScrollbarProperties_1_1ScrollPosition.html">CEGUI::ScrollbarProperties::ScrollPosition</a>, <a class="el" href="classCEGUI_1_1ScrollbarProperties_1_1StepSize.html">CEGUI::ScrollbarProperties::StepSize</a>, <a class="el" href="classCEGUI_1_1ScrolledContainerProperties_1_1ChildExtentsArea.html">CEGUI::ScrolledContainerProperties::ChildExtentsArea</a>, <a class="el" href="classCEGUI_1_1ScrolledContainerProperties_1_1ContentArea.html">CEGUI::ScrolledContainerProperties::ContentArea</a>, <a class="el" href="classCEGUI_1_1ScrolledContainerProperties_1_1ContentPaneAutoSized.html">CEGUI::ScrolledContainerProperties::ContentPaneAutoSized</a>, <a class="el" href="classCEGUI_1_1ScrolledItemListBaseProperties_1_1ForceHorzScrollbar.html">CEGUI::ScrolledItemListBaseProperties::ForceHorzScrollbar</a>, <a class="el" href="classCEGUI_1_1ScrolledItemListBaseProperties_1_1ForceVertScrollbar.html">CEGUI::ScrolledItemListBaseProperties::ForceVertScrollbar</a>, <a class="el" href="classCEGUI_1_1SliderProperties_1_1ClickStepSize.html">CEGUI::SliderProperties::ClickStepSize</a>, <a class="el" href="classCEGUI_1_1SliderProperties_1_1CurrentValue.html">CEGUI::SliderProperties::CurrentValue</a>, <a class="el" href="classCEGUI_1_1SliderProperties_1_1MaximumValue.html">CEGUI::SliderProperties::MaximumValue</a>, <a class="el" href="classCEGUI_1_1SpinnerProperties_1_1CurrentValue.html">CEGUI::SpinnerProperties::CurrentValue</a>, <a class="el" href="classCEGUI_1_1SpinnerProperties_1_1MaximumValue.html">CEGUI::SpinnerProperties::MaximumValue</a>, <a class="el" href="classCEGUI_1_1SpinnerProperties_1_1MinimumValue.html">CEGUI::SpinnerProperties::MinimumValue</a>, <a class="el" href="classCEGUI_1_1SpinnerProperties_1_1StepSize.html">CEGUI::SpinnerProperties::StepSize</a>, <a class="el" href="classCEGUI_1_1SpinnerProperties_1_1TextInputMode.html">CEGUI::SpinnerProperties::TextInputMode</a>, <a class="el" href="classCEGUI_1_1TabControlProperties_1_1TabHeight.html">CEGUI::TabControlProperties::TabHeight</a>, <a class="el" href="classCEGUI_1_1TabControlProperties_1_1TabPanePosition.html">CEGUI::TabControlProperties::TabPanePosition</a>, <a class="el" href="classCEGUI_1_1TabControlProperties_1_1TabTextPadding.html">CEGUI::TabControlProperties::TabTextPadding</a>, <a class="el" href="classCEGUI_1_1ThumbProperties_1_1HorzFree.html">CEGUI::ThumbProperties::HorzFree</a>, <a class="el" href="classCEGUI_1_1ThumbProperties_1_1HorzRange.html">CEGUI::ThumbProperties::HorzRange</a>, <a class="el" href="classCEGUI_1_1ThumbProperties_1_1HotTracked.html">CEGUI::ThumbProperties::HotTracked</a>, <a class="el" href="classCEGUI_1_1ThumbProperties_1_1VertFree.html">CEGUI::ThumbProperties::VertFree</a>, <a class="el" href="classCEGUI_1_1ThumbProperties_1_1VertRange.html">CEGUI::ThumbProperties::VertRange</a>, <a class="el" href="classCEGUI_1_1TitlebarProperties_1_1DraggingEnabled.html">CEGUI::TitlebarProperties::DraggingEnabled</a>, <a class="el" href="classCEGUI_1_1TooltipProperties_1_1DisplayTime.html">CEGUI::TooltipProperties::DisplayTime</a>, <a class="el" href="classCEGUI_1_1TooltipProperties_1_1FadeTime.html">CEGUI::TooltipProperties::FadeTime</a>, <a class="el" href="classCEGUI_1_1TooltipProperties_1_1HoverTime.html">CEGUI::TooltipProperties::HoverTime</a>, <a class="el" href="classCEGUI_1_1TreeProperties_1_1ForceHorzScrollbar.html">CEGUI::TreeProperties::ForceHorzScrollbar</a>, <a class="el" href="classCEGUI_1_1TreeProperties_1_1ForceVertScrollbar.html">CEGUI::TreeProperties::ForceVertScrollbar</a>, <a class="el" href="classCEGUI_1_1TreeProperties_1_1ItemTooltips.html">CEGUI::TreeProperties::ItemTooltips</a>, <a class="el" href="classCEGUI_1_1TreeProperties_1_1MultiSelect.html">CEGUI::TreeProperties::MultiSelect</a>, <a class="el" href="classCEGUI_1_1TreeProperties_1_1Sort.html">CEGUI::TreeProperties::Sort</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1Alpha.html">CEGUI::WindowProperties::Alpha</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1AlwaysOnTop.html">CEGUI::WindowProperties::AlwaysOnTop</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1AutoRenderingSurface.html">CEGUI::WindowProperties::AutoRenderingSurface</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1AutoRepeatDelay.html">CEGUI::WindowProperties::AutoRepeatDelay</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1AutoRepeatRate.html">CEGUI::WindowProperties::AutoRepeatRate</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1ClippedByParent.html">CEGUI::WindowProperties::ClippedByParent</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1CustomTooltipType.html">CEGUI::WindowProperties::CustomTooltipType</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1DestroyedByParent.html">CEGUI::WindowProperties::DestroyedByParent</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1Disabled.html">CEGUI::WindowProperties::Disabled</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1DistributeCapturedInputs.html">CEGUI::WindowProperties::DistributeCapturedInputs</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1DragDropTarget.html">CEGUI::WindowProperties::DragDropTarget</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1Font.html">CEGUI::WindowProperties::Font</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1HorizontalAlignment.html">CEGUI::WindowProperties::HorizontalAlignment</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1ID.html">CEGUI::WindowProperties::ID</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1InheritsAlpha.html">CEGUI::WindowProperties::InheritsAlpha</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1InheritsTooltipText.html">CEGUI::WindowProperties::InheritsTooltipText</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1LookNFeel.html">CEGUI::WindowProperties::LookNFeel</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1Margin.html">CEGUI::WindowProperties::Margin</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1MouseButtonDownAutoRepeat.html">CEGUI::WindowProperties::MouseButtonDownAutoRepeat</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1MouseCursorImage.html">CEGUI::WindowProperties::MouseCursorImage</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1MouseInputPropagationEnabled.html">CEGUI::WindowProperties::MouseInputPropagationEnabled</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1MousePassThroughEnabled.html">CEGUI::WindowProperties::MousePassThroughEnabled</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1NonClient.html">CEGUI::WindowProperties::NonClient</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1RestoreOldCapture.html">CEGUI::WindowProperties::RestoreOldCapture</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1RiseOnClick.html">CEGUI::WindowProperties::RiseOnClick</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1Rotation.html">CEGUI::WindowProperties::Rotation</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1Text.html">CEGUI::WindowProperties::Text</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1TextParsingEnabled.html">CEGUI::WindowProperties::TextParsingEnabled</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1Tooltip.html">CEGUI::WindowProperties::Tooltip</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1UnifiedAreaRect.html">CEGUI::WindowProperties::UnifiedAreaRect</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1UnifiedHeight.html">CEGUI::WindowProperties::UnifiedHeight</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1UnifiedMaxSize.html">CEGUI::WindowProperties::UnifiedMaxSize</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1UnifiedMinSize.html">CEGUI::WindowProperties::UnifiedMinSize</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1UnifiedPosition.html">CEGUI::WindowProperties::UnifiedPosition</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1UnifiedSize.html">CEGUI::WindowProperties::UnifiedSize</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1UnifiedWidth.html">CEGUI::WindowProperties::UnifiedWidth</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1UnifiedXPosition.html">CEGUI::WindowProperties::UnifiedXPosition</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1UnifiedYPosition.html">CEGUI::WindowProperties::UnifiedYPosition</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1UpdateMode.html">CEGUI::WindowProperties::UpdateMode</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1VerticalAlignment.html">CEGUI::WindowProperties::VerticalAlignment</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1Visible.html">CEGUI::WindowProperties::Visible</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1WantsMultiClickEvents.html">CEGUI::WindowProperties::WantsMultiClickEvents</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1WindowRenderer.html">CEGUI::WindowProperties::WindowRenderer</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1XRotation.html">CEGUI::WindowProperties::XRotation</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1YRotation.html">CEGUI::WindowProperties::YRotation</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1ZOrderChangeEnabled.html">CEGUI::WindowProperties::ZOrderChangeEnabled</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1ZRotation.html">CEGUI::WindowProperties::ZRotation</a>, and <a class="el" href="classCEGUI_1_1XercesParserProperties_1_1SchemaDefaultResourceGroup.html">CEGUI::XercesParserProperties::SchemaDefaultResourceGroup</a>.</p>
<div id="dynsection-0" onclick="return toggleVisibility(this)" class="dynheader closed" style="cursor:pointer;">
<img id="dynsection-0-trigger" src="closed.png"/> Collaboration diagram for CEGUI::Property:</div>
<div id="dynsection-0-summary" class="dynsummary" style="display:block;">
</div>
<div id="dynsection-0-content" class="dyncontent" style="display:none;">
<div class="center"><img src="classCEGUI_1_1Property__coll__graph.gif" border="0" usemap="#CEGUI_1_1Property_coll__map" alt="Collaboration graph"/></div>
<map name="CEGUI_1_1Property_coll__map" id="CEGUI_1_1Property_coll__map">
<area shape="rect" id="node2" href="classCEGUI_1_1String.html" title="String class used within the GUI system." alt="" coords="13,5,120,35"/></map>
<center><span class="legend">[<a href="graph_legend.html">legend</a>]</span></center></div>
<p><a href="classCEGUI_1_1Property-members.html">List of all members.</a></p>
<table class="memberdecls">
<tr><td colspan="2"><h2><a name="pub-methods"></a>
Public Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Property.html#a2acafd4f7165506ef5df5c13cc0fc392">Property</a> (const <a class="el" href="classCEGUI_1_1String.html">String</a> &name, const <a class="el" href="classCEGUI_1_1String.html">String</a> &help, const <a class="el" href="classCEGUI_1_1String.html">String</a> &defaultValue="", bool writesXML=true)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Creates a new <a class="el" href="classCEGUI_1_1Property.html" title="An abstract class that defines the interface to access object properties by name.">Property</a> object. <a href="#a2acafd4f7165506ef5df5c13cc0fc392"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a3e036b8ee80ea33209e8c6a509bcb159"></a><!-- doxytag: member="CEGUI::Property::~Property" ref="a3e036b8ee80ea33209e8c6a509bcb159" args="(void)" -->
virtual </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Property.html#a3e036b8ee80ea33209e8c6a509bcb159">~Property</a> (void)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Destructor for <a class="el" href="classCEGUI_1_1Property.html" title="An abstract class that defines the interface to access object properties by name.">Property</a> objects. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">const <a class="el" href="classCEGUI_1_1String.html">String</a> & </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Property.html#acb9929cb75af7d9a2f49c52bac3fdd70">getHelp</a> (void) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Return a <a class="el" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> that describes the purpose and usage of this <a class="el" href="classCEGUI_1_1Property.html" title="An abstract class that defines the interface to access object properties by name.">Property</a>. <a href="#acb9929cb75af7d9a2f49c52bac3fdd70"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">const <a class="el" href="classCEGUI_1_1String.html">String</a> & </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Property.html#a81303393d21ed7d505542c576b40311c">getName</a> (void) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Return a the name of this <a class="el" href="classCEGUI_1_1Property.html" title="An abstract class that defines the interface to access object properties by name.">Property</a>. <a href="#a81303393d21ed7d505542c576b40311c"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="classCEGUI_1_1String.html">String</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Property.html#a47b2146f07d6a725075d06dc62396ab1">get</a> (const <a class="el" href="classCEGUI_1_1PropertyReceiver.html">PropertyReceiver</a> *receiver) const =0</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Return the current value of the <a class="el" href="classCEGUI_1_1Property.html" title="An abstract class that defines the interface to access object properties by name.">Property</a> as a <a class="el" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a>. <a href="#a47b2146f07d6a725075d06dc62396ab1"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Property.html#a66405360c2f98359dbb90f9700fc8251">set</a> (<a class="el" href="classCEGUI_1_1PropertyReceiver.html">PropertyReceiver</a> *receiver, const <a class="el" href="classCEGUI_1_1String.html">String</a> &value)=0</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Sets the value of the property. <a href="#a66405360c2f98359dbb90f9700fc8251"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">virtual bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Property.html#ade7d5a52c4b95ec295983f0c2535ffd1">isDefault</a> (const <a class="el" href="classCEGUI_1_1PropertyReceiver.html">PropertyReceiver</a> *receiver) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Returns whether the property is at it's default value. <a href="#ade7d5a52c4b95ec295983f0c2535ffd1"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="classCEGUI_1_1String.html">String</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Property.html#ad8779d486fe0520e47115235e0f33507">getDefault</a> (const <a class="el" href="classCEGUI_1_1PropertyReceiver.html">PropertyReceiver</a> *receiver) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Returns the default value of the <a class="el" href="classCEGUI_1_1Property.html" title="An abstract class that defines the interface to access object properties by name.">Property</a> as a <a class="el" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a>. <a href="#ad8779d486fe0520e47115235e0f33507"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Property.html#a361af5c4d768b2a038d82e402ace5d02">writeXMLToStream</a> (const <a class="el" href="classCEGUI_1_1PropertyReceiver.html">PropertyReceiver</a> *receiver, <a class="el" href="classCEGUI_1_1XMLSerializer.html">XMLSerializer</a> &xml_stream) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Writes out an XML representation of this class to the given stream. <a href="#a361af5c4d768b2a038d82e402ace5d02"></a><br/></td></tr>
<tr><td colspan="2"><h2><a name="pro-attribs"></a>
Protected Attributes</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a2e3ccf0e67a3eb45d7123d003c8bd674"></a><!-- doxytag: member="CEGUI::Property::d_name" ref="a2e3ccf0e67a3eb45d7123d003c8bd674" args="" -->
<a class="el" href="classCEGUI_1_1String.html">String</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Property.html#a2e3ccf0e67a3eb45d7123d003c8bd674">d_name</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight"><a class="el" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> that stores the <a class="el" href="classCEGUI_1_1Property.html" title="An abstract class that defines the interface to access object properties by name.">Property</a> name. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ac464874df193dc0b1cf4bfb141836603"></a><!-- doxytag: member="CEGUI::Property::d_help" ref="ac464874df193dc0b1cf4bfb141836603" args="" -->
<a class="el" href="classCEGUI_1_1String.html">String</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Property.html#ac464874df193dc0b1cf4bfb141836603">d_help</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight"><a class="el" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> that stores the <a class="el" href="classCEGUI_1_1Property.html" title="An abstract class that defines the interface to access object properties by name.">Property</a> help text. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ac477ecbc4f8048d5de9966305be283d7"></a><!-- doxytag: member="CEGUI::Property::d_default" ref="ac477ecbc4f8048d5de9966305be283d7" args="" -->
<a class="el" href="classCEGUI_1_1String.html">String</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Property.html#ac477ecbc4f8048d5de9966305be283d7">d_default</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight"><a class="el" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> that stores the <a class="el" href="classCEGUI_1_1Property.html" title="An abstract class that defines the interface to access object properties by name.">Property</a> default value string. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a1b7121efbe88ec17242946ac80fcb5cf"></a><!-- doxytag: member="CEGUI::Property::d_writeXML" ref="a1b7121efbe88ec17242946ac80fcb5cf" args="" -->
bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Property.html#a1b7121efbe88ec17242946ac80fcb5cf">d_writeXML</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Specifies whether writeXMLToStream should do anything for this property. <br/></td></tr>
</table>
<hr/><a name="details" id="details"></a><h2>Detailed Description</h2>
<div class="textblock"><p>An abstract class that defines the interface to access object properties by name. </p>
<p><a class="el" href="classCEGUI_1_1Property.html" title="An abstract class that defines the interface to access object properties by name.">Property</a> objects allow (via a <a class="el" href="classCEGUI_1_1PropertySet.html" title="Class that contains a collection of Property objects.">PropertySet</a>) access to certain properties of objects by using simple get/set functions and the name of the property to be accessed. </p>
</div><hr/><h2>Constructor & Destructor Documentation</h2>
<a class="anchor" id="a2acafd4f7165506ef5df5c13cc0fc392"></a><!-- doxytag: member="CEGUI::Property::Property" ref="a2acafd4f7165506ef5df5c13cc0fc392" args="(const String &name, const String &help, const String &defaultValue="", bool writesXML=true)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">CEGUI::Property::Property </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classCEGUI_1_1String.html">String</a> & </td>
<td class="paramname"><em>name</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="classCEGUI_1_1String.html">String</a> & </td>
<td class="paramname"><em>help</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="classCEGUI_1_1String.html">String</a> & </td>
<td class="paramname"><em>defaultValue</em> = <code>""</code>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">bool </td>
<td class="paramname"><em>writesXML</em> = <code>true</code> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td><code> [inline]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Creates a new <a class="el" href="classCEGUI_1_1Property.html" title="An abstract class that defines the interface to access object properties by name.">Property</a> object. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">name</td><td><a class="el" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> containing the name of the new <a class="el" href="classCEGUI_1_1Property.html" title="An abstract class that defines the interface to access object properties by name.">Property</a>.</td></tr>
<tr><td class="paramname">help</td><td><a class="el" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> containing a description of the <a class="el" href="classCEGUI_1_1Property.html" title="An abstract class that defines the interface to access object properties by name.">Property</a> and it's usage.</td></tr>
<tr><td class="paramname">defaultValue</td><td><a class="el" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> holding the textual representation of the default value for this <a class="el" href="classCEGUI_1_1Property.html" title="An abstract class that defines the interface to access object properties by name.">Property</a></td></tr>
<tr><td class="paramname">writesXML</td><td>Specifies whether the writeXMLToStream method should do anything for this <a class="el" href="classCEGUI_1_1Property.html" title="An abstract class that defines the interface to access object properties by name.">Property</a>. This enables selectivity in what properties within a <a class="el" href="classCEGUI_1_1PropertySet.html" title="Class that contains a collection of Property objects.">PropertySet</a> will get output as XML. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<hr/><h2>Member Function Documentation</h2>
<a class="anchor" id="a47b2146f07d6a725075d06dc62396ab1"></a><!-- doxytag: member="CEGUI::Property::get" ref="a47b2146f07d6a725075d06dc62396ab1" args="(const PropertyReceiver *receiver) const =0" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual <a class="el" href="classCEGUI_1_1String.html">String</a> CEGUI::Property::get </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classCEGUI_1_1PropertyReceiver.html">PropertyReceiver</a> * </td>
<td class="paramname"><em>receiver</em></td><td>)</td>
<td> const<code> [pure virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Return the current value of the <a class="el" href="classCEGUI_1_1Property.html" title="An abstract class that defines the interface to access object properties by name.">Property</a> as a <a class="el" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a>. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">receiver</td><td>Pointer to the target object.</td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd><a class="el" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> object containing a textual representation of the current value of the <a class="el" href="classCEGUI_1_1Property.html" title="An abstract class that defines the interface to access object properties by name.">Property</a> </dd></dl>
<p>Implemented in <a class="el" href="classCEGUI_1_1WindowProperties_1_1ID.html#ae52f95e6688cc5faea3e1a4835c87301">CEGUI::WindowProperties::ID</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1Alpha.html#ab7cc9f10443c9df31bad29fea19fcabe">CEGUI::WindowProperties::Alpha</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1Font.html#a0f74d745946fae0c64799a6bd4c459fd">CEGUI::WindowProperties::Font</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1Text.html#a3d057031aa258b889b5eed655f52c11e">CEGUI::WindowProperties::Text</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1MouseCursorImage.html#abde84abb4223a62bcc7fec2b9150c37d">CEGUI::WindowProperties::MouseCursorImage</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1ClippedByParent.html#aef13ab6190b2095f5b7c18270a6cf522">CEGUI::WindowProperties::ClippedByParent</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1InheritsAlpha.html#ac158bbdf64b8074105423ddd7e89b038">CEGUI::WindowProperties::InheritsAlpha</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1AlwaysOnTop.html#a14594c6870273a3f796d3c2eb2a68316">CEGUI::WindowProperties::AlwaysOnTop</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1Disabled.html#a19ab8e9c222159163c714da045d85ae7">CEGUI::WindowProperties::Disabled</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1Visible.html#a26af1da8cb64dea0a8e247aaf332d86f">CEGUI::WindowProperties::Visible</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1RestoreOldCapture.html#a1329e523924f487e2b1c33faccc6a620">CEGUI::WindowProperties::RestoreOldCapture</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1DestroyedByParent.html#ae5f08d9d19761dbc5cd5d5a93d8bab57">CEGUI::WindowProperties::DestroyedByParent</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1ZOrderChangeEnabled.html#af21352f50b7762586b7788eda37c87e6">CEGUI::WindowProperties::ZOrderChangeEnabled</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1WantsMultiClickEvents.html#a094911dc6734aa45ca88d77e3488ec2d">CEGUI::WindowProperties::WantsMultiClickEvents</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1MouseButtonDownAutoRepeat.html#a2dfc76ae6144d57b22091673db8b1ad2">CEGUI::WindowProperties::MouseButtonDownAutoRepeat</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1AutoRepeatDelay.html#a6e883917f8c919aba784f4af953bf1cc">CEGUI::WindowProperties::AutoRepeatDelay</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1AutoRepeatRate.html#a9da97926d9458f022e3c0efebe2d5560">CEGUI::WindowProperties::AutoRepeatRate</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1DistributeCapturedInputs.html#a3f2f4bb4f20b000691bb6a247c9e9883">CEGUI::WindowProperties::DistributeCapturedInputs</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1CustomTooltipType.html#a5faa1dd11247e79b39a228f2c6d34829">CEGUI::WindowProperties::CustomTooltipType</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1Tooltip.html#a20fa57ea25379107cfcb857eec703f72">CEGUI::WindowProperties::Tooltip</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1InheritsTooltipText.html#a1b80995aa38048053eab712f147766b3">CEGUI::WindowProperties::InheritsTooltipText</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1RiseOnClick.html#a77347a74ff2ac81c2533aa9b4a4658f3">CEGUI::WindowProperties::RiseOnClick</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1VerticalAlignment.html#a5fa4b3251b7b80e93025fbd67df4c516">CEGUI::WindowProperties::VerticalAlignment</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1HorizontalAlignment.html#a0ccc6790efc5869de790f05797540d43">CEGUI::WindowProperties::HorizontalAlignment</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1UnifiedAreaRect.html#a067a1c60ae504dc6703d04a432a97542">CEGUI::WindowProperties::UnifiedAreaRect</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1UnifiedPosition.html#af73cd040212aa1016c0428e8cad7bf45">CEGUI::WindowProperties::UnifiedPosition</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1UnifiedXPosition.html#a1fa0043eaff840f8aeffe31e857344f4">CEGUI::WindowProperties::UnifiedXPosition</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1UnifiedYPosition.html#a3ff453633d039134f37b59f82b9e59d8">CEGUI::WindowProperties::UnifiedYPosition</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1UnifiedSize.html#acdf1af94c9d57ed57781e215345df03f">CEGUI::WindowProperties::UnifiedSize</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1UnifiedWidth.html#a383dfba2d0db00b6e3e9303824cb36e5">CEGUI::WindowProperties::UnifiedWidth</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1UnifiedHeight.html#a4b194b68bb56d3d0af8363509e9b8829">CEGUI::WindowProperties::UnifiedHeight</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1UnifiedMinSize.html#aabebda3e55246c9b92a31e70a7f8b19e">CEGUI::WindowProperties::UnifiedMinSize</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1UnifiedMaxSize.html#a1986d28e720963cfdc93cac8fc3c48ad">CEGUI::WindowProperties::UnifiedMaxSize</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1MousePassThroughEnabled.html#a866350fd137fa90be69c4bf554338fc1">CEGUI::WindowProperties::MousePassThroughEnabled</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1WindowRenderer.html#a4e29ca7f03fb15fa123bce2f53aaf3fd">CEGUI::WindowProperties::WindowRenderer</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1LookNFeel.html#a57d01570231d152cb2dadec9b1ddd711">CEGUI::WindowProperties::LookNFeel</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1DragDropTarget.html#a06a74d9c7a502f0bb84d35c14cc23dbc">CEGUI::WindowProperties::DragDropTarget</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1AutoRenderingSurface.html#a13279e2d8625b316c88ecdb8559047c1">CEGUI::WindowProperties::AutoRenderingSurface</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1Rotation.html#ad9bc4e4e8cd644ce75cdf022ac1f3435">CEGUI::WindowProperties::Rotation</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1XRotation.html#af4c3ee6193a8fcb63e327e1f16554347">CEGUI::WindowProperties::XRotation</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1YRotation.html#a3b12194c728654740d9d5fe0830c7c20">CEGUI::WindowProperties::YRotation</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1ZRotation.html#ad02d4e30eee27e000a499a6d0d4221f9">CEGUI::WindowProperties::ZRotation</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1NonClient.html#a7dafa8994993472cd720e858432cf205">CEGUI::WindowProperties::NonClient</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1TextParsingEnabled.html#a016c9d11519262a41c0bbbccd06dc715">CEGUI::WindowProperties::TextParsingEnabled</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1Margin.html#a10d35265a10d1aba24b4cbafb4f01ffd">CEGUI::WindowProperties::Margin</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1UpdateMode.html#a36cebb4081ff8d41d423653ed2319dcc">CEGUI::WindowProperties::UpdateMode</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1MouseInputPropagationEnabled.html#aae50b28831c08473f85f65bdc2086f5c">CEGUI::WindowProperties::MouseInputPropagationEnabled</a>, <a class="el" href="classCEGUI_1_1CheckboxProperties_1_1Selected.html#a1f087a5dd9274a62360a2b6191082b29">CEGUI::CheckboxProperties::Selected</a>, <a class="el" href="classCEGUI_1_1ComboboxProperties_1_1ReadOnly.html#a68da48164e3a46a665ef2d7346613f9b">CEGUI::ComboboxProperties::ReadOnly</a>, <a class="el" href="classCEGUI_1_1ComboboxProperties_1_1ValidationString.html#ac720f1c934ad94a50f6d6568c6600beb">CEGUI::ComboboxProperties::ValidationString</a>, <a class="el" href="classCEGUI_1_1ComboboxProperties_1_1CaratIndex.html#ae078f32642d2bfa7e25cf7f617b65be3">CEGUI::ComboboxProperties::CaratIndex</a>, <a class="el" href="classCEGUI_1_1ComboboxProperties_1_1EditSelectionStart.html#ad7c59cf657159b7e16ea97f7b9f5bf75">CEGUI::ComboboxProperties::EditSelectionStart</a>, <a class="el" href="classCEGUI_1_1ComboboxProperties_1_1EditSelectionLength.html#aa28828f4d6915adb7d2f562f14c719d2">CEGUI::ComboboxProperties::EditSelectionLength</a>, <a class="el" href="classCEGUI_1_1ComboboxProperties_1_1MaxEditTextLength.html#a3219bddc98d8bb0bfe00019bf3446774">CEGUI::ComboboxProperties::MaxEditTextLength</a>, <a class="el" href="classCEGUI_1_1ComboboxProperties_1_1SortList.html#afb053218cce3694adc55c80f4ab8c098">CEGUI::ComboboxProperties::SortList</a>, <a class="el" href="classCEGUI_1_1ComboboxProperties_1_1ForceVertScrollbar.html#ad45caa8a292f5fa7248a8e0659aedb9b">CEGUI::ComboboxProperties::ForceVertScrollbar</a>, <a class="el" href="classCEGUI_1_1ComboboxProperties_1_1ForceHorzScrollbar.html#aaeab9e16caef31162badcb97907695ae">CEGUI::ComboboxProperties::ForceHorzScrollbar</a>, <a class="el" href="classCEGUI_1_1ComboboxProperties_1_1SingleClickMode.html#a09650c5ac176dc253edfa5bf0e309cf5">CEGUI::ComboboxProperties::SingleClickMode</a>, <a class="el" href="classCEGUI_1_1DragContainerProperties_1_1DraggingEnabled.html#a1a1decd9f20e60fd9d7baa4efcbed39a">CEGUI::DragContainerProperties::DraggingEnabled</a>, <a class="el" href="classCEGUI_1_1DragContainerProperties_1_1DragAlpha.html#a5db9e1dbb31681292de5bee431a55f78">CEGUI::DragContainerProperties::DragAlpha</a>, <a class="el" href="classCEGUI_1_1DragContainerProperties_1_1DragThreshold.html#a9c514a4c9fd9609a37715a82315f2d2c">CEGUI::DragContainerProperties::DragThreshold</a>, <a class="el" href="classCEGUI_1_1DragContainerProperties_1_1DragCursorImage.html#a9638f57913acca350470053d1358dc29">CEGUI::DragContainerProperties::DragCursorImage</a>, <a class="el" href="classCEGUI_1_1DragContainerProperties_1_1StickyMode.html#aa4fab0c5ecaa70c83d537988a75c8cdd">CEGUI::DragContainerProperties::StickyMode</a>, <a class="el" href="classCEGUI_1_1DragContainerProperties_1_1FixedDragOffset.html#aef8b9a90614ce97c7ebcd68405fdd114">CEGUI::DragContainerProperties::FixedDragOffset</a>, <a class="el" href="classCEGUI_1_1DragContainerProperties_1_1UseFixedDragOffset.html#a640372e8bd80b26bb596d6aa8e25ac8f">CEGUI::DragContainerProperties::UseFixedDragOffset</a>, <a class="el" href="classCEGUI_1_1EditboxProperties_1_1ReadOnly.html#a3babfd873437bd3561244cb8b0e4eeeb">CEGUI::EditboxProperties::ReadOnly</a>, <a class="el" href="classCEGUI_1_1EditboxProperties_1_1MaskText.html#a49751d9fbc2144095ecadf55e4cc985d">CEGUI::EditboxProperties::MaskText</a>, <a class="el" href="classCEGUI_1_1EditboxProperties_1_1MaskCodepoint.html#a45b8426272023d82cb533d2c64f31deb">CEGUI::EditboxProperties::MaskCodepoint</a>, <a class="el" href="classCEGUI_1_1EditboxProperties_1_1ValidationString.html#aae1d0118cc8539417a8d73ee524a35a0">CEGUI::EditboxProperties::ValidationString</a>, <a class="el" href="classCEGUI_1_1EditboxProperties_1_1CaratIndex.html#afe808db2fc73250b5d0efa998adec37c">CEGUI::EditboxProperties::CaratIndex</a>, <a class="el" href="classCEGUI_1_1EditboxProperties_1_1SelectionStart.html#aa376bc3a55797cbd7a061be8f06e376b">CEGUI::EditboxProperties::SelectionStart</a>, <a class="el" href="classCEGUI_1_1EditboxProperties_1_1SelectionLength.html#a35edf93bb2652e66996ae62030e24c54">CEGUI::EditboxProperties::SelectionLength</a>, <a class="el" href="classCEGUI_1_1EditboxProperties_1_1MaxTextLength.html#aaed8bcc73eb62fea2ea45041c4a6d6d9">CEGUI::EditboxProperties::MaxTextLength</a>, <a class="el" href="classCEGUI_1_1EditboxProperties_1_1NormalTextColour.html#ab09836fb61c8612f49be41c66d476e87">CEGUI::EditboxProperties::NormalTextColour</a>, <a class="el" href="classCEGUI_1_1EditboxProperties_1_1SelectedTextColour.html#a79a78018999b9720614dbc82fe473058">CEGUI::EditboxProperties::SelectedTextColour</a>, <a class="el" href="classCEGUI_1_1EditboxProperties_1_1ActiveSelectionColour.html#a63e7b38ed29dafffd95be35285840ca4">CEGUI::EditboxProperties::ActiveSelectionColour</a>, <a class="el" href="classCEGUI_1_1EditboxProperties_1_1InactiveSelectionColour.html#a232e406dc652c066457e6ceab34cefb2">CEGUI::EditboxProperties::InactiveSelectionColour</a>, <a class="el" href="classCEGUI_1_1FrameWindowProperties_1_1SizingEnabled.html#a532c3dde23d4a57e3458c054e94da650">CEGUI::FrameWindowProperties::SizingEnabled</a>, <a class="el" href="classCEGUI_1_1FrameWindowProperties_1_1FrameEnabled.html#adda3a329d73d85ba29d5a8034dce46f6">CEGUI::FrameWindowProperties::FrameEnabled</a>, <a class="el" href="classCEGUI_1_1FrameWindowProperties_1_1TitlebarEnabled.html#a053bde2e561ad7a395a3ec119d32bb01">CEGUI::FrameWindowProperties::TitlebarEnabled</a>, <a class="el" href="classCEGUI_1_1FrameWindowProperties_1_1CloseButtonEnabled.html#ad894fa322a977acb5786c7f72ae99df5">CEGUI::FrameWindowProperties::CloseButtonEnabled</a>, <a class="el" href="classCEGUI_1_1FrameWindowProperties_1_1RollUpEnabled.html#a72770acd8fa1fbc2b60286d4421235e4">CEGUI::FrameWindowProperties::RollUpEnabled</a>, <a class="el" href="classCEGUI_1_1FrameWindowProperties_1_1RollUpState.html#a906ba14cdebffdd34c0804927252ef81">CEGUI::FrameWindowProperties::RollUpState</a>, <a class="el" href="classCEGUI_1_1FrameWindowProperties_1_1DragMovingEnabled.html#a228f06de25d9237677f783e5a9865675">CEGUI::FrameWindowProperties::DragMovingEnabled</a>, <a class="el" href="classCEGUI_1_1FrameWindowProperties_1_1SizingBorderThickness.html#a217d3a8b0ef193a34998120aa65f8938">CEGUI::FrameWindowProperties::SizingBorderThickness</a>, <a class="el" href="classCEGUI_1_1FrameWindowProperties_1_1NSSizingCursorImage.html#ae6b0ad80fcf48178a7fe5f7def7524b3">CEGUI::FrameWindowProperties::NSSizingCursorImage</a>, <a class="el" href="classCEGUI_1_1FrameWindowProperties_1_1EWSizingCursorImage.html#aabed445e99a745579261122c0bd84d5c">CEGUI::FrameWindowProperties::EWSizingCursorImage</a>, <a class="el" href="classCEGUI_1_1FrameWindowProperties_1_1NWSESizingCursorImage.html#a8fb7922db680bc3fa9c73c9f1172807b">CEGUI::FrameWindowProperties::NWSESizingCursorImage</a>, <a class="el" href="classCEGUI_1_1FrameWindowProperties_1_1NESWSizingCursorImage.html#a8401929eac3bcbf42b1108982338e337">CEGUI::FrameWindowProperties::NESWSizingCursorImage</a>, <a class="el" href="classCEGUI_1_1GridLayoutContainerProperties_1_1GridSize.html#ac9fe64bc9a9d574867660d826d09e8e6">CEGUI::GridLayoutContainerProperties::GridSize</a>, <a class="el" href="classCEGUI_1_1GridLayoutContainerProperties_1_1AutoPositioning.html#a1b3e06dfd89bcf7511d100568722a40b">CEGUI::GridLayoutContainerProperties::AutoPositioning</a>, <a class="el" href="classCEGUI_1_1ItemEntryProperties_1_1Selectable.html#acad5409919da36825ef6adee1f8c0fa0">CEGUI::ItemEntryProperties::Selectable</a>, <a class="el" href="classCEGUI_1_1ItemEntryProperties_1_1Selected.html#abc5d41dccde98e8e3593ba2a4749fccf">CEGUI::ItemEntryProperties::Selected</a>, <a class="el" href="classCEGUI_1_1ItemListBaseProperties_1_1AutoResizeEnabled.html#a618727a098bd257e3c8024507b1044cc">CEGUI::ItemListBaseProperties::AutoResizeEnabled</a>, <a class="el" href="classCEGUI_1_1ItemListBaseProperties_1_1SortEnabled.html#ab0003ad5734ab9a578f9fb2897fd1102">CEGUI::ItemListBaseProperties::SortEnabled</a>, <a class="el" href="classCEGUI_1_1ItemListBaseProperties_1_1SortMode.html#a16c4fe6dd9ff6c4ad0f18309ec709b55">CEGUI::ItemListBaseProperties::SortMode</a>, <a class="el" href="classCEGUI_1_1ItemListboxProperties_1_1MultiSelect.html#aebf816029dd9cca20c06208af24d72bb">CEGUI::ItemListboxProperties::MultiSelect</a>, <a class="el" href="classCEGUI_1_1ListboxProperties_1_1Sort.html#a5a8f77b6682371238a80a4e83070df8d">CEGUI::ListboxProperties::Sort</a>, <a class="el" href="classCEGUI_1_1ListboxProperties_1_1MultiSelect.html#ab936146603c6d26524a09031dbfe6848">CEGUI::ListboxProperties::MultiSelect</a>, <a class="el" href="classCEGUI_1_1ListboxProperties_1_1ForceVertScrollbar.html#a1dcad4f695e0c3a155bd722b0ee2e8b5">CEGUI::ListboxProperties::ForceVertScrollbar</a>, <a class="el" href="classCEGUI_1_1ListboxProperties_1_1ForceHorzScrollbar.html#aa3e95fb42df76e1a78b4c5e7f6c5b0a1">CEGUI::ListboxProperties::ForceHorzScrollbar</a>, <a class="el" href="classCEGUI_1_1ListboxProperties_1_1ItemTooltips.html#a05b4fcb11464f4bf3feb8eef2153e739">CEGUI::ListboxProperties::ItemTooltips</a>, <a class="el" href="classCEGUI_1_1ListHeaderProperties_1_1ColumnsSizable.html#a2d276c967e1f00963689efbeafd69c86">CEGUI::ListHeaderProperties::ColumnsSizable</a>, <a class="el" href="classCEGUI_1_1ListHeaderProperties_1_1ColumnsMovable.html#ae9d54a82e536217185875ca9dbc284c4">CEGUI::ListHeaderProperties::ColumnsMovable</a>, <a class="el" href="classCEGUI_1_1ListHeaderProperties_1_1SortSettingEnabled.html#a17494eb58b9222e38778cb180364ea09">CEGUI::ListHeaderProperties::SortSettingEnabled</a>, <a class="el" href="classCEGUI_1_1ListHeaderProperties_1_1SortDirection.html#a8f4241f1143dcc10ef605ac2c9cbd727">CEGUI::ListHeaderProperties::SortDirection</a>, <a class="el" href="classCEGUI_1_1ListHeaderProperties_1_1SortColumnID.html#a0ff67f56101fc69c5c664b140774db38">CEGUI::ListHeaderProperties::SortColumnID</a>, <a class="el" href="classCEGUI_1_1ListHeaderSegmentProperties_1_1Sizable.html#af08bb4ef1e5620dbe7283be8ba36fd81">CEGUI::ListHeaderSegmentProperties::Sizable</a>, <a class="el" href="classCEGUI_1_1ListHeaderSegmentProperties_1_1Clickable.html#a55198104f904ac846d3521d2c343836f">CEGUI::ListHeaderSegmentProperties::Clickable</a>, <a class="el" href="classCEGUI_1_1ListHeaderSegmentProperties_1_1Dragable.html#acd07f5152c8ed05220b293e897dccad9">CEGUI::ListHeaderSegmentProperties::Dragable</a>, <a class="el" href="classCEGUI_1_1ListHeaderSegmentProperties_1_1SortDirection.html#abd25616bff0f7ca57f4a139b23e4297d">CEGUI::ListHeaderSegmentProperties::SortDirection</a>, <a class="el" href="classCEGUI_1_1ListHeaderSegmentProperties_1_1SizingCursorImage.html#adf110f921b3d2ca9fdd63e8abd3823a4">CEGUI::ListHeaderSegmentProperties::SizingCursorImage</a>, <a class="el" href="classCEGUI_1_1ListHeaderSegmentProperties_1_1MovingCursorImage.html#a35db47f7e1c5dc6911dce62e26a1dce7">CEGUI::ListHeaderSegmentProperties::MovingCursorImage</a>, <a class="el" href="classCEGUI_1_1MenuBaseProperties_1_1ItemSpacing.html#a1eb06970cb27a1a34fabb0eacc3b71d3">CEGUI::MenuBaseProperties::ItemSpacing</a>, <a class="el" href="classCEGUI_1_1MenuBaseProperties_1_1AllowMultiplePopups.html#ae40a318fe3a6ea4cfc659c652aa4860d">CEGUI::MenuBaseProperties::AllowMultiplePopups</a>, <a class="el" href="classCEGUI_1_1MenuBaseProperties_1_1AutoCloseNestedPopups.html#a7a203847e052efac51bef50968bdee47">CEGUI::MenuBaseProperties::AutoCloseNestedPopups</a>, <a class="el" href="classCEGUI_1_1MenuItemProperties_1_1PopupOffset.html#a1774513069cd045c4e0d4b619f14a407">CEGUI::MenuItemProperties::PopupOffset</a>, <a class="el" href="classCEGUI_1_1MenuItemProperties_1_1AutoPopupTimeout.html#a627cf5845641d21a4cde9517160f9d4b">CEGUI::MenuItemProperties::AutoPopupTimeout</a>, <a class="el" href="classCEGUI_1_1MultiColumnListProperties_1_1ColumnsSizable.html#af4350ed88007e1ef9a9ad6f31fbb737d">CEGUI::MultiColumnListProperties::ColumnsSizable</a>, <a class="el" href="classCEGUI_1_1MultiColumnListProperties_1_1ColumnsMovable.html#aa0083596d0314f7198f9aa35ae1f99cd">CEGUI::MultiColumnListProperties::ColumnsMovable</a>, <a class="el" href="classCEGUI_1_1MultiColumnListProperties_1_1SortSettingEnabled.html#a58ba96cedb178333a3e43f0c3d922459">CEGUI::MultiColumnListProperties::SortSettingEnabled</a>, <a class="el" href="classCEGUI_1_1MultiColumnListProperties_1_1SortDirection.html#aed662228944596c441b747d52ec9dd12">CEGUI::MultiColumnListProperties::SortDirection</a>, <a class="el" href="classCEGUI_1_1MultiColumnListProperties_1_1SortColumnID.html#a84093aa78cd54a1919899309ada810d8">CEGUI::MultiColumnListProperties::SortColumnID</a>, <a class="el" href="classCEGUI_1_1MultiColumnListProperties_1_1NominatedSelectionColumnID.html#a0f8b040565035e530c97909c4727d27c">CEGUI::MultiColumnListProperties::NominatedSelectionColumnID</a>, <a class="el" href="classCEGUI_1_1MultiColumnListProperties_1_1NominatedSelectionRow.html#a7d091d8b403c572de3b28b9ce8a81388">CEGUI::MultiColumnListProperties::NominatedSelectionRow</a>, <a class="el" href="classCEGUI_1_1MultiColumnListProperties_1_1ForceVertScrollbar.html#a11b6e1507946512fd301fac34a98d535">CEGUI::MultiColumnListProperties::ForceVertScrollbar</a>, <a class="el" href="classCEGUI_1_1MultiColumnListProperties_1_1ForceHorzScrollbar.html#ae94a7b3881aa3ad36be78cf5a4bbaec0">CEGUI::MultiColumnListProperties::ForceHorzScrollbar</a>, <a class="el" href="classCEGUI_1_1MultiColumnListProperties_1_1SelectionMode.html#a7be2b6fbb33b5790f879507a9983af0c">CEGUI::MultiColumnListProperties::SelectionMode</a>, <a class="el" href="classCEGUI_1_1MultiColumnListProperties_1_1ColumnHeader.html#a0349709703526dd0a7a7257cba9fe23d">CEGUI::MultiColumnListProperties::ColumnHeader</a>, <a class="el" href="classCEGUI_1_1MultiColumnListProperties_1_1RowCount.html#a6b4d634cf84b283cfd928a6a7c009f50">CEGUI::MultiColumnListProperties::RowCount</a>, <a class="el" href="classCEGUI_1_1MultiLineEditboxProperties_1_1ReadOnly.html#aa95aed4e75ff9943dba6c525f9506051">CEGUI::MultiLineEditboxProperties::ReadOnly</a>, <a class="el" href="classCEGUI_1_1MultiLineEditboxProperties_1_1WordWrap.html#a08a14e6f66791eba0dcffcb9f4d08361">CEGUI::MultiLineEditboxProperties::WordWrap</a>, <a class="el" href="classCEGUI_1_1MultiLineEditboxProperties_1_1CaratIndex.html#a1f7399ef42a5acb9cff5b613548a294f">CEGUI::MultiLineEditboxProperties::CaratIndex</a>, <a class="el" href="classCEGUI_1_1MultiLineEditboxProperties_1_1SelectionStart.html#a4cd8f721dee0ba18fa1d2c1ea1affead">CEGUI::MultiLineEditboxProperties::SelectionStart</a>, <a class="el" href="classCEGUI_1_1MultiLineEditboxProperties_1_1SelectionLength.html#a11adb556a5b385754b01a514078a157e">CEGUI::MultiLineEditboxProperties::SelectionLength</a>, <a class="el" href="classCEGUI_1_1MultiLineEditboxProperties_1_1MaxTextLength.html#adcf89edc9353d637e6969d2b1368d4a7">CEGUI::MultiLineEditboxProperties::MaxTextLength</a>, <a class="el" href="classCEGUI_1_1MultiLineEditboxProperties_1_1SelectionBrushImage.html#ae11c8bb01aaa2eb8f3003efcd04aca51">CEGUI::MultiLineEditboxProperties::SelectionBrushImage</a>, <a class="el" href="classCEGUI_1_1MultiLineEditboxProperties_1_1ForceVertScrollbar.html#a33bd395623a71f20d31594ebc535c5a7">CEGUI::MultiLineEditboxProperties::ForceVertScrollbar</a>, <a class="el" href="classCEGUI_1_1PopupMenuProperties_1_1FadeInTime.html#a0e9aa84eec80f0083cbb377d00c9c9ea">CEGUI::PopupMenuProperties::FadeInTime</a>, <a class="el" href="classCEGUI_1_1PopupMenuProperties_1_1FadeOutTime.html#a4d5163f03aa2d9ab770845550b340ad2">CEGUI::PopupMenuProperties::FadeOutTime</a>, <a class="el" href="classCEGUI_1_1ProgressBarProperties_1_1CurrentProgress.html#aea3bb5811ecedcc4ccbf71ead767932a">CEGUI::ProgressBarProperties::CurrentProgress</a>, <a class="el" href="classCEGUI_1_1ProgressBarProperties_1_1StepSize.html#a1de4143621cf853e3fe469c516a0cf32">CEGUI::ProgressBarProperties::StepSize</a>, <a class="el" href="classCEGUI_1_1RadioButtonProperties_1_1Selected.html#a974f3c7b47e31ea3a5727d6d12dea6e4">CEGUI::RadioButtonProperties::Selected</a>, <a class="el" href="classCEGUI_1_1RadioButtonProperties_1_1GroupID.html#ad8db3afb6dcd83e8959fceb6333eea56">CEGUI::RadioButtonProperties::GroupID</a>, <a class="el" href="classCEGUI_1_1ScrollablePaneProperties_1_1ContentPaneAutoSized.html#a02129d2b87a5f1edaadd99e4454bc56d">CEGUI::ScrollablePaneProperties::ContentPaneAutoSized</a>, <a class="el" href="classCEGUI_1_1ScrollablePaneProperties_1_1ContentArea.html#a5d55ea90c1d88a7d7ca6c6278ce1d54b">CEGUI::ScrollablePaneProperties::ContentArea</a>, <a class="el" href="classCEGUI_1_1ScrollablePaneProperties_1_1ForceVertScrollbar.html#a722ca55b8a504406022717653ad16c27">CEGUI::ScrollablePaneProperties::ForceVertScrollbar</a>, <a class="el" href="classCEGUI_1_1ScrollablePaneProperties_1_1ForceHorzScrollbar.html#a89496e281768930c6a5734f7c801b84e">CEGUI::ScrollablePaneProperties::ForceHorzScrollbar</a>, <a class="el" href="classCEGUI_1_1ScrollablePaneProperties_1_1HorzStepSize.html#a1a846b8054b690569da4473f77f3c20f">CEGUI::ScrollablePaneProperties::HorzStepSize</a>, <a class="el" href="classCEGUI_1_1ScrollablePaneProperties_1_1HorzOverlapSize.html#ac298b82cb3d735100942eac666654c1a">CEGUI::ScrollablePaneProperties::HorzOverlapSize</a>, <a class="el" href="classCEGUI_1_1ScrollablePaneProperties_1_1HorzScrollPosition.html#a66e92fa2b25db8b0ef0545e064ffd54f">CEGUI::ScrollablePaneProperties::HorzScrollPosition</a>, <a class="el" href="classCEGUI_1_1ScrollablePaneProperties_1_1VertStepSize.html#a98e8c00ced7c2aec1e10fb1f85d823f0">CEGUI::ScrollablePaneProperties::VertStepSize</a>, <a class="el" href="classCEGUI_1_1ScrollablePaneProperties_1_1VertOverlapSize.html#a61b071f7a44dd0fb32ac2eafe39ab134">CEGUI::ScrollablePaneProperties::VertOverlapSize</a>, <a class="el" href="classCEGUI_1_1ScrollablePaneProperties_1_1VertScrollPosition.html#afb792426a1668e0c28b4d26a38eddcb0">CEGUI::ScrollablePaneProperties::VertScrollPosition</a>, <a class="el" href="classCEGUI_1_1ScrollbarProperties_1_1DocumentSize.html#ad7a06ecc7b1863f678b645ade865d61d">CEGUI::ScrollbarProperties::DocumentSize</a>, <a class="el" href="classCEGUI_1_1ScrollbarProperties_1_1PageSize.html#a14209488172eaa0193efd009c6fb643e">CEGUI::ScrollbarProperties::PageSize</a>, <a class="el" href="classCEGUI_1_1ScrollbarProperties_1_1StepSize.html#a5d2c76c59f7d32346e1d46778d7deb2e">CEGUI::ScrollbarProperties::StepSize</a>, <a class="el" href="classCEGUI_1_1ScrollbarProperties_1_1OverlapSize.html#adb10810118d2719a032399caf2de9839">CEGUI::ScrollbarProperties::OverlapSize</a>, <a class="el" href="classCEGUI_1_1ScrollbarProperties_1_1ScrollPosition.html#a5f4a1eccd8e7fae00d764e082334c491">CEGUI::ScrollbarProperties::ScrollPosition</a>, <a class="el" href="classCEGUI_1_1ScrollbarProperties_1_1EndLockEnabled.html#ac1c3a96a050117677383eb6cebbe7860">CEGUI::ScrollbarProperties::EndLockEnabled</a>, <a class="el" href="classCEGUI_1_1ScrolledContainerProperties_1_1ContentPaneAutoSized.html#ae6d2f116baa0fcbd64906743f3533181">CEGUI::ScrolledContainerProperties::ContentPaneAutoSized</a>, <a class="el" href="classCEGUI_1_1ScrolledContainerProperties_1_1ContentArea.html#ad0152e0c261204f59f7fcc9f6a78d29e">CEGUI::ScrolledContainerProperties::ContentArea</a>, <a class="el" href="classCEGUI_1_1ScrolledContainerProperties_1_1ChildExtentsArea.html#a35a742890add84526aef82c5128a3505">CEGUI::ScrolledContainerProperties::ChildExtentsArea</a>, <a class="el" href="classCEGUI_1_1ScrolledItemListBaseProperties_1_1ForceVertScrollbar.html#a00bb57953c8f056628c5f17958a24d82">CEGUI::ScrolledItemListBaseProperties::ForceVertScrollbar</a>, <a class="el" href="classCEGUI_1_1ScrolledItemListBaseProperties_1_1ForceHorzScrollbar.html#a3f5846501fb2841895ce7570b92aea51">CEGUI::ScrolledItemListBaseProperties::ForceHorzScrollbar</a>, <a class="el" href="classCEGUI_1_1SliderProperties_1_1CurrentValue.html#a7f9d079922e34567cf6f7bec68a63235">CEGUI::SliderProperties::CurrentValue</a>, <a class="el" href="classCEGUI_1_1SliderProperties_1_1MaximumValue.html#ae82a615f9b1745a9365e201fcc776763">CEGUI::SliderProperties::MaximumValue</a>, <a class="el" href="classCEGUI_1_1SliderProperties_1_1ClickStepSize.html#aa9082169945490a0908dad8b3f8b48eb">CEGUI::SliderProperties::ClickStepSize</a>, <a class="el" href="classCEGUI_1_1SpinnerProperties_1_1CurrentValue.html#a7c72f39a9bfbde75dd1a026b6dc7e1dc">CEGUI::SpinnerProperties::CurrentValue</a>, <a class="el" href="classCEGUI_1_1SpinnerProperties_1_1StepSize.html#a1955225faf20603134d3607933699c4a">CEGUI::SpinnerProperties::StepSize</a>, <a class="el" href="classCEGUI_1_1SpinnerProperties_1_1MinimumValue.html#ab66f7e5ca18d68769f380eff5c1578c5">CEGUI::SpinnerProperties::MinimumValue</a>, <a class="el" href="classCEGUI_1_1SpinnerProperties_1_1MaximumValue.html#a338a040c0748360b93c4c06b442a9ab3">CEGUI::SpinnerProperties::MaximumValue</a>, <a class="el" href="classCEGUI_1_1SpinnerProperties_1_1TextInputMode.html#a01f78472b108084a1d4f262539e0ecf8">CEGUI::SpinnerProperties::TextInputMode</a>, <a class="el" href="classCEGUI_1_1TabControlProperties_1_1TabHeight.html#a354bf597e7e6df394d8ad8a2295f97a1">CEGUI::TabControlProperties::TabHeight</a>, <a class="el" href="classCEGUI_1_1TabControlProperties_1_1TabTextPadding.html#af8a2541e5736f7a084b3019b278f5321">CEGUI::TabControlProperties::TabTextPadding</a>, <a class="el" href="classCEGUI_1_1TabControlProperties_1_1TabPanePosition.html#a39ede041a2b65c71ef6174d08ed319f0">CEGUI::TabControlProperties::TabPanePosition</a>, <a class="el" href="classCEGUI_1_1ThumbProperties_1_1HotTracked.html#affd2ec0d9f01880db9de4006f808a8d7">CEGUI::ThumbProperties::HotTracked</a>, <a class="el" href="classCEGUI_1_1ThumbProperties_1_1VertFree.html#a7e090a706ae4f0405f36255ec4b99f8f">CEGUI::ThumbProperties::VertFree</a>, <a class="el" href="classCEGUI_1_1ThumbProperties_1_1HorzFree.html#ad454857095cfc5b51a58dfd0ae849c5d">CEGUI::ThumbProperties::HorzFree</a>, <a class="el" href="classCEGUI_1_1ThumbProperties_1_1VertRange.html#a39d834377826c55c7155abcf102f4e06">CEGUI::ThumbProperties::VertRange</a>, <a class="el" href="classCEGUI_1_1ThumbProperties_1_1HorzRange.html#a958701f2aabdb0f88b09a5bff9868b41">CEGUI::ThumbProperties::HorzRange</a>, <a class="el" href="classCEGUI_1_1TitlebarProperties_1_1DraggingEnabled.html#a61d751280f86abf93fde86c0d48db645">CEGUI::TitlebarProperties::DraggingEnabled</a>, <a class="el" href="classCEGUI_1_1TooltipProperties_1_1HoverTime.html#a073059384157563933cccd86b919d8b5">CEGUI::TooltipProperties::HoverTime</a>, <a class="el" href="classCEGUI_1_1TooltipProperties_1_1DisplayTime.html#a9afb57f7fb306f76fb6aeab2542088a4">CEGUI::TooltipProperties::DisplayTime</a>, <a class="el" href="classCEGUI_1_1TooltipProperties_1_1FadeTime.html#a2803cedd77f3313053984db442577692">CEGUI::TooltipProperties::FadeTime</a>, <a class="el" href="classCEGUI_1_1TreeProperties_1_1Sort.html#a35cade9b60ac8e5e4baf500479a3fefb">CEGUI::TreeProperties::Sort</a>, <a class="el" href="classCEGUI_1_1TreeProperties_1_1MultiSelect.html#a6a0fe35a095630b9a8515f3dbe694bba">CEGUI::TreeProperties::MultiSelect</a>, <a class="el" href="classCEGUI_1_1TreeProperties_1_1ForceVertScrollbar.html#a0f8ca8a3347611b987ea3a7c55238e49">CEGUI::TreeProperties::ForceVertScrollbar</a>, <a class="el" href="classCEGUI_1_1TreeProperties_1_1ForceHorzScrollbar.html#aa8430ebcea83d1d88010259c9d37c4a6">CEGUI::TreeProperties::ForceHorzScrollbar</a>, <a class="el" href="classCEGUI_1_1TreeProperties_1_1ItemTooltips.html#a5ff18d11bc7184a770393fde3c2ad061">CEGUI::TreeProperties::ItemTooltips</a>, <a class="el" href="classCEGUI_1_1PropertyDefinition.html#a84fec62a208a756b9bc28a1269abb3b4">CEGUI::PropertyDefinition</a>, <a class="el" href="classCEGUI_1_1PropertyLinkDefinition.html#a0a0c26e97cf4fe966b823580d925ae1f">CEGUI::PropertyLinkDefinition</a>, <a class="el" href="classCEGUI_1_1FalagardEditboxProperties_1_1BlinkCaret.html#a2dbe05d6a75ac2388b7ebefadce93c41">CEGUI::FalagardEditboxProperties::BlinkCaret</a>, <a class="el" href="classCEGUI_1_1FalagardEditboxProperties_1_1BlinkCaretTimeout.html#a077171c3faefb6da6391d11d58333dc7">CEGUI::FalagardEditboxProperties::BlinkCaretTimeout</a>, <a class="el" href="classCEGUI_1_1FalagardEditboxProperties_1_1TextFormatting.html#a519a47cf0aee33fa6e79eba9d17ff398">CEGUI::FalagardEditboxProperties::TextFormatting</a>, <a class="el" href="classCEGUI_1_1FalagardListHeaderProperties_1_1SegmentWidgetType.html#a140e06451094c6209358c0e63c0f7984">CEGUI::FalagardListHeaderProperties::SegmentWidgetType</a>, <a class="el" href="classCEGUI_1_1FalagardMultiLineEditboxProperties_1_1BlinkCaret.html#ada99b30ed0076f0d4bf827cd9bc7a19b">CEGUI::FalagardMultiLineEditboxProperties::BlinkCaret</a>, <a class="el" href="classCEGUI_1_1FalagardMultiLineEditboxProperties_1_1BlinkCaretTimeout.html#a3fb7ce37e3e7994df9b7fa9f2a790592">CEGUI::FalagardMultiLineEditboxProperties::BlinkCaretTimeout</a>, <a class="el" href="classCEGUI_1_1FalagardProgressBarProperties_1_1VerticalProgress.html#abf3139a71f2599f92907a0d417a2996c">CEGUI::FalagardProgressBarProperties::VerticalProgress</a>, <a class="el" href="classCEGUI_1_1FalagardProgressBarProperties_1_1ReversedProgress.html#a6bcb98aff16cdc1bdf71c5af9b9714b4">CEGUI::FalagardProgressBarProperties::ReversedProgress</a>, <a class="el" href="classCEGUI_1_1FalagardScrollbarProperties_1_1VerticalScrollbar.html#abd09785af3830ab35ec8c8b4dc0419ee">CEGUI::FalagardScrollbarProperties::VerticalScrollbar</a>, <a class="el" href="classCEGUI_1_1FalagardSliderProperties_1_1VerticalSlider.html#a89375266f51088346aa8b179086ebc0c">CEGUI::FalagardSliderProperties::VerticalSlider</a>, <a class="el" href="classCEGUI_1_1FalagardSliderProperties_1_1ReversedDirection.html#a18b64e7c6537ca2bb171c444922dd9c6">CEGUI::FalagardSliderProperties::ReversedDirection</a>, <a class="el" href="classCEGUI_1_1FalagardStaticImageProperties_1_1Image.html#a413877f0d149b5f2f11270df8fb3299a">CEGUI::FalagardStaticImageProperties::Image</a>, <a class="el" href="classCEGUI_1_1FalagardStaticProperties_1_1FrameEnabled.html#a15a08171ed91d92c6811d9f5cc408b60">CEGUI::FalagardStaticProperties::FrameEnabled</a>, <a class="el" href="classCEGUI_1_1FalagardStaticProperties_1_1BackgroundEnabled.html#a90b14c5165628d26ec9b7272f501d953">CEGUI::FalagardStaticProperties::BackgroundEnabled</a>, <a class="el" href="classCEGUI_1_1FalagardStaticTextProperties_1_1TextColours.html#a91d33c4b6b44ffd136771792e9d64445">CEGUI::FalagardStaticTextProperties::TextColours</a>, <a class="el" href="classCEGUI_1_1FalagardStaticTextProperties_1_1HorzFormatting.html#a0c70dec76c1e3bc5b82a1c02f222df1f">CEGUI::FalagardStaticTextProperties::HorzFormatting</a>, <a class="el" href="classCEGUI_1_1FalagardStaticTextProperties_1_1VertFormatting.html#a7a7ec89914d0bf1f6822fc7f4cff2ccd">CEGUI::FalagardStaticTextProperties::VertFormatting</a>, <a class="el" href="classCEGUI_1_1FalagardStaticTextProperties_1_1VertScrollbar.html#a2e68b08398381a456b6855763d402d30">CEGUI::FalagardStaticTextProperties::VertScrollbar</a>, <a class="el" href="classCEGUI_1_1FalagardStaticTextProperties_1_1HorzScrollbar.html#af2ccfd224e0f5e4de8e51ae288bdb8e3">CEGUI::FalagardStaticTextProperties::HorzScrollbar</a>, <a class="el" href="classCEGUI_1_1FalagardStaticTextProperties_1_1HorzExtent.html#aea50708fd71c002a39455f03d4b86dab">CEGUI::FalagardStaticTextProperties::HorzExtent</a>, <a class="el" href="classCEGUI_1_1FalagardStaticTextProperties_1_1VertExtent.html#a1a8aadb84289a48682c7fbe0de074582">CEGUI::FalagardStaticTextProperties::VertExtent</a>, <a class="el" href="classCEGUI_1_1FalagardTabControlProperties_1_1TabButtonType.html#a80b8ecd07b73dcc8d2bebe3a2894e739">CEGUI::FalagardTabControlProperties::TabButtonType</a>, and <a class="el" href="classCEGUI_1_1XercesParserProperties_1_1SchemaDefaultResourceGroup.html#ae0bb8ee7f464ca7d7f08570ca858723a">CEGUI::XercesParserProperties::SchemaDefaultResourceGroup</a>.</p>
</div>
</div>
<a class="anchor" id="ad8779d486fe0520e47115235e0f33507"></a><!-- doxytag: member="CEGUI::Property::getDefault" ref="ad8779d486fe0520e47115235e0f33507" args="(const PropertyReceiver *receiver) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual <a class="el" href="classCEGUI_1_1String.html">String</a> CEGUI::Property::getDefault </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classCEGUI_1_1PropertyReceiver.html">PropertyReceiver</a> * </td>
<td class="paramname"><em>receiver</em></td><td>)</td>
<td> const<code> [virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Returns the default value of the <a class="el" href="classCEGUI_1_1Property.html" title="An abstract class that defines the interface to access object properties by name.">Property</a> as a <a class="el" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a>. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">receiver</td><td>Pointer to the target object.</td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd><a class="el" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> object containing a textual representation of the default value for this property. </dd></dl>
</div>
</div>
<a class="anchor" id="acb9929cb75af7d9a2f49c52bac3fdd70"></a><!-- doxytag: member="CEGUI::Property::getHelp" ref="acb9929cb75af7d9a2f49c52bac3fdd70" args="(void) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">const <a class="el" href="classCEGUI_1_1String.html">String</a>& CEGUI::Property::getHelp </td>
<td>(</td>
<td class="paramtype">void </td>
<td class="paramname"></td><td>)</td>
<td> const<code> [inline]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Return a <a class="el" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> that describes the purpose and usage of this <a class="el" href="classCEGUI_1_1Property.html" title="An abstract class that defines the interface to access object properties by name.">Property</a>. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd><a class="el" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> that contains the help text </dd></dl>
</div>
</div>
<a class="anchor" id="a81303393d21ed7d505542c576b40311c"></a><!-- doxytag: member="CEGUI::Property::getName" ref="a81303393d21ed7d505542c576b40311c" args="(void) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">const <a class="el" href="classCEGUI_1_1String.html">String</a>& CEGUI::Property::getName </td>
<td>(</td>
<td class="paramtype">void </td>
<td class="paramname"></td><td>)</td>
<td> const<code> [inline]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Return a the name of this <a class="el" href="classCEGUI_1_1Property.html" title="An abstract class that defines the interface to access object properties by name.">Property</a>. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd><a class="el" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> containing the name of the <a class="el" href="classCEGUI_1_1Property.html" title="An abstract class that defines the interface to access object properties by name.">Property</a> </dd></dl>
</div>
</div>
<a class="anchor" id="ade7d5a52c4b95ec295983f0c2535ffd1"></a><!-- doxytag: member="CEGUI::Property::isDefault" ref="ade7d5a52c4b95ec295983f0c2535ffd1" args="(const PropertyReceiver *receiver) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual bool CEGUI::Property::isDefault </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classCEGUI_1_1PropertyReceiver.html">PropertyReceiver</a> * </td>
<td class="paramname"><em>receiver</em></td><td>)</td>
<td> const<code> [virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Returns whether the property is at it's default value. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">receiver</td><td>Pointer to the target object.</td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd><ul>
<li>true if the property has it's default value.</li>
<li>false if the property has been modified from it's default value. </li>
</ul>
</dd></dl>
<p>Reimplemented in <a class="el" href="classCEGUI_1_1WindowProperties_1_1Font.html#a3724f65f1c6169eff338c3c316823e4d">CEGUI::WindowProperties::Font</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1MouseCursorImage.html#aa2fba5c4e9c5d893c47dfd495133d22b">CEGUI::WindowProperties::MouseCursorImage</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1Disabled.html#af3bcf243b469726531268971d03f263a">CEGUI::WindowProperties::Disabled</a>, and <a class="el" href="classCEGUI_1_1WindowProperties_1_1Visible.html#a1543f002654b244e3e613cce93deea71">CEGUI::WindowProperties::Visible</a>.</p>
</div>
</div>
<a class="anchor" id="a66405360c2f98359dbb90f9700fc8251"></a><!-- doxytag: member="CEGUI::Property::set" ref="a66405360c2f98359dbb90f9700fc8251" args="(PropertyReceiver *receiver, const String &value)=0" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual void CEGUI::Property::set </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classCEGUI_1_1PropertyReceiver.html">PropertyReceiver</a> * </td>
<td class="paramname"><em>receiver</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="classCEGUI_1_1String.html">String</a> & </td>
<td class="paramname"><em>value</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td><code> [pure virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Sets the value of the property. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">receiver</td><td>Pointer to the target object.</td></tr>
<tr><td class="paramname">value</td><td>A <a class="el" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> object that contains a textual representation of the new value to assign to the <a class="el" href="classCEGUI_1_1Property.html" title="An abstract class that defines the interface to access object properties by name.">Property</a>.</td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing.</dd></dl>
<dl><dt><b>Exceptions:</b></dt><dd>
<table class="exception">
<tr><td class="paramname"><a class="el" href="classCEGUI_1_1InvalidRequestException.html" title="Exception class used when some impossible request was made of the system.">InvalidRequestException</a></td><td>Thrown when the <a class="el" href="classCEGUI_1_1Property.html" title="An abstract class that defines the interface to access object properties by name.">Property</a> was unable to interpret the content of <em>value</em>. </td></tr>
</table>
</dd>
</dl>
<p>Implemented in <a class="el" href="classCEGUI_1_1WindowProperties_1_1ID.html#a8216ab68f76c604c81238a24348f1225">CEGUI::WindowProperties::ID</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1Alpha.html#a78d1ee1b61630c331b7588b8cd7908a3">CEGUI::WindowProperties::Alpha</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1Font.html#a3a6687e2fded17e96035c5628500457a">CEGUI::WindowProperties::Font</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1Text.html#a028621a97747c979f5f9fc6d2adf2ad3">CEGUI::WindowProperties::Text</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1MouseCursorImage.html#a778da143040e283487eaca1d751a8fa3">CEGUI::WindowProperties::MouseCursorImage</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1ClippedByParent.html#aa1ef2eb1c1ba15552cb073e57eb551be">CEGUI::WindowProperties::ClippedByParent</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1InheritsAlpha.html#a79a29781a667f6292e1ca03d0fd97699">CEGUI::WindowProperties::InheritsAlpha</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1AlwaysOnTop.html#a48eb24e83f35fcb204ef3c22c39eb218">CEGUI::WindowProperties::AlwaysOnTop</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1Disabled.html#a6367c2682892f52b9b5c1c5745b6b1e7">CEGUI::WindowProperties::Disabled</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1Visible.html#abbbd8d10e58a75a7d264cc9c55f02628">CEGUI::WindowProperties::Visible</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1RestoreOldCapture.html#abfab30f38271803af6dbc3bbe7e20531">CEGUI::WindowProperties::RestoreOldCapture</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1DestroyedByParent.html#aba3fafd2fbf9b84e97b25895530cd817">CEGUI::WindowProperties::DestroyedByParent</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1ZOrderChangeEnabled.html#a1ee3c619f95f2c606dc02b558976542a">CEGUI::WindowProperties::ZOrderChangeEnabled</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1WantsMultiClickEvents.html#ad1937fbad9e2184fbbf8022524526885">CEGUI::WindowProperties::WantsMultiClickEvents</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1MouseButtonDownAutoRepeat.html#a106591d08c657d9e7ec2f41524d54894">CEGUI::WindowProperties::MouseButtonDownAutoRepeat</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1AutoRepeatDelay.html#a7d1f2dc3e3c1f9b265d7159ee80ffdd4">CEGUI::WindowProperties::AutoRepeatDelay</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1AutoRepeatRate.html#a9ca318c16e66ab74084ba9662392f7be">CEGUI::WindowProperties::AutoRepeatRate</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1DistributeCapturedInputs.html#ae283a56e53f2e33128dad6bb38b2dc3f">CEGUI::WindowProperties::DistributeCapturedInputs</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1CustomTooltipType.html#afa02d9c2c424ed7083bd2af8f2112355">CEGUI::WindowProperties::CustomTooltipType</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1Tooltip.html#ad2cde110519e087dccc695c30e06ec89">CEGUI::WindowProperties::Tooltip</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1InheritsTooltipText.html#a9acfc7468f3039b164272d5c5ce8668c">CEGUI::WindowProperties::InheritsTooltipText</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1RiseOnClick.html#ae16826916ead64b7b6e9b513310b93dc">CEGUI::WindowProperties::RiseOnClick</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1VerticalAlignment.html#a3ac1be1458d640c5925b3d929914be0f">CEGUI::WindowProperties::VerticalAlignment</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1HorizontalAlignment.html#ae19357cbf63ff0934d6e2c2a577a7d2e">CEGUI::WindowProperties::HorizontalAlignment</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1UnifiedAreaRect.html#ade5398c0aaa90f715dabc1fc578f9421">CEGUI::WindowProperties::UnifiedAreaRect</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1UnifiedPosition.html#a863eba62b187083931a072cbd4478a56">CEGUI::WindowProperties::UnifiedPosition</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1UnifiedXPosition.html#acd89ab53073ee8836d189b378a0b346d">CEGUI::WindowProperties::UnifiedXPosition</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1UnifiedYPosition.html#a2d88aea3f8ef02174fdaa109ff0923ed">CEGUI::WindowProperties::UnifiedYPosition</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1UnifiedSize.html#a2b6f20da288f619eda66761884788c43">CEGUI::WindowProperties::UnifiedSize</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1UnifiedWidth.html#adaac7450bbe6e82de8ac27361579c3a7">CEGUI::WindowProperties::UnifiedWidth</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1UnifiedHeight.html#abd15dfbb8b18ad4db96863fc8615f7a6">CEGUI::WindowProperties::UnifiedHeight</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1UnifiedMinSize.html#af3e76e2e74c62b33a6841eb303319535">CEGUI::WindowProperties::UnifiedMinSize</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1UnifiedMaxSize.html#ad2165490322015aa331a64c94e1f63bf">CEGUI::WindowProperties::UnifiedMaxSize</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1MousePassThroughEnabled.html#aa7916f68b985fc69ee0afbf81959ec5d">CEGUI::WindowProperties::MousePassThroughEnabled</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1WindowRenderer.html#aad576d556cd7a1b2b512b49ec49f0271">CEGUI::WindowProperties::WindowRenderer</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1LookNFeel.html#a61ad07021625d7ea6c2ce5315613437c">CEGUI::WindowProperties::LookNFeel</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1DragDropTarget.html#a0efbb38351f00c4e11c5875bfedb0f5e">CEGUI::WindowProperties::DragDropTarget</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1AutoRenderingSurface.html#a89ef9c1369eca4083b8cb6922ad00338">CEGUI::WindowProperties::AutoRenderingSurface</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1Rotation.html#ac8b969b8caeb9c08c29e338e5fb791b9">CEGUI::WindowProperties::Rotation</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1XRotation.html#a92a0bd5495bc365b211a16677b240e55">CEGUI::WindowProperties::XRotation</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1YRotation.html#a70e186095ac0fb4fad6a8df1466ea42a">CEGUI::WindowProperties::YRotation</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1ZRotation.html#acbf7c934952f0e9c696315aa379104ae">CEGUI::WindowProperties::ZRotation</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1NonClient.html#a1982f964bff3a442900ed2f82adede0b">CEGUI::WindowProperties::NonClient</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1TextParsingEnabled.html#a1dd56f0e20b5e8fdf1ebf6ae4f04b47e">CEGUI::WindowProperties::TextParsingEnabled</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1Margin.html#ae53391cb1bf84ee7e26a76ca31c23f99">CEGUI::WindowProperties::Margin</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1UpdateMode.html#a0bd7f04139c3ba165ed05a31946a05a8">CEGUI::WindowProperties::UpdateMode</a>, <a class="el" href="classCEGUI_1_1WindowProperties_1_1MouseInputPropagationEnabled.html#a8605657311354ab14bd3640752e0e351">CEGUI::WindowProperties::MouseInputPropagationEnabled</a>, <a class="el" href="classCEGUI_1_1CheckboxProperties_1_1Selected.html#ab739035d19cab6da0f5f1c450c0a0a14">CEGUI::CheckboxProperties::Selected</a>, <a class="el" href="classCEGUI_1_1ComboboxProperties_1_1ReadOnly.html#a8369c390022f44311c5df94a9fbcfea0">CEGUI::ComboboxProperties::ReadOnly</a>, <a class="el" href="classCEGUI_1_1ComboboxProperties_1_1ValidationString.html#a1f2a2df5a2a362f1337b8083ce546a38">CEGUI::ComboboxProperties::ValidationString</a>, <a class="el" href="classCEGUI_1_1ComboboxProperties_1_1CaratIndex.html#a13df9db375de612f5aafbaa4c3dc23aa">CEGUI::ComboboxProperties::CaratIndex</a>, <a class="el" href="classCEGUI_1_1ComboboxProperties_1_1EditSelectionStart.html#a56c72db65567fe83baa3f4209fc5bb85">CEGUI::ComboboxProperties::EditSelectionStart</a>, <a class="el" href="classCEGUI_1_1ComboboxProperties_1_1EditSelectionLength.html#a7ecab8c7223a1dea2831914934eded44">CEGUI::ComboboxProperties::EditSelectionLength</a>, <a class="el" href="classCEGUI_1_1ComboboxProperties_1_1MaxEditTextLength.html#ac5700fc700ddc8e9ae302cba6c140af2">CEGUI::ComboboxProperties::MaxEditTextLength</a>, <a class="el" href="classCEGUI_1_1ComboboxProperties_1_1SortList.html#afc6694e0bf05350fa64eecd2c9ec40d3">CEGUI::ComboboxProperties::SortList</a>, <a class="el" href="classCEGUI_1_1ComboboxProperties_1_1ForceVertScrollbar.html#a3f627f2d9ad35cebcaa9efcc8e21f73e">CEGUI::ComboboxProperties::ForceVertScrollbar</a>, <a class="el" href="classCEGUI_1_1ComboboxProperties_1_1ForceHorzScrollbar.html#a02b99550d337cb1df4ab71395d9000f0">CEGUI::ComboboxProperties::ForceHorzScrollbar</a>, <a class="el" href="classCEGUI_1_1ComboboxProperties_1_1SingleClickMode.html#a0ec7c5d02f23e37939aa8eb421189f49">CEGUI::ComboboxProperties::SingleClickMode</a>, <a class="el" href="classCEGUI_1_1DragContainerProperties_1_1DraggingEnabled.html#aff564eb4b75bf19bba2b72500ddbe36c">CEGUI::DragContainerProperties::DraggingEnabled</a>, <a class="el" href="classCEGUI_1_1DragContainerProperties_1_1DragAlpha.html#ad8d00f7d60424d8bc45b729dc22605d7">CEGUI::DragContainerProperties::DragAlpha</a>, <a class="el" href="classCEGUI_1_1DragContainerProperties_1_1DragThreshold.html#abf9ccd5cec68b2d7b2aaccd7b0a3d074">CEGUI::DragContainerProperties::DragThreshold</a>, <a class="el" href="classCEGUI_1_1DragContainerProperties_1_1DragCursorImage.html#ac4ec8de648336e66a8ca04e0032ca1f9">CEGUI::DragContainerProperties::DragCursorImage</a>, <a class="el" href="classCEGUI_1_1DragContainerProperties_1_1StickyMode.html#a514923b156d37c9e055c078ce4e2b479">CEGUI::DragContainerProperties::StickyMode</a>, <a class="el" href="classCEGUI_1_1DragContainerProperties_1_1FixedDragOffset.html#ab5fecc864e768591fdccb88c47a6b96f">CEGUI::DragContainerProperties::FixedDragOffset</a>, <a class="el" href="classCEGUI_1_1DragContainerProperties_1_1UseFixedDragOffset.html#adc711efc2415c79ff564814f103c9eae">CEGUI::DragContainerProperties::UseFixedDragOffset</a>, <a class="el" href="classCEGUI_1_1EditboxProperties_1_1ReadOnly.html#a63c6853bd8fff48e23b2a92f58d34843">CEGUI::EditboxProperties::ReadOnly</a>, <a class="el" href="classCEGUI_1_1EditboxProperties_1_1MaskText.html#aaa14d6b1a50bda15bf83ed10c287806b">CEGUI::EditboxProperties::MaskText</a>, <a class="el" href="classCEGUI_1_1EditboxProperties_1_1MaskCodepoint.html#aed64fb92d515c61e90ded6bd29d0d683">CEGUI::EditboxProperties::MaskCodepoint</a>, <a class="el" href="classCEGUI_1_1EditboxProperties_1_1ValidationString.html#a7ba7f6b6178c9e32878488abaa675549">CEGUI::EditboxProperties::ValidationString</a>, <a class="el" href="classCEGUI_1_1EditboxProperties_1_1CaratIndex.html#a9e6d1ff5b2f106c21813b3dc4a394f5c">CEGUI::EditboxProperties::CaratIndex</a>, <a class="el" href="classCEGUI_1_1EditboxProperties_1_1SelectionStart.html#a3c1328c120cee2a4b93ac0d551b94444">CEGUI::EditboxProperties::SelectionStart</a>, <a class="el" href="classCEGUI_1_1EditboxProperties_1_1SelectionLength.html#ae3b86fcf7c8092bf4da0c2bd88c2bd03">CEGUI::EditboxProperties::SelectionLength</a>, <a class="el" href="classCEGUI_1_1EditboxProperties_1_1MaxTextLength.html#ab7d233c5abcf335eca851770fbb133ab">CEGUI::EditboxProperties::MaxTextLength</a>, <a class="el" href="classCEGUI_1_1EditboxProperties_1_1NormalTextColour.html#a2122697fb7646ffd031318c3bdc6868f">CEGUI::EditboxProperties::NormalTextColour</a>, <a class="el" href="classCEGUI_1_1EditboxProperties_1_1SelectedTextColour.html#ad371744291121ad98190bd932217fb12">CEGUI::EditboxProperties::SelectedTextColour</a>, <a class="el" href="classCEGUI_1_1EditboxProperties_1_1ActiveSelectionColour.html#aecd4fd0a9fef1eea562ee91d90e95abe">CEGUI::EditboxProperties::ActiveSelectionColour</a>, <a class="el" href="classCEGUI_1_1EditboxProperties_1_1InactiveSelectionColour.html#a0f65b065429ef6f39767d87b51e4d8d2">CEGUI::EditboxProperties::InactiveSelectionColour</a>, <a class="el" href="classCEGUI_1_1FrameWindowProperties_1_1SizingEnabled.html#a4e5868e55d59d0d303607de41a203664">CEGUI::FrameWindowProperties::SizingEnabled</a>, <a class="el" href="classCEGUI_1_1FrameWindowProperties_1_1FrameEnabled.html#a27319f8bcd11a0c273655f9c04cd0a91">CEGUI::FrameWindowProperties::FrameEnabled</a>, <a class="el" href="classCEGUI_1_1FrameWindowProperties_1_1TitlebarEnabled.html#ada52f3dd41335a606edaebd0b803fe47">CEGUI::FrameWindowProperties::TitlebarEnabled</a>, <a class="el" href="classCEGUI_1_1FrameWindowProperties_1_1CloseButtonEnabled.html#af44324e38692be2c0335bf2c1b1e8fc7">CEGUI::FrameWindowProperties::CloseButtonEnabled</a>, <a class="el" href="classCEGUI_1_1FrameWindowProperties_1_1RollUpEnabled.html#a325a5563838cbcdbd3ea3de95122249a">CEGUI::FrameWindowProperties::RollUpEnabled</a>, <a class="el" href="classCEGUI_1_1FrameWindowProperties_1_1RollUpState.html#a9ec06b4bea10ea7068885b8fd6221f98">CEGUI::FrameWindowProperties::RollUpState</a>, <a class="el" href="classCEGUI_1_1FrameWindowProperties_1_1DragMovingEnabled.html#aa4273d82f2ce9f909d5d8b5eba06b694">CEGUI::FrameWindowProperties::DragMovingEnabled</a>, <a class="el" href="classCEGUI_1_1FrameWindowProperties_1_1SizingBorderThickness.html#aec319f75fb69297ba26aa11a84a12c79">CEGUI::FrameWindowProperties::SizingBorderThickness</a>, <a class="el" href="classCEGUI_1_1FrameWindowProperties_1_1NSSizingCursorImage.html#a9288656a7a71a1b236e746b04926390c">CEGUI::FrameWindowProperties::NSSizingCursorImage</a>, <a class="el" href="classCEGUI_1_1FrameWindowProperties_1_1EWSizingCursorImage.html#a33348943fe799e8318634fcb57aa7759">CEGUI::FrameWindowProperties::EWSizingCursorImage</a>, <a class="el" href="classCEGUI_1_1FrameWindowProperties_1_1NWSESizingCursorImage.html#a29efe95a18fa147c18606c51b8d02d63">CEGUI::FrameWindowProperties::NWSESizingCursorImage</a>, <a class="el" href="classCEGUI_1_1FrameWindowProperties_1_1NESWSizingCursorImage.html#adf74a2b845809a48044e3b4a3b96f380">CEGUI::FrameWindowProperties::NESWSizingCursorImage</a>, <a class="el" href="classCEGUI_1_1GridLayoutContainerProperties_1_1GridSize.html#acfc46951445d32914c383eb9ea058cca">CEGUI::GridLayoutContainerProperties::GridSize</a>, <a class="el" href="classCEGUI_1_1GridLayoutContainerProperties_1_1AutoPositioning.html#a80a82f831119596a97596c4e81b6efb9">CEGUI::GridLayoutContainerProperties::AutoPositioning</a>, <a class="el" href="classCEGUI_1_1ItemEntryProperties_1_1Selectable.html#a543525b1d695709a5f96bdce2248949f">CEGUI::ItemEntryProperties::Selectable</a>, <a class="el" href="classCEGUI_1_1ItemEntryProperties_1_1Selected.html#a02ed42e18d43d63e748ec4508eebbb5b">CEGUI::ItemEntryProperties::Selected</a>, <a class="el" href="classCEGUI_1_1ItemListBaseProperties_1_1AutoResizeEnabled.html#a58fc73aa9a32e60779f01958becefb0b">CEGUI::ItemListBaseProperties::AutoResizeEnabled</a>, <a class="el" href="classCEGUI_1_1ItemListBaseProperties_1_1SortEnabled.html#a37a81c290c193b230b22097a8bda1e2b">CEGUI::ItemListBaseProperties::SortEnabled</a>, <a class="el" href="classCEGUI_1_1ItemListBaseProperties_1_1SortMode.html#a8f55fc61a595d0784bad46da8d208d52">CEGUI::ItemListBaseProperties::SortMode</a>, <a class="el" href="classCEGUI_1_1ItemListboxProperties_1_1MultiSelect.html#a6bdc6b45777520f474f5836a07a276f9">CEGUI::ItemListboxProperties::MultiSelect</a>, <a class="el" href="classCEGUI_1_1ListboxProperties_1_1Sort.html#aabf36f03e57265e0ff40f6ca28aba791">CEGUI::ListboxProperties::Sort</a>, <a class="el" href="classCEGUI_1_1ListboxProperties_1_1MultiSelect.html#a131483d404769d3d5ca79255e9bdf141">CEGUI::ListboxProperties::MultiSelect</a>, <a class="el" href="classCEGUI_1_1ListboxProperties_1_1ForceVertScrollbar.html#a096fc0fef199f811a37e18afde949c7b">CEGUI::ListboxProperties::ForceVertScrollbar</a>, <a class="el" href="classCEGUI_1_1ListboxProperties_1_1ForceHorzScrollbar.html#a1f209e47306e01456e64a0683d3e11ae">CEGUI::ListboxProperties::ForceHorzScrollbar</a>, <a class="el" href="classCEGUI_1_1ListboxProperties_1_1ItemTooltips.html#a79d92b3c27dd6a8b1421eedb169c2f69">CEGUI::ListboxProperties::ItemTooltips</a>, <a class="el" href="classCEGUI_1_1ListHeaderProperties_1_1ColumnsSizable.html#aef4334e3464c06604fad18198c6dcd85">CEGUI::ListHeaderProperties::ColumnsSizable</a>, <a class="el" href="classCEGUI_1_1ListHeaderProperties_1_1ColumnsMovable.html#ad0abc78528fe9d30f2eab691a215d123">CEGUI::ListHeaderProperties::ColumnsMovable</a>, <a class="el" href="classCEGUI_1_1ListHeaderProperties_1_1SortSettingEnabled.html#a16f86e5847bef4053f6ae0e5fd665a7e">CEGUI::ListHeaderProperties::SortSettingEnabled</a>, <a class="el" href="classCEGUI_1_1ListHeaderProperties_1_1SortDirection.html#a090a957197bb1951baf3fc8589a07a53">CEGUI::ListHeaderProperties::SortDirection</a>, <a class="el" href="classCEGUI_1_1ListHeaderProperties_1_1SortColumnID.html#ab31ceccb996fa202e1db2e6131de81e1">CEGUI::ListHeaderProperties::SortColumnID</a>, <a class="el" href="classCEGUI_1_1ListHeaderSegmentProperties_1_1Sizable.html#a4cfaa44b40e87d6c8972737faa4c5954">CEGUI::ListHeaderSegmentProperties::Sizable</a>, <a class="el" href="classCEGUI_1_1ListHeaderSegmentProperties_1_1Clickable.html#a2b9a879d274d46d44ce94dcc190f40d8">CEGUI::ListHeaderSegmentProperties::Clickable</a>, <a class="el" href="classCEGUI_1_1ListHeaderSegmentProperties_1_1Dragable.html#aa8a434e4d05d7af4d1d1045f3248fe09">CEGUI::ListHeaderSegmentProperties::Dragable</a>, <a class="el" href="classCEGUI_1_1ListHeaderSegmentProperties_1_1SortDirection.html#aa9a6d463ca7ef8581a61e07428298b01">CEGUI::ListHeaderSegmentProperties::SortDirection</a>, <a class="el" href="classCEGUI_1_1ListHeaderSegmentProperties_1_1SizingCursorImage.html#a63bab561f33eb44a9f6da7cc1d79d758">CEGUI::ListHeaderSegmentProperties::SizingCursorImage</a>, <a class="el" href="classCEGUI_1_1ListHeaderSegmentProperties_1_1MovingCursorImage.html#a67fe25388ae978505354338891be814d">CEGUI::ListHeaderSegmentProperties::MovingCursorImage</a>, <a class="el" href="classCEGUI_1_1MenuBaseProperties_1_1ItemSpacing.html#a4569e47b7cf0f964d87b7d35fa27e479">CEGUI::MenuBaseProperties::ItemSpacing</a>, <a class="el" href="classCEGUI_1_1MenuBaseProperties_1_1AllowMultiplePopups.html#ab1eb6f4b10e52e6f1d5f5ce102ab70c2">CEGUI::MenuBaseProperties::AllowMultiplePopups</a>, <a class="el" href="classCEGUI_1_1MenuBaseProperties_1_1AutoCloseNestedPopups.html#aa53c4ea30d73d45ff9cd349f0d8afa19">CEGUI::MenuBaseProperties::AutoCloseNestedPopups</a>, <a class="el" href="classCEGUI_1_1MenuItemProperties_1_1PopupOffset.html#ac48a562f76e5147b838bc6542b50000f">CEGUI::MenuItemProperties::PopupOffset</a>, <a class="el" href="classCEGUI_1_1MenuItemProperties_1_1AutoPopupTimeout.html#a5a006db60ad10a2450076cf7413d0e6d">CEGUI::MenuItemProperties::AutoPopupTimeout</a>, <a class="el" href="classCEGUI_1_1MultiColumnListProperties_1_1ColumnsSizable.html#ae2463f7b27daca65936bdb711a89e9d9">CEGUI::MultiColumnListProperties::ColumnsSizable</a>, <a class="el" href="classCEGUI_1_1MultiColumnListProperties_1_1ColumnsMovable.html#a1ca86134472f1136e11188f9d1adb7c1">CEGUI::MultiColumnListProperties::ColumnsMovable</a>, <a class="el" href="classCEGUI_1_1MultiColumnListProperties_1_1SortSettingEnabled.html#a107c919cdc2e6542e2b37627653d31c8">CEGUI::MultiColumnListProperties::SortSettingEnabled</a>, <a class="el" href="classCEGUI_1_1MultiColumnListProperties_1_1SortDirection.html#a4417efaf799638bf2cfdcf465453a158">CEGUI::MultiColumnListProperties::SortDirection</a>, <a class="el" href="classCEGUI_1_1MultiColumnListProperties_1_1SortColumnID.html#a8ead8228a13c508e8444f53e7fb94412">CEGUI::MultiColumnListProperties::SortColumnID</a>, <a class="el" href="classCEGUI_1_1MultiColumnListProperties_1_1NominatedSelectionColumnID.html#a648a82dd49abe0a9d4ef0bccdb930397">CEGUI::MultiColumnListProperties::NominatedSelectionColumnID</a>, <a class="el" href="classCEGUI_1_1MultiColumnListProperties_1_1NominatedSelectionRow.html#abbe8a64b70064834fef6702834222388">CEGUI::MultiColumnListProperties::NominatedSelectionRow</a>, <a class="el" href="classCEGUI_1_1MultiColumnListProperties_1_1ForceVertScrollbar.html#ab38a2cf9b41c968b185379c7d6387aa4">CEGUI::MultiColumnListProperties::ForceVertScrollbar</a>, <a class="el" href="classCEGUI_1_1MultiColumnListProperties_1_1ForceHorzScrollbar.html#aa0b6ee45264a53b871c3a62501ee587d">CEGUI::MultiColumnListProperties::ForceHorzScrollbar</a>, <a class="el" href="classCEGUI_1_1MultiColumnListProperties_1_1SelectionMode.html#a6e6ffcd236979f5f87ea9d38b843e799">CEGUI::MultiColumnListProperties::SelectionMode</a>, <a class="el" href="classCEGUI_1_1MultiColumnListProperties_1_1ColumnHeader.html#a75d95144d3284aa824f0da6104faa90c">CEGUI::MultiColumnListProperties::ColumnHeader</a>, <a class="el" href="classCEGUI_1_1MultiColumnListProperties_1_1RowCount.html#a52acf6cb99ff8727346dd27049d6d57f">CEGUI::MultiColumnListProperties::RowCount</a>, <a class="el" href="classCEGUI_1_1MultiLineEditboxProperties_1_1ReadOnly.html#af1bc2c1463947e281c6e9d3b5a760d34">CEGUI::MultiLineEditboxProperties::ReadOnly</a>, <a class="el" href="classCEGUI_1_1MultiLineEditboxProperties_1_1WordWrap.html#a71e96dcc1d99e1d94d1bf54fb195107b">CEGUI::MultiLineEditboxProperties::WordWrap</a>, <a class="el" href="classCEGUI_1_1MultiLineEditboxProperties_1_1CaratIndex.html#a23e227dde14fe4a0259c352c9c20ac27">CEGUI::MultiLineEditboxProperties::CaratIndex</a>, <a class="el" href="classCEGUI_1_1MultiLineEditboxProperties_1_1SelectionStart.html#ac9762f6b54ffd51620c6998c72d3427f">CEGUI::MultiLineEditboxProperties::SelectionStart</a>, <a class="el" href="classCEGUI_1_1MultiLineEditboxProperties_1_1SelectionLength.html#aba5c4f01be5fd7297c605a6d20124826">CEGUI::MultiLineEditboxProperties::SelectionLength</a>, <a class="el" href="classCEGUI_1_1MultiLineEditboxProperties_1_1MaxTextLength.html#acc80c538e51983466443dc4adbe8f38a">CEGUI::MultiLineEditboxProperties::MaxTextLength</a>, <a class="el" href="classCEGUI_1_1MultiLineEditboxProperties_1_1SelectionBrushImage.html#ac0470962bc41d332e89c4f6b78e9bf11">CEGUI::MultiLineEditboxProperties::SelectionBrushImage</a>, <a class="el" href="classCEGUI_1_1MultiLineEditboxProperties_1_1ForceVertScrollbar.html#a11b22f0fb269134eab53db1f8200a4a2">CEGUI::MultiLineEditboxProperties::ForceVertScrollbar</a>, <a class="el" href="classCEGUI_1_1PopupMenuProperties_1_1FadeInTime.html#a63f0d81b30ba1c5bd486e7d7549a0bda">CEGUI::PopupMenuProperties::FadeInTime</a>, <a class="el" href="classCEGUI_1_1PopupMenuProperties_1_1FadeOutTime.html#a15cc9e6553e4dfbe80df5c32811ccc10">CEGUI::PopupMenuProperties::FadeOutTime</a>, <a class="el" href="classCEGUI_1_1ProgressBarProperties_1_1CurrentProgress.html#a800ba9fa2519bd54a6d18cb8ca7bf0b3">CEGUI::ProgressBarProperties::CurrentProgress</a>, <a class="el" href="classCEGUI_1_1ProgressBarProperties_1_1StepSize.html#a7d18c38dc8320fd75bc286a81128842f">CEGUI::ProgressBarProperties::StepSize</a>, <a class="el" href="classCEGUI_1_1RadioButtonProperties_1_1Selected.html#a7efb2d372f8e279e72bef03f2f315688">CEGUI::RadioButtonProperties::Selected</a>, <a class="el" href="classCEGUI_1_1RadioButtonProperties_1_1GroupID.html#a2c5cd22538e89d3b872052dea3ab410f">CEGUI::RadioButtonProperties::GroupID</a>, <a class="el" href="classCEGUI_1_1ScrollablePaneProperties_1_1ContentPaneAutoSized.html#ae2862d3abf7064b021679eae4793a18b">CEGUI::ScrollablePaneProperties::ContentPaneAutoSized</a>, <a class="el" href="classCEGUI_1_1ScrollablePaneProperties_1_1ContentArea.html#ab2a196fe21de169a239a4e7b64fb49de">CEGUI::ScrollablePaneProperties::ContentArea</a>, <a class="el" href="classCEGUI_1_1ScrollablePaneProperties_1_1ForceVertScrollbar.html#a022658c0643dabdcb1b273e3a40d314e">CEGUI::ScrollablePaneProperties::ForceVertScrollbar</a>, <a class="el" href="classCEGUI_1_1ScrollablePaneProperties_1_1ForceHorzScrollbar.html#a4527d6e7d85cc7a1b8e248147cca0d8a">CEGUI::ScrollablePaneProperties::ForceHorzScrollbar</a>, <a class="el" href="classCEGUI_1_1ScrollablePaneProperties_1_1HorzStepSize.html#a9b4654b500d3a64ee7f841e67f38b854">CEGUI::ScrollablePaneProperties::HorzStepSize</a>, <a class="el" href="classCEGUI_1_1ScrollablePaneProperties_1_1HorzOverlapSize.html#a957d6dfcc93b7a38552c0da029a83b89">CEGUI::ScrollablePaneProperties::HorzOverlapSize</a>, <a class="el" href="classCEGUI_1_1ScrollablePaneProperties_1_1HorzScrollPosition.html#a0ce824c269e5fc12bd0e84594a4a26ea">CEGUI::ScrollablePaneProperties::HorzScrollPosition</a>, <a class="el" href="classCEGUI_1_1ScrollablePaneProperties_1_1VertStepSize.html#a9d562aee8560c4e488ded331307f985d">CEGUI::ScrollablePaneProperties::VertStepSize</a>, <a class="el" href="classCEGUI_1_1ScrollablePaneProperties_1_1VertOverlapSize.html#adc5eb791a8160637be6ac8d573020c02">CEGUI::ScrollablePaneProperties::VertOverlapSize</a>, <a class="el" href="classCEGUI_1_1ScrollablePaneProperties_1_1VertScrollPosition.html#a55591096fb6bb823fac7be6de3d559d8">CEGUI::ScrollablePaneProperties::VertScrollPosition</a>, <a class="el" href="classCEGUI_1_1ScrollbarProperties_1_1DocumentSize.html#a1da54293b5796902b117b8f345cd0cb4">CEGUI::ScrollbarProperties::DocumentSize</a>, <a class="el" href="classCEGUI_1_1ScrollbarProperties_1_1PageSize.html#a395b5c36697cd730f4f5f800784ae332">CEGUI::ScrollbarProperties::PageSize</a>, <a class="el" href="classCEGUI_1_1ScrollbarProperties_1_1StepSize.html#a708f1837af4d2ca0763bbd23116cfa2e">CEGUI::ScrollbarProperties::StepSize</a>, <a class="el" href="classCEGUI_1_1ScrollbarProperties_1_1OverlapSize.html#a05ebb8a190f3e46fbc915ff568f691ac">CEGUI::ScrollbarProperties::OverlapSize</a>, <a class="el" href="classCEGUI_1_1ScrollbarProperties_1_1ScrollPosition.html#aa8425690975b8735aa32d7f8dc9f82fe">CEGUI::ScrollbarProperties::ScrollPosition</a>, <a class="el" href="classCEGUI_1_1ScrollbarProperties_1_1EndLockEnabled.html#a9e4a929f33d26894ba0b64ecb69861ce">CEGUI::ScrollbarProperties::EndLockEnabled</a>, <a class="el" href="classCEGUI_1_1ScrolledContainerProperties_1_1ContentPaneAutoSized.html#ad893a2a2185ade68f701691d14cfe043">CEGUI::ScrolledContainerProperties::ContentPaneAutoSized</a>, <a class="el" href="classCEGUI_1_1ScrolledContainerProperties_1_1ContentArea.html#a60ef4a61ff02f2527af54e3f3a5f3778">CEGUI::ScrolledContainerProperties::ContentArea</a>, <a class="el" href="classCEGUI_1_1ScrolledContainerProperties_1_1ChildExtentsArea.html#a804331429d8d79a0dd3ca099acc21d3f">CEGUI::ScrolledContainerProperties::ChildExtentsArea</a>, <a class="el" href="classCEGUI_1_1ScrolledItemListBaseProperties_1_1ForceVertScrollbar.html#a38da3575f0bab0f687c8adc51042b012">CEGUI::ScrolledItemListBaseProperties::ForceVertScrollbar</a>, <a class="el" href="classCEGUI_1_1ScrolledItemListBaseProperties_1_1ForceHorzScrollbar.html#a07c65b3104e866aa90886cec699ad820">CEGUI::ScrolledItemListBaseProperties::ForceHorzScrollbar</a>, <a class="el" href="classCEGUI_1_1SliderProperties_1_1CurrentValue.html#a772eead51c31cf494889e75c8b88853f">CEGUI::SliderProperties::CurrentValue</a>, <a class="el" href="classCEGUI_1_1SliderProperties_1_1MaximumValue.html#a5c763dc574a0d3262b327641284b1d96">CEGUI::SliderProperties::MaximumValue</a>, <a class="el" href="classCEGUI_1_1SliderProperties_1_1ClickStepSize.html#a93da779584b3f444bdb1a120079305d6">CEGUI::SliderProperties::ClickStepSize</a>, <a class="el" href="classCEGUI_1_1SpinnerProperties_1_1CurrentValue.html#a2879859c55ea4d00c6b21e8b6e3cc237">CEGUI::SpinnerProperties::CurrentValue</a>, <a class="el" href="classCEGUI_1_1SpinnerProperties_1_1StepSize.html#aff4824832bc8b7069f91195e5a642f26">CEGUI::SpinnerProperties::StepSize</a>, <a class="el" href="classCEGUI_1_1SpinnerProperties_1_1MinimumValue.html#ac857ee50b6753a60de0159757ef8941a">CEGUI::SpinnerProperties::MinimumValue</a>, <a class="el" href="classCEGUI_1_1SpinnerProperties_1_1MaximumValue.html#a877bb5fdb77184e9f045babb04e48700">CEGUI::SpinnerProperties::MaximumValue</a>, <a class="el" href="classCEGUI_1_1SpinnerProperties_1_1TextInputMode.html#ada8ac22ce21766ddbbb2bea510e86206">CEGUI::SpinnerProperties::TextInputMode</a>, <a class="el" href="classCEGUI_1_1TabControlProperties_1_1TabHeight.html#aa6cafbf0749b099045b89ef4835a50c3">CEGUI::TabControlProperties::TabHeight</a>, <a class="el" href="classCEGUI_1_1TabControlProperties_1_1TabTextPadding.html#a73700a6293cd8715a820e6e923c5578e">CEGUI::TabControlProperties::TabTextPadding</a>, <a class="el" href="classCEGUI_1_1TabControlProperties_1_1TabPanePosition.html#a1616d3d8bcfc265306110473034862db">CEGUI::TabControlProperties::TabPanePosition</a>, <a class="el" href="classCEGUI_1_1ThumbProperties_1_1HotTracked.html#a0811de76331825bdd17339dae75f403f">CEGUI::ThumbProperties::HotTracked</a>, <a class="el" href="classCEGUI_1_1ThumbProperties_1_1VertFree.html#acef44ee452a6123dcc9912d0805da015">CEGUI::ThumbProperties::VertFree</a>, <a class="el" href="classCEGUI_1_1ThumbProperties_1_1HorzFree.html#a57c64dd361155517d5f2ed2237795290">CEGUI::ThumbProperties::HorzFree</a>, <a class="el" href="classCEGUI_1_1ThumbProperties_1_1VertRange.html#addb0e06cd3a370fef40ab157ed427869">CEGUI::ThumbProperties::VertRange</a>, <a class="el" href="classCEGUI_1_1ThumbProperties_1_1HorzRange.html#ad1f0d01f402ecc5d964f2b45be545f54">CEGUI::ThumbProperties::HorzRange</a>, <a class="el" href="classCEGUI_1_1TitlebarProperties_1_1DraggingEnabled.html#afb177ce662efc34f6b8ae975de5e50bd">CEGUI::TitlebarProperties::DraggingEnabled</a>, <a class="el" href="classCEGUI_1_1TooltipProperties_1_1HoverTime.html#a357cd029ebf4900a849f825211f7804c">CEGUI::TooltipProperties::HoverTime</a>, <a class="el" href="classCEGUI_1_1TooltipProperties_1_1DisplayTime.html#ac169e839f80bea8fc8be076d94479546">CEGUI::TooltipProperties::DisplayTime</a>, <a class="el" href="classCEGUI_1_1TooltipProperties_1_1FadeTime.html#ace2c1db28c45ebc82b004838e9e046ce">CEGUI::TooltipProperties::FadeTime</a>, <a class="el" href="classCEGUI_1_1TreeProperties_1_1Sort.html#a92bebac3a4d7ea491bb5a7b6956b9bb6">CEGUI::TreeProperties::Sort</a>, <a class="el" href="classCEGUI_1_1TreeProperties_1_1MultiSelect.html#a1ca2e5b3ecea8e3f1a713ae2da4b905c">CEGUI::TreeProperties::MultiSelect</a>, <a class="el" href="classCEGUI_1_1TreeProperties_1_1ForceVertScrollbar.html#a19c45ba222c5d45ddcd377ded515aba8">CEGUI::TreeProperties::ForceVertScrollbar</a>, <a class="el" href="classCEGUI_1_1TreeProperties_1_1ForceHorzScrollbar.html#a3c080676c9d0d92c5a28e5d073b25d4a">CEGUI::TreeProperties::ForceHorzScrollbar</a>, <a class="el" href="classCEGUI_1_1TreeProperties_1_1ItemTooltips.html#a3b95cd1a18bb431a9f047b01a5662c75">CEGUI::TreeProperties::ItemTooltips</a>, <a class="el" href="classCEGUI_1_1PropertyDefinition.html#a870491d68db036994660d77f16af3063">CEGUI::PropertyDefinition</a>, <a class="el" href="classCEGUI_1_1PropertyDefinitionBase.html#a1810c470e93435ffc3767cd7cb9d4f71">CEGUI::PropertyDefinitionBase</a>, <a class="el" href="classCEGUI_1_1PropertyLinkDefinition.html#acba8ffcaaed43976c7024e115045311c">CEGUI::PropertyLinkDefinition</a>, <a class="el" href="classCEGUI_1_1FalagardEditboxProperties_1_1BlinkCaret.html#a16ea9bdc13e7d2204ca380e57b119c29">CEGUI::FalagardEditboxProperties::BlinkCaret</a>, <a class="el" href="classCEGUI_1_1FalagardEditboxProperties_1_1BlinkCaretTimeout.html#a13bd96fd9a7a0bb427294ce4bf716c25">CEGUI::FalagardEditboxProperties::BlinkCaretTimeout</a>, <a class="el" href="classCEGUI_1_1FalagardEditboxProperties_1_1TextFormatting.html#ab9a661f69fedca02bcb89d4be44900fd">CEGUI::FalagardEditboxProperties::TextFormatting</a>, <a class="el" href="classCEGUI_1_1FalagardListHeaderProperties_1_1SegmentWidgetType.html#aa448f4791907bee1b9e71fb0ca888de2">CEGUI::FalagardListHeaderProperties::SegmentWidgetType</a>, <a class="el" href="classCEGUI_1_1FalagardMultiLineEditboxProperties_1_1BlinkCaret.html#a1ee7dbd748afe27fa0f96e2e0a98d018">CEGUI::FalagardMultiLineEditboxProperties::BlinkCaret</a>, <a class="el" href="classCEGUI_1_1FalagardMultiLineEditboxProperties_1_1BlinkCaretTimeout.html#a065885ab1574f94409bdde5a1f0c3f40">CEGUI::FalagardMultiLineEditboxProperties::BlinkCaretTimeout</a>, <a class="el" href="classCEGUI_1_1FalagardProgressBarProperties_1_1VerticalProgress.html#a6455c661169716cffee01bafb32d9ffe">CEGUI::FalagardProgressBarProperties::VerticalProgress</a>, <a class="el" href="classCEGUI_1_1FalagardProgressBarProperties_1_1ReversedProgress.html#a586a0ce932eac6b3f233acf5ba2d7dee">CEGUI::FalagardProgressBarProperties::ReversedProgress</a>, <a class="el" href="classCEGUI_1_1FalagardScrollbarProperties_1_1VerticalScrollbar.html#acea8071f3c22fd0a2f2c8fa58feb592b">CEGUI::FalagardScrollbarProperties::VerticalScrollbar</a>, <a class="el" href="classCEGUI_1_1FalagardSliderProperties_1_1VerticalSlider.html#ab95cbcc784313614f06a246548bcd43c">CEGUI::FalagardSliderProperties::VerticalSlider</a>, <a class="el" href="classCEGUI_1_1FalagardSliderProperties_1_1ReversedDirection.html#a120f1bdb870921379b9cfc6c8747d17c">CEGUI::FalagardSliderProperties::ReversedDirection</a>, <a class="el" href="classCEGUI_1_1FalagardStaticImageProperties_1_1Image.html#aa96b790afd8da2b1de969089d9bfaed1">CEGUI::FalagardStaticImageProperties::Image</a>, <a class="el" href="classCEGUI_1_1FalagardStaticProperties_1_1FrameEnabled.html#a61ac7d426dde31244cadc28cb6e3b35d">CEGUI::FalagardStaticProperties::FrameEnabled</a>, <a class="el" href="classCEGUI_1_1FalagardStaticProperties_1_1BackgroundEnabled.html#ac46b7f5f53711130563993fe4dbcbbbf">CEGUI::FalagardStaticProperties::BackgroundEnabled</a>, <a class="el" href="classCEGUI_1_1FalagardStaticTextProperties_1_1TextColours.html#a2bfab009dfcd860fb7c50f5388ec0499">CEGUI::FalagardStaticTextProperties::TextColours</a>, <a class="el" href="classCEGUI_1_1FalagardStaticTextProperties_1_1HorzFormatting.html#a5f82fcad398c7ed0745949e0f502019a">CEGUI::FalagardStaticTextProperties::HorzFormatting</a>, <a class="el" href="classCEGUI_1_1FalagardStaticTextProperties_1_1VertFormatting.html#a1fef0246bbfe254a81c543dc81f682eb">CEGUI::FalagardStaticTextProperties::VertFormatting</a>, <a class="el" href="classCEGUI_1_1FalagardStaticTextProperties_1_1VertScrollbar.html#a46a141b633b1c9b3751ba4677bcccbcc">CEGUI::FalagardStaticTextProperties::VertScrollbar</a>, <a class="el" href="classCEGUI_1_1FalagardStaticTextProperties_1_1HorzScrollbar.html#ac97341dfa13cbf672b9ab9c573adf019">CEGUI::FalagardStaticTextProperties::HorzScrollbar</a>, <a class="el" href="classCEGUI_1_1FalagardStaticTextProperties_1_1HorzExtent.html#a99a6773fa2fab50e9e134510c86b93b9">CEGUI::FalagardStaticTextProperties::HorzExtent</a>, <a class="el" href="classCEGUI_1_1FalagardStaticTextProperties_1_1VertExtent.html#adebc3f40aeaaa08e1d0ae6e20ea7ab5b">CEGUI::FalagardStaticTextProperties::VertExtent</a>, <a class="el" href="classCEGUI_1_1FalagardTabControlProperties_1_1TabButtonType.html#a4cbb279acf172d3d588a2888228c7c1a">CEGUI::FalagardTabControlProperties::TabButtonType</a>, and <a class="el" href="classCEGUI_1_1XercesParserProperties_1_1SchemaDefaultResourceGroup.html#a44c565dc6bf3fdc4bad6b29b22496729">CEGUI::XercesParserProperties::SchemaDefaultResourceGroup</a>.</p>
</div>
</div>
<a class="anchor" id="a361af5c4d768b2a038d82e402ace5d02"></a><!-- doxytag: member="CEGUI::Property::writeXMLToStream" ref="a361af5c4d768b2a038d82e402ace5d02" args="(const PropertyReceiver *receiver, XMLSerializer &xml_stream) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual void CEGUI::Property::writeXMLToStream </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classCEGUI_1_1PropertyReceiver.html">PropertyReceiver</a> * </td>
<td class="paramname"><em>receiver</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="classCEGUI_1_1XMLSerializer.html">XMLSerializer</a> & </td>
<td class="paramname"><em>xml_stream</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td> const<code> [virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Writes out an XML representation of this class to the given stream. </p>
<dl class="note"><dt><b>Note:</b></dt><dd>This would normally have been implemented via XMLGenerator base class, but in this case we require the target <a class="el" href="classCEGUI_1_1PropertyReceiver.html" title="Dummy base class to ensure correct casting of receivers.">PropertyReceiver</a> in order to obtain the property value. </dd></dl>
<p>Reimplemented in <a class="el" href="classCEGUI_1_1WindowProperties_1_1WindowRenderer.html#a78762126d47511bfc50815331319bcdf">CEGUI::WindowProperties::WindowRenderer</a>, and <a class="el" href="classCEGUI_1_1WindowProperties_1_1LookNFeel.html#a9f91fba82657dfa2dbeb15dab20a53b7">CEGUI::WindowProperties::LookNFeel</a>.</p>
</div>
</div>
</div>
<hr class="footer"/><address class="footer"><small>Generated on Sun Jan 22 2012 16:07:41 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>
|