summaryrefslogtreecommitdiff
path: root/noncore/games/zlines/klines.h
blob: e36a4a7eef7c10a3f0b231aa6a3b1df8d52de343 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
/***************************************************************************
                          klines.h  -  description
                             -------------------
    begin                : Fri May 19 2000
    copyright            : (C) 2000 by Roman Razilov
    email                : Roman.Razilov@gmx.de
 ***************************************************************************/

/***************************************************************************
 *                                                                         *
 *   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.                                   *
 *                                                                         *
 ***************************************************************************/
#ifndef KLINES_H
#define KLINES_H

#include <qwidget.h>
#include <qmenubar.h> 
#include <qlabel.h>
#include <qpushbutton.h>
#include <qmainwindow.h>
#include "linesboard.h"
#include "mwidget.h"
#include "prompt.h"

#define LSCORE 0
#define LRECORD 1

class KLines : public QMainWindow
{
  Q_OBJECT
public:
  KLines(QWidget *parent,const char* name, WFlags f);
  ~KLines();

    static QString appName() { return QString::fromLatin1("zlines"); }

public slots:
  void startGame();
  void stopGame();
  void makeTurn();
  void addScore(int ballsErased);
  void switchPrompt();
  void help();
	void undo();
  
protected:
  void resizeEvent( QResizeEvent * );

private slots:

//  bool setSize( int w, int h );
  void setMinSize();

private:
  QMenuBar *menu;
  int idMenuPrompt;
  int idMenuUndo;

  QPopupMenu *game;
  QPopupMenu *edit;
  QToolBar *tool;
  QStatusBar *stat;
  LinesBoard* lsb;
  MainWidget *mwidget;
  LinesPrompt *lPrompt;

  int score, prev_score;

  int nextBalls[BALLSDROP];
	int nextBalls_undo[BALLSDROP];
	int nextBalls_redo[BALLSDROP];
	bool bUndo;

  void searchBallsLine();
  void generateRandomBalls();
  void placeBalls();
  void updateStat();
  void endGame();
	void switchUndo( bool bu );
};

#endif