From 959831f4ef5a3e797f576c3de08cd65032c997ad Mon Sep 17 00:00:00 2001 From: David Walter Seikel Date: Sun, 13 Jan 2013 18:54:10 +1000 Subject: Remove damned ancient DOS line endings from Irrlicht. Hopefully I did not go overboard. --- .../tools/GUIEditor/CGUIBoolAttribute.h | 136 ++++++++++----------- 1 file changed, 68 insertions(+), 68 deletions(-) (limited to 'libraries/irrlicht-1.8/tools/GUIEditor/CGUIBoolAttribute.h') diff --git a/libraries/irrlicht-1.8/tools/GUIEditor/CGUIBoolAttribute.h b/libraries/irrlicht-1.8/tools/GUIEditor/CGUIBoolAttribute.h index b0521db..189bd2d 100644 --- a/libraries/irrlicht-1.8/tools/GUIEditor/CGUIBoolAttribute.h +++ b/libraries/irrlicht-1.8/tools/GUIEditor/CGUIBoolAttribute.h @@ -1,68 +1,68 @@ -#ifndef __C_GUI_BOOL_ATTRIBUTE_H_INCLUDED__ -#define __C_GUI_BOOL_ATTRIBUTE_H_INCLUDED__ - -#include "CGUIAttribute.h" -#include "IGUICheckBox.h" -#include "EGUIEditTypes.h" - -namespace irr -{ -namespace gui -{ - - class CGUIBoolAttribute : public CGUIAttribute - { - public: - // - CGUIBoolAttribute(IGUIEnvironment* environment, IGUIElement *parent, s32 myParentID) : - CGUIAttribute(environment, parent, myParentID), AttribCheckBox(0) - { - - core::rect r = getAbsolutePosition(); - core::rect r2(0, Environment->getSkin()->getFont()->getDimension(L"A").Height + 10, - r.getWidth() - 5, - Environment->getSkin()->getFont()->getDimension(L"A").Height*2 + 15 ); - - AttribCheckBox = environment->addCheckBox(false, r2, this); - AttribCheckBox->setAlignment(EGUIA_UPPERLEFT, EGUIA_LOWERRIGHT, EGUIA_UPPERLEFT, EGUIA_UPPERLEFT); - AttribCheckBox->setSubElement(true); - AttribCheckBox->grab(); - } - - virtual ~CGUIBoolAttribute() - { - if (AttribCheckBox) - AttribCheckBox->drop(); - } - - virtual void setAttrib(io::IAttributes *attribs, u32 attribIndex) - { - AttribCheckBox->setChecked(attribs->getAttributeAsBool(attribIndex)); - CGUIAttribute::setAttrib(attribs, attribIndex); - } - - // save the attribute and possibly post the event to its parent - virtual bool updateAttrib(bool sendEvent=true) - { - if (!Attribs) - return true; - - Attribs->setAttribute(Index, AttribCheckBox->isChecked()); - - return CGUIAttribute::updateAttrib(sendEvent); - } - - //! Returns the type name of the gui element. - virtual const c8* getTypeName() const - { - return GUIEditElementTypeNames[EGUIEDIT_BOOLATTRIBUTE]; - } - - private: - IGUICheckBox* AttribCheckBox; - }; - -} // namespace gui -} // namespace irr - -#endif +#ifndef __C_GUI_BOOL_ATTRIBUTE_H_INCLUDED__ +#define __C_GUI_BOOL_ATTRIBUTE_H_INCLUDED__ + +#include "CGUIAttribute.h" +#include "IGUICheckBox.h" +#include "EGUIEditTypes.h" + +namespace irr +{ +namespace gui +{ + + class CGUIBoolAttribute : public CGUIAttribute + { + public: + // + CGUIBoolAttribute(IGUIEnvironment* environment, IGUIElement *parent, s32 myParentID) : + CGUIAttribute(environment, parent, myParentID), AttribCheckBox(0) + { + + core::rect r = getAbsolutePosition(); + core::rect r2(0, Environment->getSkin()->getFont()->getDimension(L"A").Height + 10, + r.getWidth() - 5, + Environment->getSkin()->getFont()->getDimension(L"A").Height*2 + 15 ); + + AttribCheckBox = environment->addCheckBox(false, r2, this); + AttribCheckBox->setAlignment(EGUIA_UPPERLEFT, EGUIA_LOWERRIGHT, EGUIA_UPPERLEFT, EGUIA_UPPERLEFT); + AttribCheckBox->setSubElement(true); + AttribCheckBox->grab(); + } + + virtual ~CGUIBoolAttribute() + { + if (AttribCheckBox) + AttribCheckBox->drop(); + } + + virtual void setAttrib(io::IAttributes *attribs, u32 attribIndex) + { + AttribCheckBox->setChecked(attribs->getAttributeAsBool(attribIndex)); + CGUIAttribute::setAttrib(attribs, attribIndex); + } + + // save the attribute and possibly post the event to its parent + virtual bool updateAttrib(bool sendEvent=true) + { + if (!Attribs) + return true; + + Attribs->setAttribute(Index, AttribCheckBox->isChecked()); + + return CGUIAttribute::updateAttrib(sendEvent); + } + + //! Returns the type name of the gui element. + virtual const c8* getTypeName() const + { + return GUIEditElementTypeNames[EGUIEDIT_BOOLATTRIBUTE]; + } + + private: + IGUICheckBox* AttribCheckBox; + }; + +} // namespace gui +} // namespace irr + +#endif -- cgit v1.1