mirror of https://github.com/bsnes-emu/bsnes.git
18 lines
299 B
C++
Executable File
18 lines
299 B
C++
Executable File
#if defined(Hiro_Viewport)
|
|
|
|
namespace hiro {
|
|
|
|
struct pViewport : pWidget {
|
|
Declare(Viewport, Widget)
|
|
|
|
auto handle() const -> uintptr;
|
|
auto setFocusable(bool focusable) -> void override;
|
|
|
|
auto _onDraw(cairo_t* context) -> void;
|
|
auto _onExpose(GdkEventExpose* expose) -> void;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|