You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
kooldock/src/item.h

85 lines
2.4 KiB

/***************************************************************************
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