eliot/qt/prefs_dialog.h
Olivier Teulière 05a51101db New arbitration mode, dedicate to arbitration of duplicate games.
It is mostly working, but many things are still missing.
In particular:
 - ability to enter (or change) moves for a past turn
 - ability to change the rack (manually, or randomly)
 - ability to add/remove players during the game
 - support for solos, warnings, penalties
 - support for table number
 - more ergonomic interface
 - non regression tests
 - ... and probably bugs to fix
2012-03-10 18:06:41 +01:00

73 lines
2.1 KiB
C++

/*****************************************************************************
* Eliot
* Copyright (C) 2008-2009 Olivier Teulière
* 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"
#include "logging.h"
class QStringList;
class PrefsDialog: public QDialog, private Ui::PrefsDialog
{
Q_OBJECT;
DEFINE_LOGGER();
public:
explicit PrefsDialog(QWidget *iParent = 0);
static const QString kINTF_ALIGN_HISTORY;
static const QString kINTF_DIC_PATH;
static const QString kINTF_DEFINITIONS_SITE_URL;
static const QString kINTF_SHOW_TILES_POINTS;
static const QString kINTF_WARN_REPLAY_TURN;
static const QString kINTF_SHOW_TOOLBAR;
static const QString kINTF_LINK_TRAINING_7P1;
static const QString kINTF_DEFAULT_AI_LEVEL;
static const QString kINTF_TIMER_TOTAL_DURATION;
static const QString kINTF_TIMER_ALERT_DURATION;
static const QString kARBIT_AUTO_MASTER;
static const QString kARBIT_LINK_7P1;
static const QString kDEFAULT_DEF_SITE;
public slots:
/// Update the settings when the user selects "OK"
virtual void accept();
signals:
void prefsUpdated();
private slots:
void on_pushButtonIntfDicBrowse_clicked();
private:
void updateSettings();
};
#endif