blob: 27b22b9ae8d0a67c7b23656a88dcd2b94a185fe1 (
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
|
/***************************************************************************
item.h - description
-------------------
begin : Fri May 23 2003
copyright : (C) 2003 by KoolDock team
email :
***************************************************************************/
/***************************************************************************
* *
* 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 ITEM_H
#define ITEM_H
#include <kiconloader.h>
#include <kwin.h>
#include <qstring.h>
#include <qpixmap.h>
#include <qptrlist.h>
#include <vector>
#include <qevent.h>
#include <qnamespace.h>
const int MAX_LEN = 256;
const int SIZE_INC = 1;
class Item
{
public:
Item(QString iconName, QString cmd, QString name, int minSize, int maxSize);
Item(QString fileName, int minSize, int maxSize);
Item(QPixmap iconBig, WId id, QString name, int minSize, int maxSize, bool wi =FALSE);
~Item();
void setIcon(QPixmap iconBig);
QPixmap* getIcon(int size);
QString getCommand();
QString getName();
QCString getClass();
int getCount();
int getIndex();
int getMIndex();
WId getId();
KWin::WindowInfo info;
void setId(WId newId);
QString getFilename();
void setName(QString newName);
void setClass(QCString newClass);
void setCount(int newCount);
void setIndex(int newIndex);
void setMIndex(int newIndex);
bool animed;
bool isAnimed();
void anim(bool param);
QPtrList<QPixmap> icons;
bool wIcon;
private:
KIconLoader *iLoader;
int minSize;
int maxSize;
QString command;
QString name;
QCString mClass;
int mCount;
int mIndex;
int mMIndex;
QString iconName;
QString filename;
WId id;
};
#endif
|