summaryrefslogtreecommitdiffstats
path: root/kmobile/kmobileitem.h
blob: 02ee75cb76e55d2dd9a0d5b865d27499130c90cc (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
/*
 * 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 
{
    Q_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_