GUI editor now compiles again

git-svn-id: svn://svn.code.sf.net/p/irrlicht/code/trunk@2462 dfc29bdd-3216-0410-991c-e03cc46cb475
master
bitplane 2009-07-09 20:54:21 +00:00
parent 9f83642a95
commit 8607336edb
2 changed files with 11 additions and 0 deletions

View File

@ -41,6 +41,10 @@ namespace gui
virtual IGUIButton* getCloseButton() const;
virtual IGUIButton* getMinimizeButton() const;
virtual IGUIButton* getMaximizeButton() const;
virtual void setDrawBackground(bool draw) { }
virtual bool getDrawBackground() const { return true; }
virtual void setDrawTitlebar(bool draw) { }
virtual bool getDrawTitlebar() const { return true; }
CGUIAttributeEditor* getAttributeEditor() const;
CGUIAttributeEditor* getOptionEditor() const;

View File

@ -55,6 +55,13 @@ namespace gui
//! get draggable
virtual void setDraggable(bool draggable);
//! not used
virtual void setDrawBackground(bool draw) { }
virtual bool getDrawBackground() const { return true; }
virtual void setDrawTitlebar(bool draw) { }
virtual bool getDrawTitlebar() const { return true; }
void setSelected(s32 index=-1);
private: