GLazyWidget.cpp 306 B

1234567891011121314151617181920
  1. #include <LibGUI/GLazyWidget.h>
  2. GLazyWidget::GLazyWidget(GWidget* parent)
  3. : GWidget(parent)
  4. {
  5. }
  6. GLazyWidget::~GLazyWidget()
  7. {
  8. }
  9. void GLazyWidget::show_event(GShowEvent&)
  10. {
  11. if (m_has_been_shown)
  12. return;
  13. m_has_been_shown = true;
  14. ASSERT(on_first_show);
  15. on_first_show(*this);
  16. }