combo-button.hpp 331 B

12345678910111213141516171819
  1. #if defined(Hiro_ComboButton)
  2. namespace hiro {
  3. struct pComboButton : pWidget {
  4. Declare(ComboButton, Widget)
  5. auto append(sComboButtonItem item) -> void;
  6. auto minimumSize() const -> Size override;
  7. auto remove(sComboButtonItem item) -> void;
  8. auto reset() -> void;
  9. QtComboButton* qtComboButton = nullptr;
  10. };
  11. }
  12. #endif