OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2006 The Android Open Source Project | 2 * Copyright 2006 The Android Open Source Project |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
5 * found in the LICENSE file. | 5 * found in the LICENSE file. |
6 */ | 6 */ |
7 | 7 |
8 #ifndef SkWindow_DEFINED | 8 #ifndef SkWindow_DEFINED |
9 #define SkWindow_DEFINED | 9 #define SkWindow_DEFINED |
10 | 10 |
(...skipping 64 matching lines...) Loading... |
75 void preConcat(const SkMatrix&); | 75 void preConcat(const SkMatrix&); |
76 void postConcat(const SkMatrix&); | 76 void postConcat(const SkMatrix&); |
77 | 77 |
78 virtual SkSurface* createSurface(); | 78 virtual SkSurface* createSurface(); |
79 | 79 |
80 virtual void onPDFSaved(const char title[], const char desc[], | 80 virtual void onPDFSaved(const char title[], const char desc[], |
81 const char path[]) {} | 81 const char path[]) {} |
82 | 82 |
83 virtual void setFullscreen(bool) {} | 83 virtual void setFullscreen(bool) {} |
84 virtual void setVsync(bool) {} | 84 virtual void setVsync(bool) {} |
| 85 virtual void closeWindow() {} |
85 | 86 |
86 protected: | 87 protected: |
87 virtual bool onEvent(const SkEvent&); | 88 virtual bool onEvent(const SkEvent&); |
88 virtual bool onDispatchClick(int x, int y, Click::State, void* owner, unsign
ed modi); | 89 virtual bool onDispatchClick(int x, int y, Click::State, void* owner, unsign
ed modi); |
89 // called if part of our bitmap is invalidated | 90 // called if part of our bitmap is invalidated |
90 virtual void onHandleInval(const SkIRect&); | 91 virtual void onHandleInval(const SkIRect&); |
91 virtual bool onHandleChar(SkUnichar); | 92 virtual bool onHandleChar(SkUnichar); |
92 virtual bool onHandleKey(SkKey); | 93 virtual bool onHandleKey(SkKey); |
93 virtual bool onHandleKeyUp(SkKey); | 94 virtual bool onHandleKeyUp(SkKey); |
94 virtual void onAddMenu(const SkOSMenu*) {}; | 95 virtual void onAddMenu(const SkOSMenu*) {}; |
(...skipping 39 matching lines...) Loading... |
134 #include "SkOSWindow_Android.h" | 135 #include "SkOSWindow_Android.h" |
135 #elif defined(SK_BUILD_FOR_UNIX) | 136 #elif defined(SK_BUILD_FOR_UNIX) |
136 #include "SkOSWindow_Unix.h" | 137 #include "SkOSWindow_Unix.h" |
137 #elif defined(SK_BUILD_FOR_SDL) | 138 #elif defined(SK_BUILD_FOR_SDL) |
138 #include "SkOSWindow_SDL.h" | 139 #include "SkOSWindow_SDL.h" |
139 #elif defined(SK_BUILD_FOR_IOS) | 140 #elif defined(SK_BUILD_FOR_IOS) |
140 #include "SkOSWindow_iOS.h" | 141 #include "SkOSWindow_iOS.h" |
141 #endif | 142 #endif |
142 | 143 |
143 #endif | 144 #endif |
OLD | NEW |