~ubuntu-branches/ubuntu/trusty/qgo/trusty

« back to all changes in this revision

Viewing changes to src/qgo_interface.h

  • Committer: Bazaar Package Importer
  • Author(s): Cyril Chaboisseau
  • Date: 2006-10-03 23:46:07 UTC
  • mfrom: (1.2.1 upstream) (2.1.9 edgy)
  • Revision ID: james.westby@ubuntu.com-20061003234607-jtuoreigx712b4lw
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
121
121
        QString     ttOpponent;
122
122
        bool        mark_set;
123
123
        int         mark_counter;
 
124
        GameData    gd;
124
125
 
125
126
signals:
126
127
        // to qGoIF
164
165
        bool        myColorIsBlack;
165
166
        bool        haveTitle;
166
167
        GameMode    gameMode;
167
 
        GameData    gd;
 
168
        //GameData    gd;
168
169
        int         id;
169
170
        MainWindow  *win;
170
171
        qGo         *qgo;
196
197
public:
197
198
        qGoIF(QWidget*);
198
199
        ~qGoIF();
199
 
        bool set_observe(QString);
 
200
//      bool set_observe(QString);
200
201
        void set_initIF();
201
202
        void set_myName(const QString &n) { myName = n; }
202
203
        qGo  *get_qgo() { return qgo; };
205
206
        void set_localgame();
206
207
        void openPreferences(int tab=-1);
207
208
        QWidget *get_parent() { return parent; }
 
209
        void wrapupMatchGame(qGoBoard *, bool);
208
210
 
209
211
signals:
210
212
        void signal_sendcommand(const QString&, bool);
226
228
        void slot_matchsettings(const QString&, const QString&, const QString&, assessType);
227
229
        void slot_requestDialog(const QString&, const QString&, const QString&, const QString&);
228
230
        void slot_timeAdded(int, bool);
 
231
        //void slot_undoRequest(const QString &);
229
232
 
230
233
        // qGoBoard
231
234
//      void slot_closeevent(int) {};
232
235
        void slot_closeevent();
233
236
        void slot_sendcommand(const QString&, bool);
 
237
        void set_observe(const QString&);
234
238
 
235
239
protected:
236
240
        bool parse_move(int src, GameInfo* gi=0, Game* g=0, QString txt=0);