mirror of
https://github.com/DerKoun/bsnes-hd.git
synced 2025-04-02 10:52:49 -04:00
20 lines
379 B
C++
20 lines
379 B
C++
#if defined(Hiro_TabFrame)
|
|
|
|
namespace hiro {
|
|
|
|
struct pTabFrame : pWidget {
|
|
Declare(TabFrame, Widget)
|
|
|
|
auto append(sTabFrameItem item) -> void;
|
|
auto remove(sTabFrameItem item) -> void;
|
|
auto setGeometry(Geometry geometry) -> void override;
|
|
auto setNavigation(Navigation navigation) -> void;
|
|
|
|
auto _setState() -> void;
|
|
|
|
QtTabFrame* qtTabFrame = nullptr;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|