| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2016 Google Inc. | 2 * Copyright 2016 Google Inc. |
| 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 Window_android_DEFINED | 8 #ifndef Window_android_DEFINED |
| 9 #define Window_android_DEFINED | 9 #define Window_android_DEFINED |
| 10 | 10 |
| 11 #include "../Window.h" | 11 #include "../Window.h" |
| 12 #include "surface_glue_android.h" | 12 #include "surface_glue_android.h" |
| 13 | 13 |
| 14 namespace sk_app { | 14 namespace sk_app { |
| 15 | 15 |
| 16 class Window_android : public Window { | 16 class Window_android : public Window { |
| 17 public: | 17 public: |
| 18 Window_android() : Window() {} | 18 Window_android() : Window() {} |
| 19 ~Window_android() override {} | 19 ~Window_android() override {} |
| 20 | 20 |
| 21 bool init(SkiaAndroidApp* skiaAndroidApp); | 21 bool init(SkiaAndroidApp* skiaAndroidApp); |
| 22 void initDisplay(ANativeWindow* window); | 22 void initDisplay(ANativeWindow* window); |
| 23 void onDisplayDestroyed(); | 23 void onDisplayDestroyed(); |
| 24 | 24 |
| 25 const DisplayParams& getDisplayParams() override; | 25 const DisplayParams& getDisplayParams() override; |
| 26 void setTitle(const char*) override; | 26 void setTitle(const char*) override; |
| 27 void show() override {} | 27 void show() override {} |
| 28 | 28 |
| 29 bool attach(BackendType attachType, const DisplayParams& params) override; | 29 bool attach(BackendType attachType, const DisplayParams& params) override; |
| 30 void inval() override; | 30 void onInval() override; |
| 31 |
| 32 void paintIfNeeded(); |
| 31 | 33 |
| 32 bool scaleContentToFit() const override { return true; } | 34 bool scaleContentToFit() const override { return true; } |
| 33 bool supportsContentRect() const override { return true; } | 35 bool supportsContentRect() const override { return true; } |
| 34 SkRect getContentRect() override { return fContentRect; } | 36 SkRect getContentRect() override { return fContentRect; } |
| 35 void setContentRect(int l, int t, int r, int b) { fContentRect.set(l,t,r,b);
} | 37 void setContentRect(int l, int t, int r, int b) { fContentRect.set(l,t,r,b);
} |
| 36 | 38 |
| 37 private: | 39 private: |
| 38 SkiaAndroidApp* fSkiaAndroidApp = nullptr; | 40 SkiaAndroidApp* fSkiaAndroidApp = nullptr; |
| 39 SkRect fContentRect; | 41 SkRect fContentRect; |
| 40 DisplayParams fDisplayParams; | 42 DisplayParams fDisplayParams; |
| 41 }; | 43 }; |
| 42 | 44 |
| 43 } // namespace sk_app | 45 } // namespace sk_app |
| 44 | 46 |
| 45 #endif | 47 #endif |
| OLD | NEW |