2008-01-20 19:40:12 +01:00
|
|
|
/*****************************************************************************
|
|
|
|
* Eliot
|
|
|
|
* Copyright (C) 2008 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 MAIN_WINDOW_H_
|
|
|
|
#define MAIN_WINDOW_H_
|
|
|
|
|
|
|
|
#include <QMainWindow>
|
|
|
|
|
|
|
|
#include <ui/main_window.ui.h>
|
|
|
|
|
|
|
|
|
|
|
|
class Dictionary;
|
|
|
|
class Bag;
|
|
|
|
class Board;
|
|
|
|
class History;
|
|
|
|
class Game;
|
|
|
|
class NewGame;
|
2008-01-25 19:42:59 +01:00
|
|
|
class PrefsDialog;
|
2008-01-20 19:40:12 +01:00
|
|
|
class AuxWindow;
|
|
|
|
|
|
|
|
class MainWindow: public QMainWindow
|
|
|
|
{
|
|
|
|
Q_OBJECT;
|
|
|
|
|
|
|
|
public:
|
|
|
|
MainWindow(QWidget *iParent = 0);
|
|
|
|
~MainWindow();
|
|
|
|
|
|
|
|
signals:
|
|
|
|
void dicChanged(QString iDicFile, QString iDicName);
|
|
|
|
void gameChanged(const Game *iGame);
|
2008-01-24 21:18:00 +01:00
|
|
|
void gameChangedNonConst(Game *iGame);
|
2008-01-22 16:30:20 +01:00
|
|
|
void gameUpdated();
|
2008-01-20 19:40:12 +01:00
|
|
|
|
|
|
|
public slots:
|
2008-01-25 19:42:59 +01:00
|
|
|
/// Display an error message to the user
|
|
|
|
void displayErrorMsg(QString iMsg, QString iContext = "");
|
2008-01-20 19:40:12 +01:00
|
|
|
|
|
|
|
private slots:
|
2008-01-26 11:10:50 +01:00
|
|
|
void on_action_GameNew_triggered();
|
|
|
|
void on_action_GameLoad_triggered();
|
|
|
|
void on_action_GameSaveAs_triggered();
|
|
|
|
void on_action_SettingsChooseDic_triggered();
|
|
|
|
void on_action_SettingsPreferences_triggered();
|
|
|
|
void on_action_WindowsBag_triggered();
|
|
|
|
void on_action_HelpAbout_triggered();
|
2008-01-20 19:40:12 +01:00
|
|
|
|
|
|
|
private:
|
|
|
|
/// Current dictionary
|
|
|
|
const Dictionary *m_dic;
|
|
|
|
|
|
|
|
/// Current game
|
|
|
|
Game *m_game;
|
|
|
|
|
|
|
|
/// The UI file generated with Qt Designer
|
|
|
|
Ui::MainWindow m_ui;
|
|
|
|
|
|
|
|
/// Dialog for creating a new game
|
2008-01-22 16:30:20 +01:00
|
|
|
NewGame *m_newGameDialog;
|
2008-01-20 19:40:12 +01:00
|
|
|
|
2008-01-25 19:42:59 +01:00
|
|
|
/// Dialog for the preferences
|
|
|
|
PrefsDialog *m_prefsDialog;
|
|
|
|
|
2008-01-20 19:40:12 +01:00
|
|
|
/// Bag window
|
|
|
|
AuxWindow *m_bagWindow;
|
2008-01-22 16:30:20 +01:00
|
|
|
|
|
|
|
/// Destroy the current game (if any) and the associated widgets
|
|
|
|
void destroyCurrentGame();
|
|
|
|
|
2008-01-20 19:40:12 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|