summaryrefslogtreecommitdiff
path: root/noncore/games/go/gowidget.h
Side-by-side diff
Diffstat (limited to 'noncore/games/go/gowidget.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/games/go/gowidget.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/noncore/games/go/gowidget.h b/noncore/games/go/gowidget.h
index 94de2cc..429dc33 100644
--- a/noncore/games/go/gowidget.h
+++ b/noncore/games/go/gowidget.h
@@ -2,65 +2,66 @@
** Copyright (C) 2000 Trolltech AS. All rights reserved.
**
** This file is part of Qtopia Environment.
**
** This file may be distributed and/or modified under the terms of the
** GNU General Public License version 2 as published by the Free Software
** Foundation and appearing in the file LICENSE.GPL included in the
** packaging of this file.
**
** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
**
** See http://www.trolltech.com/gpl/ for GPL licensing information.
**
** Contact info@trolltech.com if any conditions of this licensing are
** not clear to you.
**
**********************************************************************/
#ifndef GOWIDGET_H
#define GOWIDGET_H
#include <qmainwindow.h>
#include "amigo.h"
class QToolBar;
class GoMainWidget : public QMainWindow
{
Q_OBJECT
public:
- GoMainWidget( QWidget *parent=0, const char* name=0);
+ static QString appName() { return QString::fromLatin1("go"); }
+ GoMainWidget( QWidget *parent=0, const char* name=0, WFlags fl = 0);
protected:
void resizeEvent( QResizeEvent * );
private:
QToolBar *toolbar;
};
class QLabel;
class GoWidget : public QWidget
{
Q_OBJECT
public:
GoWidget( QWidget *parent=0, const char* name=0);
~GoWidget();
void doMove( int x, int y );
void doComputerMove();
void readConfig();
void writeConfig();
public slots:
void pass();
void resign();
void newGame();
void setTwoplayer( bool );
void setHandicap( int );
signals:
void showScore( const QString& );
void showTurn( const QPixmap& );