|
void | setSelectedObject (const MWWorld::Ptr &object) |
| Set the implicit object for script execution. More...
|
|
| Console (int w, int h, bool consoleOnlyScripts) |
|
virtual void | open () |
| Notify that window has been made visible. More...
|
|
virtual void | close () |
| Notify that window has been hidden. More...
|
|
virtual void | exit () |
| Gracefully exits the window. More...
|
|
void | setFont (const std::string &fntName) |
|
void | onResChange (int width, int height) |
|
void | print (const std::string &msg, const std::string &color="#FFFFFF") |
|
void | printOK (const std::string &msg) |
| Output from successful console command. More...
|
|
void | printError (const std::string &msg) |
| Error message. More...
|
|
void | execute (const std::string &command) |
|
void | executeFile (const std::string &path) |
|
virtual void | resetReference () |
|
| WindowBase (const std::string &parLayout) |
|
virtual void | setVisible (bool visible) |
| Sets the visibility of the window. More...
|
|
bool | isVisible () |
| Returns the visibility state of the window. More...
|
|
void | center () |
|
| Layout (const std::string &_layout, MyGUI::Widget *_parent=nullptr) |
|
virtual | ~Layout () |
|
MyGUI::Widget * | getWidget (const std::string &_name) |
|
template<typename T > |
void | getWidget (T *&_widget, const std::string &_name) |
|
void | setCoord (int x, int y, int w, int h) |
|
void | setText (const std::string &name, const std::string &caption) |
|
void | setTitle (const std::string &title) |
|
| ReferenceInterface () |
|
virtual | ~ReferenceInterface () |
|
void | checkReferenceAvailable () |
| closes the window, if the MW-reference has become unavailable More...
|
|
|
void | keyPress (MyGUI::Widget *_sender, MyGUI::KeyCode key, MyGUI::Char _char) |
|
void | acceptCommand (MyGUI::EditBox *_sender) |
|
std::string | complete (std::string input, std::vector< std::string > &matches) |
|
bool | compile (const std::string &cmd, Compiler::Output &output) |
|
virtual void | report (const std::string &message, const Compiler::TokenLoc &loc, Type type) |
| Report error to the user. More...
|
|
virtual void | report (const std::string &message, Type type) |
| Report a file related error. More...
|
|
void | listNames () |
|
Private Member Functions inherited from Compiler::ErrorHandler |
| ErrorHandler () |
| constructor More...
|
|
virtual | ~ErrorHandler () |
| destructor More...
|
|
bool | isGood () const |
| Was compiling successful? More...
|
|
int | countErrors () const |
| Return number of errors. More...
|
|
int | countWarnings () const |
| Return number of warnings. More...
|
|
void | warning (const std::string &message, const TokenLoc &loc) |
| Generate a warning message. More...
|
|
void | error (const std::string &message, const TokenLoc &loc) |
| Generate an error message. More...
|
|
void | endOfFile () |
| Generate an error message for an unexpected EOF. More...
|
|
virtual void | reset () |
| Remove all previous error/warning events. More...
|
|
void | setWarningsMode (int mode) |
| // 0 ignore, 1 rate as warning, 2 rate as error More...
|
|
void | downgradeErrors (bool downgrade) |
| Treat errors as warnings. More...
|
|