2020-01-18 09:38:21 +01:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
2022-02-26 10:50:04 -07:00
|
|
|
* Copyright (c) 2022, the SerenityOS developers.
|
2020-01-18 09:38:21 +01:00
|
|
|
*
|
2021-04-22 01:24:48 -07:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-01-18 09:38:21 +01:00
|
|
|
*/
|
|
|
|
|
|
2020-02-06 20:33:02 +01:00
|
|
|
#include <LibGUI/LazyWidget.h>
|
2019-10-02 20:24:29 +02:00
|
|
|
|
2022-03-18 23:28:06 +01:00
|
|
|
REGISTER_WIDGET(GUI, LazyWidget)
|
|
|
|
|
|
2020-02-02 15:07:41 +01:00
|
|
|
namespace GUI {
|
|
|
|
|
|
|
|
|
|
void LazyWidget::show_event(ShowEvent&)
|
2019-10-02 20:24:29 +02:00
|
|
|
{
|
|
|
|
|
if (m_has_been_shown)
|
|
|
|
|
return;
|
|
|
|
|
m_has_been_shown = true;
|
|
|
|
|
|
2021-02-23 20:42:32 +01:00
|
|
|
VERIFY(on_first_show);
|
2019-10-02 20:24:29 +02:00
|
|
|
on_first_show(*this);
|
|
|
|
|
}
|
2020-02-02 15:07:41 +01:00
|
|
|
|
|
|
|
|
}
|