[191] | 1 | /**********************************************************************
|
---|
| 2 | ** Copyright (C) 2000-2007 Trolltech ASA. All rights reserved.
|
---|
| 3 | **
|
---|
| 4 | ** This file is part of Qt Assistant.
|
---|
| 5 | **
|
---|
| 6 | ** This file may be distributed and/or modified under the terms of the
|
---|
| 7 | ** GNU General Public License version 2 as published by the Free Software
|
---|
| 8 | ** Foundation and appearing in the file LICENSE.GPL included in the
|
---|
| 9 | ** packaging of this file.
|
---|
| 10 | **
|
---|
| 11 | ** Licensees holding valid Qt Enterprise Edition or Qt Professional Edition
|
---|
| 12 | ** licenses may use this file in accordance with the Qt Commercial License
|
---|
| 13 | ** Agreement provided with the Software.
|
---|
| 14 | **
|
---|
| 15 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
|
---|
| 16 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
|
---|
| 17 | **
|
---|
| 18 | ** See http://www.trolltech.com/gpl/ for GPL licensing information.
|
---|
| 19 | ** See http://www.trolltech.com/pricing.html or email sales@trolltech.com for
|
---|
| 20 | ** information about Qt Commercial License Agreements.
|
---|
| 21 | **
|
---|
| 22 | ** Contact info@trolltech.com if any conditions of this licensing are
|
---|
| 23 | ** not clear to you.
|
---|
| 24 | **
|
---|
| 25 | **********************************************************************/
|
---|
| 26 |
|
---|
| 27 | #ifndef SETTINGSDIALOGIMPL_H
|
---|
| 28 | #define SETTINGSDIALOGIMPL_H
|
---|
| 29 |
|
---|
| 30 | #include "settingsdialog.h"
|
---|
| 31 |
|
---|
| 32 | #include <qstringlist.h>
|
---|
| 33 | #include <qptrlist.h>
|
---|
| 34 | #include <qlistview.h>
|
---|
| 35 |
|
---|
| 36 | class SettingsDialog : public SettingsDialogBase
|
---|
| 37 | {
|
---|
| 38 | Q_OBJECT
|
---|
| 39 |
|
---|
| 40 | public:
|
---|
| 41 | SettingsDialog( QWidget *parent, const char* name = 0 );
|
---|
| 42 |
|
---|
| 43 | protected slots:
|
---|
| 44 | void selectColor();
|
---|
| 45 | void browseWebApp();
|
---|
| 46 | void browsePDFApplication();
|
---|
| 47 | void browseHomepage();
|
---|
| 48 | void accept();
|
---|
| 49 | void reject();
|
---|
| 50 |
|
---|
| 51 | private:
|
---|
| 52 | void init();
|
---|
| 53 | void setFile( QLineEdit *le, const QString &caption );
|
---|
| 54 | };
|
---|
| 55 |
|
---|
| 56 | #endif
|
---|