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.
tdepim/kmobile/kmobileitem.h

54 lines
1.0 KiB

/*
* Copyright (C) 2003 Helge Deller <deller@kde.org>
*/
#ifndef _KMOBILEITEM_H_
#define _KMOBILEITEM_H_
#include <tqiconview.h>
#include <tqpixmap.h>
#include <ktrader.h>
#include "kmobiledevice.h"
class KMobileItem : public TQObject, public TQIconViewItem
{
TQ_OBJECT
friend class KMobileView;
public:
KMobileItem(TQIconView *parent, TDEConfig *config, KService::Ptr service);
KMobileItem(TQIconView *parent, TDEConfig *config, int reload_index);
virtual ~KMobileItem();
void configSave() const;
bool configLoad(int index);
TQString config_SectionName( int idx = -1 ) const;
TQPixmap getIcon() const;
static TDETrader::OfferList getMobileDevicesList();
protected:
TQString getKonquMimeType() const;
void writeKonquMimeFile() const;
KService::Ptr getServicePtr() const;
bool driverAvailable();
KMobileDevice *m_dev;
signals:
private slots:
private:
TDEConfig *config;
TQString m_deviceConfigFile;
TQString m_deviceDesktopFile;
TQString m_iconName;
};
#endif // _KMOBILEITEM_H_