skia2/tools/sk_app/win/Window_win.h
Hal Canary 8a00144035 test,tools: whitespace changes for clang-format
Change-Id: I67529f6c0ac26da603f60af22c620f8f603d8a19
Reviewed-on: https://skia-review.googlesource.com/155564
Commit-Queue: Ben Wagner <bungeman@google.com>
Reviewed-by: Ben Wagner <bungeman@google.com>
Auto-Submit: Hal Canary <halcanary@google.com>
2018-09-19 17:50:51 +00:00

46 lines
800 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 "../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;
typedef Window INHERITED;
};
} // namespace sk_app
#endif