mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
569ac25843
- removed some dependencies between other header files - removed many includes of <QtGui> and replaced it with only needed files git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@3312 b45a01b8-16f6-495d-af2f-9b41ad6348cc
80 lines
2.4 KiB
C++
Executable File
80 lines
2.4 KiB
C++
Executable File
/****************************************************************
|
|
* RetroShare is distributed under the following license:
|
|
*
|
|
* Copyright (C) 2009 The RetroShare Team, Oleksiy Bilyanskyy
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License
|
|
* as published by the Free Software Foundation; either version 2
|
|
* 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 General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
* Boston, MA 02110-1301, USA.
|
|
****************************************************************/
|
|
|
|
#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
|
|
|