diff options
author | Weblate <noreply@weblate.org> | 2017-05-01 16:40:03 +0000 |
---|---|---|
committer | Weblate <noreply@weblate.org> | 2017-05-01 16:40:03 +0000 |
commit | fd5793fb74fdce76d6aa3a7bee07b920bd288ec8 (patch) | |
tree | 7d33244cda3809022669896d2587bfd315970a3f /src-qt5/desktop-utils/lumina-xdg-entry/mainwindow.h | |
parent | Translated using Weblate (lumina_DESKTOP@lt (generated)) (diff) | |
parent | link lumina-xdg-entry into desktop-utils.pro (diff) | |
download | lumina-fd5793fb74fdce76d6aa3a7bee07b920bd288ec8.tar.gz lumina-fd5793fb74fdce76d6aa3a7bee07b920bd288ec8.tar.bz2 lumina-fd5793fb74fdce76d6aa3a7bee07b920bd288ec8.zip |
Merge remote-tracking branch 'origin/master'
Diffstat (limited to 'src-qt5/desktop-utils/lumina-xdg-entry/mainwindow.h')
-rw-r--r-- | src-qt5/desktop-utils/lumina-xdg-entry/mainwindow.h | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/src-qt5/desktop-utils/lumina-xdg-entry/mainwindow.h b/src-qt5/desktop-utils/lumina-xdg-entry/mainwindow.h new file mode 100644 index 00000000..1aad8325 --- /dev/null +++ b/src-qt5/desktop-utils/lumina-xdg-entry/mainwindow.h @@ -0,0 +1,40 @@ +//=========================================== +// Copyright (c) 2017, q5sys (JT) +// Available under the MIT license +// See the LICENSE file for full details +//=========================================== + +#ifndef MAINWINDOW_H +#define MAINWINDOW_H + +#include <QMainWindow> + +namespace Ui { +class MainWindow; +} + +class MainWindow : public QMainWindow +{ + Q_OBJECT + +public: + explicit MainWindow(QWidget *parent = 0); + ~MainWindow(); + + QString name, genericname, comment, icon, executable, terminal, keywords, catList, categories, iconpath, execpath; + QString namefield, genericnamefield, commentfield, iconfield, terminalfield,execfield, categoriesfield, keywordfield; + +public slots: + void setIcon(); + void setExec(); + void setCategories(); + void setOtherValues(); + void setDesktopFields(); + void save(); + + +private: + Ui::MainWindow *ui; +}; + +#endif // MAINWINDOW_H |