2016-04-06 13:08:59 +00:00
|
|
|
/*
|
|
|
|
* 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 <windows.h>
|
|
|
|
#include "../Window.h"
|
|
|
|
|
2016-05-04 20:49:13 +00:00
|
|
|
namespace sk_app {
|
|
|
|
|
2016-04-06 13:08:59 +00:00
|
|
|
class Window_win : public Window {
|
|
|
|
public:
|
|
|
|
Window_win() : Window() {}
|
2016-07-27 21:29:18 +00:00
|
|
|
~Window_win() override { DestroyWindow(fHWnd); }
|
2016-04-06 13:08:59 +00:00
|
|
|
|
|
|
|
bool init(HINSTANCE instance);
|
|
|
|
|
|
|
|
void setTitle(const char*) override;
|
|
|
|
void show() override;
|
|
|
|
|
2016-05-20 13:01:06 +00:00
|
|
|
bool attach(BackendType attachType, const DisplayParams& params) override;
|
2016-04-06 13:08:59 +00:00
|
|
|
|
2016-05-23 17:52:34 +00:00
|
|
|
void onInval() override;
|
2016-04-08 19:51:45 +00:00
|
|
|
|
2016-04-06 13:08:59 +00:00
|
|
|
private:
|
|
|
|
HINSTANCE fHInstance;
|
|
|
|
HWND fHWnd;
|
|
|
|
};
|
|
|
|
|
2016-05-04 20:49:13 +00:00
|
|
|
} // namespace sk_app
|
|
|
|
|
2016-04-06 13:08:59 +00:00
|
|
|
#endif
|