mirror of
https://github.com/InoriRus/Kyty.git
synced 2026-08-28 05:06:40 +00:00
add launcher
This commit is contained in:
@@ -0,0 +1,62 @@
|
||||
#ifndef CONFIGURATION_EDIT_DIALOG_H
|
||||
#define CONFIGURATION_EDIT_DIALOG_H
|
||||
|
||||
#include "Common.h"
|
||||
|
||||
#include <QDialog>
|
||||
#include <QProcess>
|
||||
#include <QString>
|
||||
class QByteArray;
|
||||
class QMoveEvent;
|
||||
class QSettings;
|
||||
class ConfigurationListWidget;
|
||||
|
||||
namespace Kyty {
|
||||
class Configuration;
|
||||
} // namespace Kyty
|
||||
|
||||
namespace Ui {
|
||||
class ConfigurationEditDialog;
|
||||
} // namespace Ui
|
||||
|
||||
class ConfigurationEditDialog: public QDialog
|
||||
{
|
||||
Q_OBJECT
|
||||
KYTY_QT_CLASS_NO_COPY(ConfigurationEditDialog);
|
||||
|
||||
public:
|
||||
explicit ConfigurationEditDialog(Kyty::Configuration* info, ConfigurationListWidget* parent = nullptr);
|
||||
~ConfigurationEditDialog() override;
|
||||
|
||||
static void WriteSettings(QSettings* s);
|
||||
static void ReadSettings(QSettings* s);
|
||||
|
||||
void SetTitle(const QString& str);
|
||||
|
||||
private:
|
||||
Ui::ConfigurationEditDialog* m_ui = nullptr;
|
||||
Kyty::Configuration* m_info = nullptr;
|
||||
QProcess m_process;
|
||||
ConfigurationListWidget* m_parent = nullptr;
|
||||
|
||||
protected:
|
||||
void Init();
|
||||
|
||||
void moveEvent(QMoveEvent* event) override;
|
||||
|
||||
static QString g_last_base_dir;
|
||||
static QByteArray g_last_geometry;
|
||||
|
||||
/*slots:*/
|
||||
|
||||
void update_info();
|
||||
void adjust_size();
|
||||
void save();
|
||||
void browse_base_path();
|
||||
void scan_elfs();
|
||||
void scan_libs();
|
||||
void clear();
|
||||
void test();
|
||||
};
|
||||
|
||||
#endif // CONFIGURATION_EDIT_DIALOG_H
|
||||
Reference in New Issue
Block a user