Commit 8607336e authored by bitplane's avatar bitplane

GUI editor now compiles again

git-svn-id: svn://svn.code.sf.net/p/irrlicht/code/trunk@2462 dfc29bdd-3216-0410-991c-e03cc46cb475
parent 9f83642a
...@@ -41,6 +41,10 @@ namespace gui ...@@ -41,6 +41,10 @@ namespace gui
virtual IGUIButton* getCloseButton() const; virtual IGUIButton* getCloseButton() const;
virtual IGUIButton* getMinimizeButton() const; virtual IGUIButton* getMinimizeButton() const;
virtual IGUIButton* getMaximizeButton() 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* getAttributeEditor() const;
CGUIAttributeEditor* getOptionEditor() const; CGUIAttributeEditor* getOptionEditor() const;
......
...@@ -55,6 +55,13 @@ namespace gui ...@@ -55,6 +55,13 @@ namespace gui
//! get draggable //! get draggable
virtual void setDraggable(bool 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); void setSelected(s32 index=-1);
private: private:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment