sizable.cpp 338 B

12345678910111213141516171819202122232425
  1. #if defined(Hiro_Sizable)
  2. namespace hiro {
  3. auto pSizable::construct() -> void {
  4. }
  5. auto pSizable::destruct() -> void {
  6. }
  7. auto pSizable::minimumSize() const -> Size {
  8. return {0, 0};
  9. }
  10. auto pSizable::setCollapsible(bool collapsible) -> void {
  11. }
  12. auto pSizable::setGeometry(Geometry geometry) -> void {
  13. self().doSize();
  14. }
  15. }
  16. #endif