Files
comaps/qt/qt_common/text_dialog.hpp
Konstantin Pastbin bfffa1fff4 Format all C++ and Java code via clang-format
Signed-off-by: Konstantin Pastbin <konstantin.pastbin@gmail.com>
2025-08-17 14:32:37 +07:00

16 lines
272 B
C++

#pragma once
#include <QtWidgets/QDialog>
/// A reusable dialog that shows text or HTML.
class TextDialog : public QDialog
{
Q_OBJECT
public:
TextDialog(QWidget * parent, QString const & htmlOrText, QString const & title = "");
private slots:
void OnClose();
};