| 12345678910111213141516171819202122232425262728 |
- $#include "Console.h"
- class Console : public Object
- {
- void SetDefaultStyle(XMLFile* style);
- void SetVisible(bool enable);
- void Toggle();
- void SetNumRows(unsigned rows);
- void SetNumHistoryRows(unsigned rows);
- void UpdateElements();
-
- XMLFile* GetDefaultStyle() const;
- BorderImage* GetBackground() const;
- LineEdit* GetLineEdit() const;
- bool IsVisible() const;
- unsigned GetNumRows() const;
- unsigned GetNumHistoryRows() const;
- unsigned GetHistoryPosition() const;
- const String& GetHistoryRow(unsigned index) const;
-
- tolua_property__get_set XMLFile* defaultStyle;
- tolua_readonly tolua_property__get_set BorderImage* background;
- tolua_readonly tolua_property__get_set LineEdit* lineEdit;
- tolua_property__is_set bool visible;
- tolua_property__get_set unsigned numRows;
- tolua_property__get_set unsigned numHistoryRows;
- tolua_readonly tolua_property__get_set unsigned historyPosition;
- };
|