summaryrefslogtreecommitdiffstats
path: root/kpacman/kpacmanview.h
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2020-09-05 01:09:44 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2020-09-05 01:22:13 +0900
commit37aaa67152936f4fefff22d559c03e943a86ae69 (patch)
treeffffcd595eecef631bc1fc38922c63060aa175ea /kpacman/kpacmanview.h
parentac81a3c3e8d1a61fc2ff39da89c7c2ea290d5e34 (diff)
downloadtdepacman-37aaa67152936f4fefff22d559c03e943a86ae69.tar.gz
tdepacman-37aaa67152936f4fefff22d559c03e943a86ae69.zip
Renamed kpacman -> tdepacman.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'kpacman/kpacmanview.h')
-rw-r--r--kpacman/kpacmanview.h68
1 files changed, 0 insertions, 68 deletions
diff --git a/kpacman/kpacmanview.h b/kpacman/kpacmanview.h
deleted file mode 100644
index c94349f..0000000
--- a/kpacman/kpacmanview.h
+++ /dev/null
@@ -1,68 +0,0 @@
-/***************************************************************************
- kpacmanview.h - description
- -------------------
- begin : Sam Jan 19 13:37:57 CET 2002
- copyright : (C) 1998-2003 by Jörg Thönnissen
- email : joe@dsite.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 KPACMANVIEW_H
-#define KPACMANVIEW_H
-
-#ifdef HAVE_CONFIG_H
-#include "config.h"
-#endif
-
-//include files for TQt
-#include <tqwidget.h>
-#include <tqregexp.h>
-
-// application specific includes
-#include "score.h"
-#include "referee.h"
-#include "status.h"
-#include "painter.h"
-
-/** The KpacmanView class provides the view widget for the KpacmanApp instance.
- * The View instance inherits TQWidget as a base class and represents the view object of a KTMainWindow.
- */
-class KpacmanView : public TQWidget
-{
- Q_OBJECT
-public:
- /** Constructor for the main view */
- KpacmanView ( TQWidget *parent = 0, const char *name = 0);
- /** Destructor for the main view */
- virtual ~KpacmanView();
-
- void setScheme(int scheme=-1, int mode=-1);
- Score *score;
- Referee *referee;
- Status *status;
-
-protected:
- void confScheme();
- void confMisc(bool defGroup=TRUE);
- void resizeEvent( TQResizeEvent * );
-
-private:
- Bitfont *bitfont;
- uchar bitfontFirstChar;
- uchar bitfontLastChar;
-
- TQString fontName;
-
- int scheme;
- int mode;
-};
-
-#endif // KPACMANVIEW_H