mirror of
https://github.com/DerKoun/bsnes-hd.git
synced 2025-04-02 10:52:49 -04:00
20 lines
426 B
C++
20 lines
426 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 setBackgroundColor(Color color) -> void;
|
|
auto setFont(const Font& font) -> void override;
|
|
auto setForegroundColor(Color color) -> void;
|
|
auto setText(const string& text) -> void;
|
|
|
|
QtLabel* qtLabel = nullptr;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|