aboutsummaryrefslogtreecommitdiff
path: root/lumina-fileinfo/dialog.h
diff options
context:
space:
mode:
authorwi <william.os4y@gmail.com>2015-04-17 15:04:05 +0200
committerwi <william.os4y@gmail.com>2015-04-17 15:04:05 +0200
commit23629784d15d669aea5bf71abfaf775931e2324f (patch)
treed678ae6fb130db68f7729a8cc4cebf8b2b2a89ab /lumina-fileinfo/dialog.h
parentMerge remote-tracking branch 'upstream/master' into deskEditor (diff)
downloadlumina-23629784d15d669aea5bf71abfaf775931e2324f.tar.gz
lumina-23629784d15d669aea5bf71abfaf775931e2324f.tar.bz2
lumina-23629784d15d669aea5bf71abfaf775931e2324f.zip
This is a complete adaptation of lumina-fileinfo.
The most important element is that during the loadDEsktopFile we check the content of the file. In case the file does not contains the mandatory elements (cfr http://standards.freedesktop.org/desktop-entry-spec/desktop-entry-spec-1.1.html) we reject it and ask the user to manually (via an anoter tool) correct it, or to restart from scratch.
Diffstat (limited to 'lumina-fileinfo/dialog.h')
-rw-r--r--lumina-fileinfo/dialog.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/lumina-fileinfo/dialog.h b/lumina-fileinfo/dialog.h
index 1dfbd64c..cfc9fde7 100644
--- a/lumina-fileinfo/dialog.h
+++ b/lumina-fileinfo/dialog.h
@@ -31,14 +31,12 @@ public:
private slots:
void on_pbCommand_clicked();
-
void on_pbWorkingDir_clicked();
-
void on_pbApply_clicked();
-
void on_pbIcon_clicked();
void textReplace(QString &origin, QString from, QString to, QString topic);
+ void copyTemplate(QString templateType);
void on_lName_textChanged(QString text);
void on_lComment_textChanged(QString text);
bgstack15