You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
229 lines
4.1 KiB
229 lines
4.1 KiB
/*
|
|
Copyright (C) 1999-2001 Jens Hoefkens
|
|
hoefkens@pilot.msu.edu
|
|
|
|
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.
|
|
|
|
$Id$
|
|
|
|
*/
|
|
|
|
#ifndef __KBG_H
|
|
#define __KBG_H
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include <config.h>
|
|
#endif
|
|
|
|
#include <tdemainwindow.h>
|
|
|
|
class TQSplitter;
|
|
class TQCheckBox;
|
|
class TQPopupMenu;
|
|
class TQLabel;
|
|
class TDEAction;
|
|
class TDESelectAction;
|
|
class KLineEdit;
|
|
class KDialogBase;
|
|
class KDoubleNumInput;
|
|
|
|
class KBgEngine;
|
|
class KBgTextView;
|
|
class KBgBoardSetup;
|
|
|
|
|
|
class KBg : public TDEMainWindow
|
|
{
|
|
Q_OBJECT
|
|
|
|
|
|
public:
|
|
|
|
/**
|
|
* Constructor creates the full main window
|
|
*/
|
|
KBg();
|
|
|
|
/**
|
|
* Destructor
|
|
*/
|
|
virtual ~KBg();
|
|
|
|
/**
|
|
* Read various settings from the configuration files or
|
|
* set some reasonable defaults
|
|
*/
|
|
void readConfig();
|
|
|
|
public slots:
|
|
|
|
/**
|
|
* Set the caption to KFIBS_NAME + string + pipcount (if requested by
|
|
* the user)
|
|
*/
|
|
void updateCaption(const TQString &s);
|
|
|
|
/**
|
|
* Slot to be called by the engine - it enables/disables buttons
|
|
* in the button bar
|
|
*/
|
|
void allowCommand(int cmd, bool f);
|
|
|
|
/**
|
|
* Sets the backgammon engine to type
|
|
*/
|
|
void setupEngine();
|
|
|
|
void startKCM(const TQString &);
|
|
|
|
signals:
|
|
|
|
/**
|
|
* Tell all listeners to write their settings to disk
|
|
*/
|
|
void saveSettings();
|
|
|
|
/**
|
|
* Tell all listeners to restore their settings or use reasonable
|
|
* defaults
|
|
*/
|
|
void readSettings();
|
|
|
|
protected:
|
|
|
|
/*
|
|
* Windows are to be hidden
|
|
*/
|
|
virtual void hideEvent(TQHideEvent *);
|
|
|
|
/*
|
|
* Redisplay the windows
|
|
*/
|
|
virtual void showEvent(TQShowEvent *);
|
|
|
|
/*
|
|
* Called before the window is closed. Check with the engine
|
|
* if that is okay.
|
|
*/
|
|
virtual bool queryClose();
|
|
|
|
protected slots:
|
|
|
|
/**
|
|
* Show the button bar - or not - depending on the corresponding action
|
|
*/
|
|
void toggleMenubar();
|
|
|
|
void configureToolbars();
|
|
void newToolbarConfig();
|
|
|
|
/**
|
|
* Starts the print dialog and asks the board to print itself
|
|
*/
|
|
void print();
|
|
|
|
void openNew();
|
|
|
|
/**
|
|
* Takes text from the commandline and hands it over to the
|
|
* current engine
|
|
*/
|
|
void handleCmd(const TQString &);
|
|
|
|
/**
|
|
* Saves the user settings to disk
|
|
*/
|
|
void saveConfig();
|
|
|
|
/**
|
|
* Slots for the respective actions - called by the button bar
|
|
* and some global key shortcuts
|
|
*/
|
|
void undo();
|
|
void redo();
|
|
void roll();
|
|
void cube();
|
|
void load();
|
|
void done();
|
|
|
|
/**
|
|
* Opens and displays the respective home pages
|
|
*/
|
|
void showWWW(int t);
|
|
|
|
void wwwFIBS();
|
|
void wwwRule();
|
|
|
|
/**
|
|
* Show the big setup dialog
|
|
*/
|
|
void setupDlg();
|
|
|
|
/**
|
|
* Save the settings
|
|
*/
|
|
void setupOk();
|
|
|
|
/**
|
|
* Delete the setup dialog
|
|
*/
|
|
void setupDone();
|
|
|
|
/**
|
|
* Load default values for user settings
|
|
*/
|
|
void setupDefault();
|
|
|
|
/**
|
|
* Undo the settings
|
|
*/
|
|
void setupCancel();
|
|
|
|
private:
|
|
TDEAction *newAction, *undoAction, *redoAction, *rollAction, *cubeAction, *endAction, *loadAction;
|
|
|
|
/*
|
|
* Each engine has its own identifier.
|
|
*/
|
|
enum Engines {None = -1, Offline, FIBS, GNUbg, NextGen, MaxEngine};
|
|
TQString engineString[MaxEngine];
|
|
KBgEngine *engine[MaxEngine];
|
|
int currEngine;
|
|
|
|
TQPopupMenu *dummyPopup;
|
|
enum HelpTopics {FIBSHome, RuleHome, MaxHelpTopic};
|
|
TQString helpTopic[MaxHelpTopic][2];
|
|
TDESelectAction *engineSet;
|
|
|
|
/**
|
|
* Notebook for the setup
|
|
*/
|
|
KDialogBase *nb;
|
|
KDoubleNumInput *sbt;
|
|
TQCheckBox *cbt, *cbs, *cbm;
|
|
|
|
/*
|
|
* UI elements
|
|
*/
|
|
TQSplitter *panner;
|
|
KBgBoardSetup *board;
|
|
KBgTextView *status;
|
|
KLineEdit *cmdLine;
|
|
TQLabel *cmdLabel;
|
|
TQString baseCaption; // for user friendly printing, we keep it around
|
|
};
|
|
|
|
#endif // __KBG_H
|