mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-01-06 05:08:09 -05:00
80 lines
3.0 KiB
C++
Executable File
80 lines
3.0 KiB
C++
Executable File
/*******************************************************************************
|
|
* gui/settings/AddFileAssociationDialog.h *
|
|
* *
|
|
* Copyright 2009, Retroshare Team <retroshare.project@gmail.com> *
|
|
* Copyright 2009, Oleksiy Bilyanskyy *
|
|
* *
|
|
* This program is free software: you can redistribute it and/or modify *
|
|
* it under the terms of the GNU Affero General Public License as *
|
|
* published by the Free Software Foundation, either version 3 of the *
|
|
* License, or (at your option) any later version. *
|
|
* *
|
|
* This program is distributed in the hope that it will be useful, *
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
|
* GNU Affero General Public License for more details. *
|
|
* *
|
|
* You should have received a copy of the GNU Affero General Public License *
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>. *
|
|
* *
|
|
*******************************************************************************/
|
|
|
|
#ifndef __AddFileAssociationDialog__
|
|
#define __AddFileAssociationDialog__
|
|
|
|
|
|
#include <QDialog>
|
|
|
|
class QPushButton;
|
|
class QDialogButtonBox;
|
|
|
|
class QLabel;
|
|
class QLineEdit;
|
|
|
|
//=============================================================================
|
|
//! A dialog for specifying file type and associated command
|
|
class AddFileAssociationDialog: public QDialog
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
//! constructor
|
|
|
|
//! if (onlyEdit == true), user woll not be able to change file type,
|
|
//! only command (used for editing existing commands)
|
|
AddFileAssociationDialog( bool onlyEdit = false, QWidget *parent = 0 ) ;
|
|
virtual ~AddFileAssociationDialog(){}
|
|
void setFileType(QString ft);
|
|
void setCommand(QString cmd);
|
|
|
|
//! Gets file type (file extension) from given filename (or other string)
|
|
|
|
//! "file type" has to be like '.png'(some symbols, prepended by a dot)
|
|
static QString cleanFileType(QString ft);
|
|
|
|
QString resultCommand();
|
|
QString resultFileType();
|
|
|
|
protected:
|
|
//QTabWidget *tabWidget;
|
|
QLabel* fileTypeLabel;
|
|
QLineEdit* fileTypeEdit;
|
|
QPushButton* loadSystemDefault;
|
|
QPushButton* selectExecutable;
|
|
QLabel* commandLabel;
|
|
QLineEdit* commandEdit;
|
|
QDialogButtonBox *buttonBox;
|
|
|
|
protected slots:
|
|
void fileTypeEdited(const QString & text );
|
|
|
|
//! On win32, loads default command from system registry.
|
|
|
|
//! Unfinished. Is not used in current version.
|
|
void loadSystemDefaultCommand();
|
|
|
|
|
|
};
|
|
|
|
#endif
|
|
|