2008-01-25 19:42:59 +01:00
|
|
|
/*****************************************************************************
|
|
|
|
* Eliot
|
2009-01-24 18:44:56 +01:00
|
|
|
* Copyright (C) 2008-2009 Olivier Teulière
|
2008-01-25 19:42:59 +01:00
|
|
|
* Authors: Olivier Teulière <ipkiss @@ gmail.com>
|
|
|
|
*
|
|
|
|
* 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 St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef PREFS_DIALOG_H_
|
|
|
|
#define PREFS_DIALOG_H_
|
|
|
|
|
|
|
|
#include <QtGui/QDialog>
|
|
|
|
#include <QtCore/QString>
|
|
|
|
|
|
|
|
#include <ui/prefs_dialog.ui.h>
|
|
|
|
|
2011-07-28 22:55:48 +02:00
|
|
|
class QStringList;
|
|
|
|
|
2008-01-25 19:42:59 +01:00
|
|
|
|
|
|
|
class PrefsDialog: public QDialog, private Ui::PrefsDialog
|
|
|
|
{
|
|
|
|
Q_OBJECT;
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit PrefsDialog(QWidget *iParent = 0);
|
|
|
|
|
|
|
|
static const QString kINTF_ALIGN_HISTORY;
|
2008-01-26 17:58:46 +01:00
|
|
|
static const QString kINTF_DIC_PATH;
|
2011-07-28 22:55:48 +02:00
|
|
|
static const QString kINTF_DEFINITIONS_SITE_URL;
|
2009-01-04 18:39:27 +01:00
|
|
|
static const QString kINTF_SHOW_TILES_POINTS;
|
2008-12-08 22:37:02 +01:00
|
|
|
static const QString kINTF_WARN_REPLAY_TURN;
|
2008-12-08 22:38:12 +01:00
|
|
|
static const QString kINTF_SHOW_TOOLBAR;
|
2008-12-14 14:20:38 +01:00
|
|
|
static const QString kINTF_LINK_TRAINING_7P1;
|
2008-01-25 19:42:59 +01:00
|
|
|
|
2011-07-28 22:55:48 +02:00
|
|
|
static const QString kDEFAULT_DEF_SITE;
|
|
|
|
|
2008-01-25 19:42:59 +01:00
|
|
|
public slots:
|
|
|
|
/// Update the settings when the user selects "OK"
|
|
|
|
virtual void accept();
|
|
|
|
|
2008-01-26 17:58:46 +01:00
|
|
|
signals:
|
2008-12-14 14:20:38 +01:00
|
|
|
void prefsUpdated();
|
2008-01-26 17:58:46 +01:00
|
|
|
|
|
|
|
private slots:
|
|
|
|
void on_pushButtonIntfDicBrowse_clicked();
|
|
|
|
|
2008-01-25 19:42:59 +01:00
|
|
|
private:
|
|
|
|
void updateSettings();
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|