co-maps/qt/qt_common/text_dialog.hpp
2025-11-22 13:58:55 +01:00

15 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();
};