aad96ad1ca
Change-Id: Id154c3d0b51987d5154e9bcf000e3d4d539a7cdb Reviewed-on: https://skia-review.googlesource.com/c/skia/+/344916 Commit-Queue: Greg Daniel <egdaniel@google.com> Commit-Queue: Brian Osman <brianosman@google.com> Auto-Submit: Greg Daniel <egdaniel@google.com> Reviewed-by: Brian Osman <brianosman@google.com>
47 lines
859 B
C++
47 lines
859 B
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_win_DEFINED
|
|
#define Window_win_DEFINED
|
|
|
|
#include "tools/sk_app/Window.h"
|
|
|
|
#include <windows.h>
|
|
|
|
namespace sk_app {
|
|
|
|
class Window_win : public Window {
|
|
public:
|
|
Window_win() : Window() {}
|
|
~Window_win() override;
|
|
|
|
bool init(HINSTANCE instance);
|
|
|
|
void setTitle(const char*) override;
|
|
void show() override;
|
|
|
|
bool attach(BackendType) override;
|
|
|
|
void onInval() override;
|
|
|
|
void setRequestedDisplayParams(const DisplayParams&, bool allowReattach) override;
|
|
|
|
private:
|
|
void closeWindow();
|
|
|
|
HINSTANCE fHInstance;
|
|
HWND fHWnd;
|
|
BackendType fBackend;
|
|
bool fInitializedBackend = false;
|
|
|
|
using INHERITED = Window;
|
|
};
|
|
|
|
} // namespace sk_app
|
|
|
|
#endif
|