mirror of https://github.com/bsnes-emu/bsnes.git
18 lines
278 B
C++
18 lines
278 B
C++
|
#if defined(Hiro_Label)
|
||
|
|
||
|
namespace hiro {
|
||
|
|
||
|
struct pLabel : pWidget {
|
||
|
Declare(Label, Widget)
|
||
|
|
||
|
auto minimumSize() const -> Size override;
|
||
|
auto setAlignment(Alignment alignment) -> void;
|
||
|
auto setText(const string& text) -> void;
|
||
|
|
||
|
QLabel* qtLabel = nullptr;
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif
|