/
githubmirror
/
x64dbg
Обзор
Документация
Войти
/
githubmirror
/
x64dbg
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
development
src/gui/Src/Gui/ReleaseNotesDialog.h
27 строк
580 B
Duncan Ogilvie
Move ReleaseNotesDialog to x64dbg::widgets
18 авг 2025, 22:43
18 авг 2025, 22:43
5c84c52
Код
Авторство
О чём код?
#pragma once #include <QDialog> #include <functional> #include "ImageTextBrowser.h" namespace Ui { class ReleaseNotesDialog; } class ReleaseNotesDialog : public QDialog { Q_OBJECT public: explicit ReleaseNotesDialog(ImageTextBrowser::DownloadFn downloadFn, QWidget* parent = nullptr); ~ReleaseNotesDialog() override; bool setMarkdown(QString markdown, const QString & issueUrl); void setLabel(const QString & text); protected: void resizeEvent(QResizeEvent* event) override; private: Ui::ReleaseNotesDialog* ui; };