summaryrefslogtreecommitdiff
path: root/noncore/games/kbill/Picture.cc
blob: cf96ddf4eaf2edbbc05fb64c0ff39de1ff28c60d (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
/***************************************************************************
                          Picture.cc  -  description
                             -------------------
    begin                : Thu Dec 30 1999
    copyright            : (C) 1999 by Jurrien Loonstra
    email                : j.h.loonstra@st.hanze.nl
 ***************************************************************************/

/***************************************************************************
 *                                                                         *
 *   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.                                   *
 *                                                                         *
 ***************************************************************************/
#include "Picture.h"

#include <opie2/odebug.h>
using namespace Opie::Core;
#include <qpe/resource.h>
#ifdef KDEVER
#include <kapp.h>
#include <kstandarddirs.h>
#include <kdebug.h>
#endif
void Picture::load(const char *name, int index) {
	//QString dir = KApplication::kde_datadir(), file;
// 	QString dir = locate("data",""),file;
// 	dir += "/kbill/";
// 	if (index>=0)
// 		file.sprintf ("%spixmaps/%s_%d.xpm", (const char *)dir, name, index);
// 	else
// 		file.sprintf("%spixmaps/%s.xpm", (const char *)dir, name);
#ifdef KDEVER
	KStandardDirs dirs;
	QString file;

	if (index>=0) {
	//kdDebug() << "Here";
	QString sindex;
	sindex.setNum(index);
	 // kdDebug() << "kbill/pixmaps/" + QString::fromLocal8Bit(name) + "_" + sindex + ".xpm";
	   file = dirs.findResource("data","kbill/pixmaps/" + QString::fromLocal8Bit(name) + "_" + sindex + ".xpm");
	} else {
	  file = dirs.findResource("data","kbill/pixmaps/" + QString::fromLocal8Bit(name) + ".xpm");
	}
	kdDebug() << file << std::endl;
	pix = new QPixmap();
	if (pix->load(file) == FALSE)
		oerr << "cannot open " << file << oendl;
	width = pix->width();
	height = pix->height();
#endif
QString sindex;
pix = new QPixmap();
sindex.setNum(index);
if (index>=0)
pix->load(Resource::findPixmap("kbill/pixmaps/" + QString::fromLocal8Bit(name) +"_"+ sindex));
else
pix->load(Resource::findPixmap("kbill/pixmaps/" + QString::fromLocal8Bit(name)));

	width = pix->width();
	height = pix->height();

}

QPixmap* Picture::getPixmap() {
	return pix;
}