blob: 2682ade59931f907f2373dbdedf4fdf1f5ca7bf3 (
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 <twin.h>
#include <tqstring.h>
#include <tqpixmap.h>
#include <tqptrlist.h>
#include <vector>
#include <tqevent.h>
#include <tqnamespace.h>
const int MAX_LEN = 256;
const int SIZE_INC = 1;
class Item
{
public:
Item(const TQString& iconName, const TQString& cmd, const TQString& name, int minSize, int maxSize);
Item(const TQString& fileName, int minSize, int maxSize);
Item(const TQPixmap& iconBig, WId id, const TQString& name, int minSize, int maxSize, bool wi = false);
~Item();
void setIcon(const TQPixmap& iconBig);
TQPixmap* getIcon(int size);
TQString getCommand();
TQString getName();
TQCString getClass();
int getCount();
int getIndex();
int getMIndex();
WId getId();
KWin::WindowInfo info;
void setId(WId newId);
TQString getFilename();
void setName(const TQString& newName);
void setClass(const TQCString& newClass);
void setCount(int newCount);
void setIndex(int newIndex);
void setMIndex(int newIndex);
bool animed;
bool isAnimed();
void anim(bool param);
TQPtrList<TQPixmap> icons;
bool wIcon;
private:
TDEIconLoader* iLoader;
int minSize;
int maxSize;
TQString command;
TQString name;
TQCString mClass;
int mCount;
int mIndex;
int mMIndex;
TQString iconName;
TQString filename;
WId id;
};
#endif // ITEM_H
|