From ed5ecf7ea7a482b4649e66ecb35fbc60af680684 Mon Sep 17 00:00:00 2001 From: Ken Moore Date: Mon, 25 Apr 2016 13:08:12 -0400 Subject: Rearrange the Lumina source tree quite a bit: Now the utilites are arranged by category (core, core-utils, desktop-utils), so all the -utils may be excluded by a package system (or turned into separate packages) as needed. --- lumina-open/LFileDialog.h | 75 ----------------------------------------------- 1 file changed, 75 deletions(-) delete mode 100644 lumina-open/LFileDialog.h (limited to 'lumina-open/LFileDialog.h') diff --git a/lumina-open/LFileDialog.h b/lumina-open/LFileDialog.h deleted file mode 100644 index 96016cf2..00000000 --- a/lumina-open/LFileDialog.h +++ /dev/null @@ -1,75 +0,0 @@ -//=========================================== -// Lumina-DE source code -// Copyright (c) 2013, Ken Moore -// Available under the 3-clause BSD license -// See the LICENSE file for full details -//=========================================== -#ifndef _LUMINA_OPEN_FILE_DIALOG_H -#define _LUMINA_OPEN_FILE_DIALOG_H - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - -#include //From libLuminaUtils -#include - -namespace Ui{ - class LFileDialog; -}; - -class LFileDialog : public QDialog{ - Q_OBJECT -public: - LFileDialog(QWidget *parent = 0); - ~LFileDialog(); - - //inputs - void setFileInfo(QString filename, QString extension, bool isFile = true); - - //outputs - bool appSelected, setDefault; - QString appExec; - QString appPath; - QString appFile; - - //static functions - static QString getDefaultApp(QString extension); - static void setDefaultApp(QString extension, QString appFile); - -private: - Ui::LFileDialog *ui; - QString fileEXT; - QSettings *settings; - QStringList PREFAPPS; - - //DB set/get - QStringList getPreferredApplications(); - void setPreferredApplication(QString); - - QString translateCat(QString); - -private slots: - void updateUI(); - void generateAppList(bool shownetwork = false); - //Internal UI slots - void radioChanged(); - //void on_group_binary_toggled(bool checked); - void on_tool_ok_clicked(); - void on_tool_cancel_clicked(); - void on_tool_findBin_clicked(); - void on_line_bin_textChanged(); - -}; - -#endif -- cgit