epoger@google.com | ec3ed6a | 2011-07-28 14:26:00 +0000 | [diff] [blame] | 1 | |
| 2 | /* |
| 3 | * Copyright 2011 Google Inc. |
| 4 | * |
| 5 | * Use of this source code is governed by a BSD-style license that can be |
| 6 | * found in the LICENSE file. |
| 7 | */ |
yangsu@google.com | 1a2b4c1 | 2011-06-24 17:20:50 +0000 | [diff] [blame] | 8 | #ifndef SkOSWindow_iOS_DEFINED |
| 9 | #define SkOSWindow_iOS_DEFINED |
| 10 | |
| 11 | #include "SkWindow.h" |
yangsu@google.com | e938b19 | 2011-08-02 13:23:15 +0000 | [diff] [blame] | 12 | |
yangsu@google.com | 1a2b4c1 | 2011-06-24 17:20:50 +0000 | [diff] [blame] | 13 | class SkOSWindow : public SkWindow { |
| 14 | public: |
| 15 | SkOSWindow(void* hwnd); |
| 16 | ~SkOSWindow(); |
| 17 | void* getHWND() const { return fHWND; } |
| 18 | |
robertphillips@google.com | b442a6d | 2012-04-02 19:24:21 +0000 | [diff] [blame] | 19 | enum SkBackEndTypes { |
| 20 | kNone_BackEndType, |
| 21 | kNativeGL_BackEndType, |
| 22 | }; |
| 23 | |
| 24 | void detach(); |
bsalomon@google.com | 1195925 | 2012-04-06 20:13:38 +0000 | [diff] [blame] | 25 | bool attach(SkBackEndTypes attachType, int msaaSampleCount); |
robertphillips@google.com | b442a6d | 2012-04-02 19:24:21 +0000 | [diff] [blame] | 26 | void present(); |
yangsu@google.com | 1a2b4c1 | 2011-06-24 17:20:50 +0000 | [diff] [blame] | 27 | |
| 28 | protected: |
| 29 | // overrides from SkEventSink |
| 30 | virtual bool onEvent(const SkEvent& evt); |
| 31 | // overrides from SkWindow |
| 32 | virtual void onHandleInval(const SkIRect&); |
| 33 | // overrides from SkView |
| 34 | virtual void onAddMenu(const SkOSMenu*); |
caryclark@google.com | 867cbd8 | 2012-09-20 15:45:41 +0000 | [diff] [blame] | 35 | virtual void onUpdateMenu(SkOSMenu*); |
yangsu@google.com | 1a2b4c1 | 2011-06-24 17:20:50 +0000 | [diff] [blame] | 36 | virtual void onSetTitle(const char[]); |
rmistry@google.com | fbfcd56 | 2012-08-23 18:09:54 +0000 | [diff] [blame] | 37 | |
yangsu@google.com | 1a2b4c1 | 2011-06-24 17:20:50 +0000 | [diff] [blame] | 38 | private: |
| 39 | void* fHWND; |
| 40 | bool fInvalEventIsPending; |
| 41 | void* fNotifier; |
| 42 | typedef SkWindow INHERITED; |
| 43 | }; |
| 44 | |
| 45 | #endif |