You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
800 B
46 lines
800 B
/*
|
|
* 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
|