Scroggo | 2c8208f | 2011-06-15 16:49:08 +0000 | [diff] [blame] | 1 | /* |
epoger@google.com | ec3ed6a | 2011-07-28 14:26:00 +0000 | [diff] [blame] | 2 | * Copyright 2011 Skia |
Scroggo | 2c8208f | 2011-06-15 16:49:08 +0000 | [diff] [blame] | 3 | * |
epoger@google.com | ec3ed6a | 2011-07-28 14:26:00 +0000 | [diff] [blame] | 4 | * Use of this source code is governed by a BSD-style license that can be |
| 5 | * found in the LICENSE file. |
Scroggo | 2c8208f | 2011-06-15 16:49:08 +0000 | [diff] [blame] | 6 | */ |
| 7 | |
tfarina@chromium.org | f726a1c | 2012-09-29 12:40:30 +0000 | [diff] [blame] | 8 | #ifndef SampleApp_DEFINED |
| 9 | #define SampleApp_DEFINED |
epoger@google.com | ec3ed6a | 2011-07-28 14:26:00 +0000 | [diff] [blame] | 10 | |
tfarina@chromium.org | f726a1c | 2012-09-29 12:40:30 +0000 | [diff] [blame] | 11 | #include "SkOSMenu.h" |
Scroggo | 2c8208f | 2011-06-15 16:49:08 +0000 | [diff] [blame] | 12 | #include "SkPath.h" |
robertphillips@google.com | 84b18c7 | 2014-04-13 19:09:42 +0000 | [diff] [blame] | 13 | #include "SkPicture.h" |
robertphillips@google.com | 770963f | 2014-04-18 18:04:41 +0000 | [diff] [blame] | 14 | #include "SkPictureRecorder.h" |
Scroggo | 2c8208f | 2011-06-15 16:49:08 +0000 | [diff] [blame] | 15 | #include "SkScalar.h" |
reed | 54dc487 | 2016-09-13 08:09:45 -0700 | [diff] [blame] | 16 | #include "SkStream.h" |
jvanverth | 38c7215 | 2016-10-10 07:39:38 -0700 | [diff] [blame] | 17 | #include "SkSurface.h" |
Scroggo | 2c8208f | 2011-06-15 16:49:08 +0000 | [diff] [blame] | 18 | #include "SkTDArray.h" |
| 19 | #include "SkTouchGesture.h" |
| 20 | #include "SkWindow.h" |
jvanverth | 4d0d81a | 2015-08-11 11:07:07 -0700 | [diff] [blame] | 21 | #include "timer/Timer.h" |
Scroggo | 2c8208f | 2011-06-15 16:49:08 +0000 | [diff] [blame] | 22 | |
reed | 54dc487 | 2016-09-13 08:09:45 -0700 | [diff] [blame] | 23 | #include "SkPipe.h" |
| 24 | |
Scroggo | 2c8208f | 2011-06-15 16:49:08 +0000 | [diff] [blame] | 25 | class GrContext; |
reed@google.com | 29038ed | 2011-07-06 17:56:47 +0000 | [diff] [blame] | 26 | class GrRenderTarget; |
Scroggo | 2c8208f | 2011-06-15 16:49:08 +0000 | [diff] [blame] | 27 | |
Scroggo | 2c8208f | 2011-06-15 16:49:08 +0000 | [diff] [blame] | 28 | class SkCanvas; |
tfarina@chromium.org | f726a1c | 2012-09-29 12:40:30 +0000 | [diff] [blame] | 29 | class SkData; |
reed | ddb5eca | 2014-10-08 11:10:51 -0700 | [diff] [blame] | 30 | class SkDocument; |
tfarina@chromium.org | f726a1c | 2012-09-29 12:40:30 +0000 | [diff] [blame] | 31 | class SkEvent; |
Scroggo | 2c8208f | 2011-06-15 16:49:08 +0000 | [diff] [blame] | 32 | class SkTypeface; |
tfarina@chromium.org | f726a1c | 2012-09-29 12:40:30 +0000 | [diff] [blame] | 33 | class SkViewFactory; |
Scroggo | 2c8208f | 2011-06-15 16:49:08 +0000 | [diff] [blame] | 34 | |
Scroggo | 2c8208f | 2011-06-15 16:49:08 +0000 | [diff] [blame] | 35 | class SampleWindow : public SkOSWindow { |
bsalomon@google.com | 48dd1a2 | 2011-10-31 14:18:20 +0000 | [diff] [blame] | 36 | SkTDArray<const SkViewFactory*> fSamples; |
Scroggo | 2c8208f | 2011-06-15 16:49:08 +0000 | [diff] [blame] | 37 | public: |
bsalomon@google.com | 098e96d | 2011-07-14 14:30:46 +0000 | [diff] [blame] | 38 | enum DeviceType { |
| 39 | kRaster_DeviceType, |
bsalomon@google.com | cf8fb1f | 2012-08-02 14:03:32 +0000 | [diff] [blame] | 40 | #if SK_SUPPORT_GPU |
bsalomon@google.com | 7491372 | 2011-10-27 20:44:19 +0000 | [diff] [blame] | 41 | kGPU_DeviceType, |
robertphillips@google.com | b442a6d | 2012-04-02 19:24:21 +0000 | [diff] [blame] | 42 | #if SK_ANGLE |
| 43 | kANGLE_DeviceType, |
bsalomon@google.com | cf8fb1f | 2012-08-02 14:03:32 +0000 | [diff] [blame] | 44 | #endif // SK_ANGLE |
bsalomon@google.com | cf8fb1f | 2012-08-02 14:03:32 +0000 | [diff] [blame] | 45 | #endif // SK_SUPPORT_GPU |
bsalomon@google.com | cf8fb1f | 2012-08-02 14:03:32 +0000 | [diff] [blame] | 46 | kDeviceTypeCnt |
bsalomon@google.com | 098e96d | 2011-07-14 14:30:46 +0000 | [diff] [blame] | 47 | }; |
bsalomon@google.com | 82502e2 | 2013-01-24 20:47:18 +0000 | [diff] [blame] | 48 | |
| 49 | static bool IsGpuDeviceType(DeviceType devType) { |
| 50 | #if SK_SUPPORT_GPU |
| 51 | switch (devType) { |
| 52 | case kGPU_DeviceType: |
| 53 | #if SK_ANGLE |
| 54 | case kANGLE_DeviceType: |
| 55 | #endif // SK_ANGLE |
bsalomon@google.com | 82502e2 | 2013-01-24 20:47:18 +0000 | [diff] [blame] | 56 | return true; |
reed@google.com | 58c0aaa | 2013-01-24 22:09:06 +0000 | [diff] [blame] | 57 | default: |
| 58 | return false; |
bsalomon@google.com | 82502e2 | 2013-01-24 20:47:18 +0000 | [diff] [blame] | 59 | } |
| 60 | #endif // SK_SUPPORT_GPU |
| 61 | return false; |
| 62 | } |
| 63 | |
bsalomon@google.com | 098e96d | 2011-07-14 14:30:46 +0000 | [diff] [blame] | 64 | /** |
| 65 | * SampleApp ports can subclass this manager class if they want to: |
| 66 | * * filter the types of devices supported |
robertphillips@google.com | 1f2f338 | 2013-08-29 11:54:56 +0000 | [diff] [blame] | 67 | * * customize plugging of SkBaseDevice objects into an SkCanvas |
bsalomon@google.com | 098e96d | 2011-07-14 14:30:46 +0000 | [diff] [blame] | 68 | * * customize publishing the results of draw to the OS window |
| 69 | * * manage GrContext / GrRenderTarget lifetimes |
| 70 | */ |
| 71 | class DeviceManager : public SkRefCnt { |
| 72 | public: |
halcanary | 9d524f2 | 2016-03-29 09:03:52 -0700 | [diff] [blame] | 73 | |
robertphillips@google.com | a22e211 | 2012-08-16 14:58:06 +0000 | [diff] [blame] | 74 | |
brianosman | 2d1ee79 | 2016-05-05 12:24:31 -0700 | [diff] [blame] | 75 | virtual void setUpBackend(SampleWindow* win, int msaaSampleCount, bool deepColor) = 0; |
bsalomon@google.com | 098e96d | 2011-07-14 14:30:46 +0000 | [diff] [blame] | 76 | |
robertphillips@google.com | b442a6d | 2012-04-02 19:24:21 +0000 | [diff] [blame] | 77 | virtual void tearDownBackend(SampleWindow* win) = 0; |
bsalomon@google.com | 098e96d | 2011-07-14 14:30:46 +0000 | [diff] [blame] | 78 | |
| 79 | // called before drawing. should install correct device |
| 80 | // type on the canvas. Will skip drawing if returns false. |
robertphillips | ecf3dbe | 2016-07-28 15:17:34 -0700 | [diff] [blame] | 81 | virtual sk_sp<SkSurface> makeSurface(DeviceType dType, SampleWindow* win) = 0; |
bsalomon@google.com | 098e96d | 2011-07-14 14:30:46 +0000 | [diff] [blame] | 82 | |
| 83 | // called after drawing, should get the results onto the |
| 84 | // screen. |
| 85 | virtual void publishCanvas(DeviceType dType, |
| 86 | SkCanvas* canvas, |
| 87 | SampleWindow* win) = 0; |
| 88 | |
| 89 | // called when window changes size, guaranteed to be called |
| 90 | // at least once before first draw (after init) |
| 91 | virtual void windowSizeChanged(SampleWindow* win) = 0; |
| 92 | |
halcanary | 96fcdcc | 2015-08-27 07:41:13 -0700 | [diff] [blame] | 93 | // return the GrContext backing gpu devices (nullptr if not built with GPU support) |
robertphillips@google.com | b442a6d | 2012-04-02 19:24:21 +0000 | [diff] [blame] | 94 | virtual GrContext* getGrContext() = 0; |
bsalomon@google.com | 1195925 | 2012-04-06 20:13:38 +0000 | [diff] [blame] | 95 | |
halcanary | 96fcdcc | 2015-08-27 07:41:13 -0700 | [diff] [blame] | 96 | // return the GrRenderTarget backing gpu devices (nullptr if not built with GPU support) |
robertphillips | ecf3dbe | 2016-07-28 15:17:34 -0700 | [diff] [blame] | 97 | virtual int numColorSamples() const = 0; |
brianosman | 2d1ee79 | 2016-05-05 12:24:31 -0700 | [diff] [blame] | 98 | |
| 99 | // return the color depth of the output device |
| 100 | virtual int getColorBits() = 0; |
| 101 | |
robertphillips@google.com | a22e211 | 2012-08-16 14:58:06 +0000 | [diff] [blame] | 102 | private: |
| 103 | typedef SkRefCnt INHERITED; |
bsalomon@google.com | 098e96d | 2011-07-14 14:30:46 +0000 | [diff] [blame] | 104 | }; |
| 105 | |
| 106 | SampleWindow(void* hwnd, int argc, char** argv, DeviceManager*); |
Scroggo | 2c8208f | 2011-06-15 16:49:08 +0000 | [diff] [blame] | 107 | virtual ~SampleWindow(); |
| 108 | |
robertphillips | ecf3dbe | 2016-07-28 15:17:34 -0700 | [diff] [blame] | 109 | sk_sp<SkSurface> makeSurface() override { |
| 110 | sk_sp<SkSurface> surface; |
reed@google.com | 5957f47 | 2012-10-01 20:31:56 +0000 | [diff] [blame] | 111 | if (fDevManager) { |
robertphillips | ecf3dbe | 2016-07-28 15:17:34 -0700 | [diff] [blame] | 112 | surface = fDevManager->makeSurface(fDeviceType, this); |
reed@google.com | 5957f47 | 2012-10-01 20:31:56 +0000 | [diff] [blame] | 113 | } |
robertphillips | ecf3dbe | 2016-07-28 15:17:34 -0700 | [diff] [blame] | 114 | if (!surface) { |
| 115 | surface = this->INHERITED::makeSurface(); |
reed@google.com | 5957f47 | 2012-10-01 20:31:56 +0000 | [diff] [blame] | 116 | } |
reed | 0397e9f | 2014-09-18 11:29:01 -0700 | [diff] [blame] | 117 | return surface; |
reed@google.com | 5957f47 | 2012-10-01 20:31:56 +0000 | [diff] [blame] | 118 | } |
| 119 | |
mtklein | 36352bf | 2015-03-25 18:17:31 -0700 | [diff] [blame] | 120 | void draw(SkCanvas*) override; |
Scroggo | 2c8208f | 2011-06-15 16:49:08 +0000 | [diff] [blame] | 121 | |
yangsu@google.com | 921091f | 2011-08-02 13:39:12 +0000 | [diff] [blame] | 122 | void setDeviceType(DeviceType type); |
brianosman | b109b8c | 2016-06-16 13:03:24 -0700 | [diff] [blame] | 123 | void setDeviceColorType(SkColorType, sk_sp<SkColorSpace>); |
Scroggo | 2c8208f | 2011-06-15 16:49:08 +0000 | [diff] [blame] | 124 | void toggleRendering(); |
| 125 | void toggleSlideshow(); |
| 126 | void toggleFPS(); |
yangsu@google.com | db03eaa | 2011-08-08 15:37:23 +0000 | [diff] [blame] | 127 | void showOverview(); |
reed | 4302ae9 | 2014-10-06 12:29:56 -0700 | [diff] [blame] | 128 | void toggleDistanceFieldFonts(); |
bungeman | 5a59a42 | 2016-03-31 08:30:38 -0700 | [diff] [blame] | 129 | void setPixelGeometry(int pixelGeometryIndex); |
bsalomon@google.com | 098e96d | 2011-07-14 14:30:46 +0000 | [diff] [blame] | 130 | |
robertphillips@google.com | b442a6d | 2012-04-02 19:24:21 +0000 | [diff] [blame] | 131 | GrContext* getGrContext() const { return fDevManager->getGrContext(); } |
bsalomon@google.com | 098e96d | 2011-07-14 14:30:46 +0000 | [diff] [blame] | 132 | |
Scroggo | 2c8208f | 2011-06-15 16:49:08 +0000 | [diff] [blame] | 133 | void setZoomCenter(float x, float y); |
| 134 | void changeZoomLevel(float delta); |
bungeman | ce56026 | 2016-03-03 13:32:38 -0800 | [diff] [blame] | 135 | void changeOffset(SkVector delta); |
Scroggo | 2c8208f | 2011-06-15 16:49:08 +0000 | [diff] [blame] | 136 | bool nextSample(); |
| 137 | bool previousSample(); |
yangsu@google.com | 501775e | 2011-06-24 16:04:50 +0000 | [diff] [blame] | 138 | bool goToSample(int i); |
| 139 | SkString getSampleTitle(int i); |
| 140 | int sampleCount(); |
Scroggo | a54e2f6 | 2011-06-17 12:46:17 +0000 | [diff] [blame] | 141 | bool handleTouch(int ownerId, float x, float y, |
| 142 | SkView::Click::State state); |
Scroggo | 8ac0d54 | 2011-06-21 14:44:57 +0000 | [diff] [blame] | 143 | void saveToPdf(); |
Scroggo | 62b65b0 | 2011-06-21 16:01:26 +0000 | [diff] [blame] | 144 | void postInvalDelay(); |
Scroggo | 2c8208f | 2011-06-15 16:49:08 +0000 | [diff] [blame] | 145 | |
robertphillips@google.com | b442a6d | 2012-04-02 19:24:21 +0000 | [diff] [blame] | 146 | DeviceType getDeviceType() const { return fDeviceType; } |
brianosman | 35a02a8 | 2016-09-29 14:37:02 -0700 | [diff] [blame] | 147 | int getColorConfigIndex() const { return fColorConfigIndex; } |
robertphillips@google.com | b442a6d | 2012-04-02 19:24:21 +0000 | [diff] [blame] | 148 | |
Scroggo | 2c8208f | 2011-06-15 16:49:08 +0000 | [diff] [blame] | 149 | protected: |
mtklein | 36352bf | 2015-03-25 18:17:31 -0700 | [diff] [blame] | 150 | void onDraw(SkCanvas* canvas) override; |
| 151 | bool onHandleKey(SkKey key) override; |
| 152 | bool onHandleChar(SkUnichar) override; |
| 153 | void onSizeChange() override; |
Scroggo | 2c8208f | 2011-06-15 16:49:08 +0000 | [diff] [blame] | 154 | |
mtklein | 36352bf | 2015-03-25 18:17:31 -0700 | [diff] [blame] | 155 | SkCanvas* beforeChildren(SkCanvas*) override; |
| 156 | void afterChildren(SkCanvas*) override; |
| 157 | void beforeChild(SkView* child, SkCanvas* canvas) override; |
Scroggo | 2c8208f | 2011-06-15 16:49:08 +0000 | [diff] [blame] | 158 | |
mtklein | 36352bf | 2015-03-25 18:17:31 -0700 | [diff] [blame] | 159 | bool onEvent(const SkEvent& evt) override; |
| 160 | bool onQuery(SkEvent* evt) override; |
Scroggo | 2c8208f | 2011-06-15 16:49:08 +0000 | [diff] [blame] | 161 | |
reed@google.com | 4d5c26d | 2013-01-08 16:17:50 +0000 | [diff] [blame] | 162 | virtual bool onDispatchClick(int x, int y, Click::State, void* owner, |
mtklein | 36352bf | 2015-03-25 18:17:31 -0700 | [diff] [blame] | 163 | unsigned modi) override; |
| 164 | bool onClick(Click* click) override; |
reed@google.com | 4d5c26d | 2013-01-08 16:17:50 +0000 | [diff] [blame] | 165 | virtual Click* onFindClickHandler(SkScalar x, SkScalar y, |
mtklein | 36352bf | 2015-03-25 18:17:31 -0700 | [diff] [blame] | 166 | unsigned modi) override; |
Scroggo | 2c8208f | 2011-06-15 16:49:08 +0000 | [diff] [blame] | 167 | |
| 168 | private: |
bsalomon@google.com | 098e96d | 2011-07-14 14:30:46 +0000 | [diff] [blame] | 169 | class DefaultDeviceManager; |
| 170 | |
Scroggo | 2c8208f | 2011-06-15 16:49:08 +0000 | [diff] [blame] | 171 | int fCurrIndex; |
| 172 | |
reed | 54dc487 | 2016-09-13 08:09:45 -0700 | [diff] [blame] | 173 | std::unique_ptr<SkDynamicMemoryWStream> fPipeStream; |
| 174 | SkPipeSerializer fPipeSerializer; |
| 175 | SkPipeDeserializer fPipeDeserializer; |
| 176 | |
robertphillips@google.com | 84b18c7 | 2014-04-13 19:09:42 +0000 | [diff] [blame] | 177 | SkPictureRecorder fRecorder; |
fmalita | 822ace9 | 2015-06-15 07:07:32 -0700 | [diff] [blame] | 178 | SkAutoTDelete<SkCanvas> fFlagsFilterCanvas; |
Scroggo | 2c8208f | 2011-06-15 16:49:08 +0000 | [diff] [blame] | 179 | SkPath fClipPath; |
| 180 | |
| 181 | SkTouchGesture fGesture; |
| 182 | SkScalar fZoomLevel; |
| 183 | SkScalar fZoomScale; |
bungeman | ce56026 | 2016-03-03 13:32:38 -0800 | [diff] [blame] | 184 | SkVector fOffset; |
Scroggo | 2c8208f | 2011-06-15 16:49:08 +0000 | [diff] [blame] | 185 | |
bsalomon@google.com | 098e96d | 2011-07-14 14:30:46 +0000 | [diff] [blame] | 186 | DeviceType fDeviceType; |
| 187 | DeviceManager* fDevManager; |
Scroggo | 2c8208f | 2011-06-15 16:49:08 +0000 | [diff] [blame] | 188 | |
Scroggo | 8ac0d54 | 2011-06-21 14:44:57 +0000 | [diff] [blame] | 189 | bool fSaveToPdf; |
reed | 093b4e8 | 2015-08-04 18:46:38 -0700 | [diff] [blame] | 190 | bool fSaveToSKP; |
halcanary | 676ab68 | 2016-05-03 12:10:04 -0700 | [diff] [blame] | 191 | sk_sp<SkDocument> fPDFDocument; |
Scroggo | 8ac0d54 | 2011-06-21 14:44:57 +0000 | [diff] [blame] | 192 | |
Scroggo | 2c8208f | 2011-06-15 16:49:08 +0000 | [diff] [blame] | 193 | bool fUseClip; |
reed | 91b4dfb | 2016-01-08 08:23:19 -0800 | [diff] [blame] | 194 | bool fUsePicture; |
Scroggo | 2c8208f | 2011-06-15 16:49:08 +0000 | [diff] [blame] | 195 | bool fAnimating; |
| 196 | bool fRotate; |
bsalomon@google.com | e8f0910 | 2011-09-08 18:48:12 +0000 | [diff] [blame] | 197 | bool fPerspAnim; |
Scroggo | 2c8208f | 2011-06-15 16:49:08 +0000 | [diff] [blame] | 198 | bool fRequestGrabImage; |
Scroggo | 2c8208f | 2011-06-15 16:49:08 +0000 | [diff] [blame] | 199 | bool fMeasureFPS; |
reed | babc3de | 2016-07-08 08:43:27 -0700 | [diff] [blame] | 200 | bool fUseDeferredCanvas; |
jvanverth | 4d0d81a | 2015-08-11 11:07:07 -0700 | [diff] [blame] | 201 | WallTimer fTimer; |
| 202 | double fMeasureFPS_Time; |
yangsu@google.com | db03eaa | 2011-08-08 15:37:23 +0000 | [diff] [blame] | 203 | bool fMagnify; |
commit-bot@chromium.org | cc63b32 | 2013-12-06 20:14:55 +0000 | [diff] [blame] | 204 | int fTilingMode; |
chudy@google.com | 4605a3f | 2012-08-01 17:58:01 +0000 | [diff] [blame] | 205 | |
Scroggo | 2c8208f | 2011-06-15 16:49:08 +0000 | [diff] [blame] | 206 | // The following are for the 'fatbits' drawing |
| 207 | // Latest position of the mouse. |
| 208 | int fMouseX, fMouseY; |
| 209 | int fFatBitsScale; |
| 210 | // Used by the text showing position and color values. |
bungeman | 13b9c95 | 2016-05-12 10:09:30 -0700 | [diff] [blame] | 211 | sk_sp<SkTypeface> fTypeface; |
Scroggo | 2c8208f | 2011-06-15 16:49:08 +0000 | [diff] [blame] | 212 | bool fShowZoomer; |
chudy@google.com | 4605a3f | 2012-08-01 17:58:01 +0000 | [diff] [blame] | 213 | |
yangsu@google.com | db03eaa | 2011-08-08 15:37:23 +0000 | [diff] [blame] | 214 | SkOSMenu::TriState fLCDState; |
| 215 | SkOSMenu::TriState fAAState; |
bungeman@google.com | 96aabc8 | 2013-06-03 21:26:34 +0000 | [diff] [blame] | 216 | SkOSMenu::TriState fSubpixelState; |
| 217 | int fHintingState; |
bungeman | 5a59a42 | 2016-03-31 08:30:38 -0700 | [diff] [blame] | 218 | int fPixelGeometryIndex; |
reed | 93a1215 | 2015-03-16 10:08:34 -0700 | [diff] [blame] | 219 | int fFilterQualityIndex; |
Scroggo | 2c8208f | 2011-06-15 16:49:08 +0000 | [diff] [blame] | 220 | unsigned fFlipAxis; |
| 221 | |
bsalomon@google.com | 1195925 | 2012-04-06 20:13:38 +0000 | [diff] [blame] | 222 | int fMSAASampleCount; |
brianosman | 2d1ee79 | 2016-05-05 12:24:31 -0700 | [diff] [blame] | 223 | bool fDeepColor; |
brianosman | 35a02a8 | 2016-09-29 14:37:02 -0700 | [diff] [blame] | 224 | int fColorConfigIndex; |
bsalomon@google.com | 1195925 | 2012-04-06 20:13:38 +0000 | [diff] [blame] | 225 | |
Scroggo | 2c8208f | 2011-06-15 16:49:08 +0000 | [diff] [blame] | 226 | SkScalar fZoomCenterX, fZoomCenterY; |
| 227 | |
yangsu@google.com | 921091f | 2011-08-02 13:39:12 +0000 | [diff] [blame] | 228 | //Stores global settings |
scroggo@google.com | 7dadc74 | 2012-04-18 14:07:57 +0000 | [diff] [blame] | 229 | SkOSMenu* fAppMenu; // We pass ownership to SkWindow, when we call addMenu |
yangsu@google.com | 921091f | 2011-08-02 13:39:12 +0000 | [diff] [blame] | 230 | //Stores slide specific settings |
scroggo@google.com | 7dadc74 | 2012-04-18 14:07:57 +0000 | [diff] [blame] | 231 | SkOSMenu* fSlideMenu; // We pass ownership to SkWindow, when we call addMenu |
| 232 | |
Scroggo | 2c8208f | 2011-06-15 16:49:08 +0000 | [diff] [blame] | 233 | void loadView(SkView*); |
| 234 | void updateTitle(); |
reed | ddb5eca | 2014-10-08 11:10:51 -0700 | [diff] [blame] | 235 | bool getRawTitle(SkString*); |
Scroggo | 2c8208f | 2011-06-15 16:49:08 +0000 | [diff] [blame] | 236 | |
Scroggo | 2c8208f | 2011-06-15 16:49:08 +0000 | [diff] [blame] | 237 | bool zoomIn(); |
| 238 | bool zoomOut(); |
| 239 | void updatePointer(int x, int y); |
yangsu@google.com | db03eaa | 2011-08-08 15:37:23 +0000 | [diff] [blame] | 240 | void magnify(SkCanvas* canvas); |
Scroggo | 2c8208f | 2011-06-15 16:49:08 +0000 | [diff] [blame] | 241 | void showZoomer(SkCanvas* canvas); |
reed@google.com | f03bb56 | 2011-11-11 21:42:12 +0000 | [diff] [blame] | 242 | void updateMatrix(); |
Scroggo | 2c8208f | 2011-06-15 16:49:08 +0000 | [diff] [blame] | 243 | void postAnimatingEvent(); |
mike@reedtribe.org | 6f6e8c3 | 2011-12-27 22:33:50 +0000 | [diff] [blame] | 244 | int findByTitle(const char*); |
robertphillips@google.com | 7265e72 | 2012-05-03 18:22:28 +0000 | [diff] [blame] | 245 | void listTitles(); |
commit-bot@chromium.org | bbe43a9 | 2013-12-10 21:51:06 +0000 | [diff] [blame] | 246 | SkSize tileSize() const; |
reed | d9adfe6 | 2015-02-01 19:01:04 -0800 | [diff] [blame] | 247 | bool sendAnimatePulse(); |
Scroggo | 2c8208f | 2011-06-15 16:49:08 +0000 | [diff] [blame] | 248 | |
Scroggo | 2c8208f | 2011-06-15 16:49:08 +0000 | [diff] [blame] | 249 | typedef SkOSWindow INHERITED; |
| 250 | }; |
| 251 | |
| 252 | #endif |