diff options
| author | Simon Robertshaw <simon@hardwired.org.uk> | 2012-01-21 22:48:37 (GMT) |
|---|---|---|
| committer | Simon Robertshaw <simon@hardwired.org.uk> | 2012-01-21 22:48:37 (GMT) |
| commit | dea70befcf770a767f1cbeecdd149930f6d4c0b8 (patch) | |
| tree | d7262fed954074b5f60b2a75307ff50c8038c25d /src/interface/Window.h | |
| parent | 984d39f8cc6e2fd54c1a1b4aa217334f04a5e479 (diff) | |
| download | powder-dea70befcf770a767f1cbeecdd149930f6d4c0b8.zip powder-dea70befcf770a767f1cbeecdd149930f6d4c0b8.tar.gz | |
Basic skeleton for save preview
Diffstat (limited to 'src/interface/Window.h')
| -rw-r--r-- | src/interface/Window.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/interface/Window.h b/src/interface/Window.h index 581b91f..4fc2b14 100644 --- a/src/interface/Window.h +++ b/src/interface/Window.h @@ -23,6 +23,9 @@ enum ChromeStyle class Window { public: + Point Position; + Point Size; + Window(Point _position, Point _size); virtual ~Window(); @@ -74,9 +77,6 @@ enum ChromeStyle virtual void OnKeyRelease(int key, bool shift, bool ctrl, bool alt) {} std::vector<Component*> Components; Component* focusedComponent_; - - Point Position; - Point Size; ChromeStyle chrome; }; |
