578f064a60
BUG=skia: Change-Id: I0a24d5e6a4271f84ea5c82eb6d9ede9a1e63f86a Reviewed-on: https://skia-review.googlesource.com/8787 Reviewed-by: Brian Salomon <bsalomon@google.com> Commit-Queue: Chris Dalton <csmartdalton@google.com>
48 lines
1.1 KiB
C++
48 lines
1.1 KiB
C++
/*
|
|
* Copyright 2016 Google Inc.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
#ifndef Window_android_DEFINED
|
|
#define Window_android_DEFINED
|
|
|
|
#include "../Window.h"
|
|
#include "surface_glue_android.h"
|
|
|
|
namespace sk_app {
|
|
|
|
class Window_android : public Window {
|
|
public:
|
|
Window_android() : Window() {}
|
|
~Window_android() override {}
|
|
|
|
bool init(SkiaAndroidApp* skiaAndroidApp);
|
|
void initDisplay(ANativeWindow* window);
|
|
void onDisplayDestroyed();
|
|
|
|
void setTitle(const char*) override;
|
|
void show() override {}
|
|
|
|
bool attach(BackendType) override;
|
|
void onInval() override;
|
|
void setUIState(const Json::Value& state) override;
|
|
|
|
void paintIfNeeded();
|
|
|
|
bool scaleContentToFit() const override { return true; }
|
|
bool supportsContentRect() const override { return true; }
|
|
SkRect getContentRect() override { return fContentRect; }
|
|
void setContentRect(int l, int t, int r, int b) { fContentRect.set(l,t,r,b); }
|
|
|
|
private:
|
|
SkiaAndroidApp* fSkiaAndroidApp = nullptr;
|
|
SkRect fContentRect;
|
|
BackendType fBackendType;
|
|
};
|
|
|
|
} // namespace sk_app
|
|
|
|
#endif
|