diff options
| author | Simon Robertshaw <simon@hardwired.org.uk> | 2012-02-01 18:45:59 (GMT) |
|---|---|---|
| committer | Simon Robertshaw <simon@hardwired.org.uk> | 2012-02-01 18:45:59 (GMT) |
| commit | 038da72c61ea6a251d805e2de3662f240da52b02 (patch) | |
| tree | 05170050b16f9d663ec44ae451211e686ba196ac /src/console/ConsoleView.h | |
| parent | 857b0cc1fc58f066acd59404d16ee5e566e20f00 (diff) | |
| download | powder-038da72c61ea6a251d805e2de3662f240da52b02.zip powder-038da72c61ea6a251d805e2de3662f240da52b02.tar.gz | |
Console UI, open in browser button, tab and enter shortcut for Login UI, various
Diffstat (limited to 'src/console/ConsoleView.h')
| -rw-r--r-- | src/console/ConsoleView.h | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/src/console/ConsoleView.h b/src/console/ConsoleView.h new file mode 100644 index 0000000..bb1a98e --- /dev/null +++ b/src/console/ConsoleView.h @@ -0,0 +1,37 @@ +/* + * ConsoleView.h + * + * Created on: Jan 31, 2012 + * Author: Simon + */ + +#ifndef CONSOLEVIEW_H_ +#define CONSOLEVIEW_H_ + +#include <vector> +#include <queue> +#include "interface/Label.h" +#include "interface/Window.h" +#include "ConsoleController.h" +#include "ConsoleModel.h" +#include "interface/Textbox.h" +#include "ConsoleCommand.h" + + +class ConsoleController; +class ConsoleModel; +class ConsoleView: public ui::Window { + ConsoleController * c; + ui::Textbox * commandField; + std::vector<ui::Label*> commandList; +public: + ConsoleView(); + virtual void OnDraw(); + virtual void OnKeyPress(int key, Uint16 character, bool shift, bool ctrl, bool alt); + void AttachController(ConsoleController * c_) { c = c_; } + void NotifyPreviousCommandsChanged(ConsoleModel * sender); + void NotifyCurrentCommandChanged(ConsoleModel * sender); + virtual ~ConsoleView(); +}; + +#endif /* CONSOLEVIEW_H_ */ |
