mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-10 13:00:29 +03:00
a6538feed1
Use this to implement some of the toolbar actions in IRCClient. :^)
15 lines
270 B
C++
15 lines
270 B
C++
#pragma once
|
|
|
|
#include <LibGUI/GDialog.h>
|
|
|
|
class GMessageBox : public GDialog {
|
|
public:
|
|
explicit GMessageBox(const String& text, const String& title, GObject* parent = nullptr);
|
|
virtual ~GMessageBox() override;
|
|
|
|
private:
|
|
void build();
|
|
|
|
String m_text;
|
|
};
|