summaryrefslogtreecommitdiffstats
path: root/knights/challenge_graph_view.h
blob: 1f47efe845b4fc9e5467ca7804bdd9c247372191 (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
/***************************************************************************
                   challenge_graph_view.h  -  description
                             -------------------
    begin                : Mon Jan 7 2002
    copyright            : (C) 2003 by Eric Faccer
    email                : e.faccer@qut.edu.au
 ***************************************************************************/

/***************************************************************************
 *                                                                         *
 *   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 CHALLENGE_GRAPH_VIEW_H
#define CHALLENGE_GRAPH_VIEW_H

#include <tqevent.h>
#include <tqcanvas.h>
#include <tqlabel.h>
#include "challenge_game.h"


class Challenge_Graph_View : public TQCanvasView
{
    Q_OBJECT
  

	public:
		Challenge_Graph_View(TQCanvas&, TQWidget* parent=0, const char* name=0, WFlags f=0, TQLabel *qsb=0);
		~Challenge_Graph_View();
		void reset();

	signals:
		void leftClick(int);
		void rightClick(Challenge_Game*, const TQPoint&);

	protected:
		void contentsMousePressEvent(TQMouseEvent*);
		void contentsMouseMoveEvent(TQMouseEvent*);
		void updateStatusBar(TQString msg);

	private:
		TQCanvas &canvas;
		TQLabel *statusbar;
};

#endif