mirror of https://github.com/bsnes-emu/bsnes.git
19 lines
265 B
C++
19 lines
265 B
C++
|
#if defined(Hiro_Viewport)
|
||
|
|
||
|
namespace hiro {
|
||
|
|
||
|
struct pViewport : pWidget {
|
||
|
Declare(Viewport, Widget)
|
||
|
|
||
|
auto handle() const -> uintptr_t;
|
||
|
auto setDroppable(bool droppable) -> void;
|
||
|
|
||
|
auto _setState() -> void;
|
||
|
|
||
|
QtViewport* qtViewport = nullptr;
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif
|