summaryrefslogtreecommitdiff
path: root/noncore/games/kbill/Picture.h
Unidiff
Diffstat (limited to 'noncore/games/kbill/Picture.h') (more/less context) (show whitespace changes)
-rw-r--r--noncore/games/kbill/Picture.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/noncore/games/kbill/Picture.h b/noncore/games/kbill/Picture.h
new file mode 100644
index 0000000..c423251
--- a/dev/null
+++ b/noncore/games/kbill/Picture.h
@@ -0,0 +1,32 @@
1/***************************************************************************
2 Picture.h - description
3 -------------------
4 begin : Thu Dec 30 1999
5 copyright : (C) 1999 by Jurrien Loonstra
6 email : j.h.loonstra@st.hanze.nl
7 ***************************************************************************/
8
9/***************************************************************************
10 * *
11 * This program is free software; you can redistribute it and/or modify *
12 * it under the terms of the GNU General Public License as published by *
13 * the Free Software Foundation; either version 2 of the License, or *
14 * (at your option) any later version. *
15 * *
16 ***************************************************************************/
17#ifndef PICTURE_H
18#define PICTURE_H
19
20#include <qpixmap.h>
21
22class Picture {
23 public:int width, height;
24 void load(const char *name, int index=-1);
25 QPixmap* getPixmap();
26private:
27 QPixmap *pix;
28
29 friend class UI;
30};
31
32#endif