summaryrefslogtreecommitdiffstats
path: root/kmobile/kmobileitem.h
blob: b23a8f1e08f3bf0aab775a51704079fc3d1af4ad (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
/*
 * Copyright (C) 2003 Helge Deller <deller@kde.org>
 */

#ifndef _KMOBILEITEM_H_
#define _KMOBILEITEM_H_

#include <qiconview.h>
#include <qpixmap.h>
#include <ktrader.h>
#include "kmobiledevice.h"

class KMobileItem : public QObject, public QIconViewItem 
{
    Q_OBJECT
    friend class KMobileView;
public:
    KMobileItem(QIconView *parent, KConfig *config, KService::Ptr service);
    KMobileItem(QIconView *parent, KConfig *config, int reload_index);
    virtual ~KMobileItem();

    void configSave() const;
    bool configLoad(int index);

    QString config_SectionName( int idx = -1 ) const;
    QPixmap getIcon() const;

    static KTrader::OfferList getMobileDevicesList();

protected:
    QString getKonquMimeType() const;
    void writeKonquMimeFile() const;


    KService::Ptr getServicePtr() const;
    bool driverAvailable();
    KMobileDevice *m_dev;

signals:

private slots:

private:
    KConfig *config;

    QString m_deviceConfigFile;
    QString m_deviceDesktopFile;

    QString m_iconName;
};

#endif // _KMOBILEITEM_H_