32 lines
582 B
C++
32 lines
582 B
C++
#ifndef APPLICATIONINFOWIDGET_H
|
|
#define APPLICATIONINFOWIDGET_H
|
|
|
|
#include <QWidget>
|
|
|
|
namespace Ui {
|
|
class ApplicationInfoWidget;
|
|
}
|
|
|
|
class ApplicationInfoWidget : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit ApplicationInfoWidget(QWidget *parent = nullptr);
|
|
~ApplicationInfoWidget();
|
|
|
|
void setTextData(const QString &exe,
|
|
const QString &path,
|
|
const QString &title);
|
|
|
|
void setTextData(const QString &name,
|
|
const QString &exe,
|
|
const QString &path,
|
|
const QString &title);
|
|
|
|
private:
|
|
Ui::ApplicationInfoWidget *ui;
|
|
};
|
|
|
|
#endif // APPLICATIONINFOWIDGET_H
|