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.
91 lines
2.2 KiB
91 lines
2.2 KiB
/*
|
|
* Copyright (C) 2003 Helge Deller <deller@kde.org>
|
|
*/
|
|
|
|
#ifndef _KMOBILEVIEW_H_
|
|
#define _KMOBILEVIEW_H_
|
|
|
|
#include <tqiconview.h>
|
|
|
|
#include "kmobileiface.h"
|
|
|
|
#include <kdemacros.h>
|
|
class TDEConfig;
|
|
class KMobileItem;
|
|
|
|
/**
|
|
* This is the main view class for kmobile.
|
|
*
|
|
* @short Main view
|
|
* @author Helge Deller <deller@kde.org>
|
|
* @version 0.1
|
|
*/
|
|
class KDE_EXPORT KMobileView : public TQIconView, public kmobileIface
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
KMobileView(TQWidget *parent, TDEConfig *_config);
|
|
virtual ~KMobileView();
|
|
|
|
bool addNewDevice(TDEConfig *config, KService::Ptr service);
|
|
bool startKonqueror(const TQString &devName);
|
|
|
|
/**
|
|
* DCOP implementation
|
|
*/
|
|
TQStringList deviceNames();
|
|
|
|
void removeDevice( TQString deviceName );
|
|
void configDevice( TQString deviceName );
|
|
|
|
bool connectDevice( TQString deviceName );
|
|
bool disconnectDevice( TQString deviceName );
|
|
bool connected( TQString deviceName );
|
|
|
|
TQString deviceClassName( TQString deviceName );
|
|
TQString deviceName( TQString deviceName );
|
|
TQString revision( TQString deviceName );
|
|
int classType( TQString deviceName );
|
|
|
|
int capabilities( TQString deviceName );
|
|
TQString nameForCap( TQString deviceName, int cap );
|
|
|
|
TQString iconFileName( TQString deviceName );
|
|
|
|
int numAddresses( TQString deviceName );
|
|
TQString readAddress( TQString deviceName, int index );
|
|
bool storeAddress( TQString deviceName, int index, TQString vcard, bool append );
|
|
|
|
int numCalendarEntries( TQString deviceName );
|
|
|
|
int numNotes( TQString deviceName );
|
|
TQString readNote( TQString deviceName, int index );
|
|
bool storeNote( TQString deviceName, int index, TQString note );
|
|
|
|
/* devices tdeioslave support: */
|
|
TQStringList tdeio_devices_deviceInfo(TQString deviceName);
|
|
|
|
public:
|
|
void saveAll();
|
|
void restoreAll();
|
|
|
|
protected:
|
|
KMobileItem * findDevice( const TQString &deviceName ) const;
|
|
|
|
protected slots:
|
|
void slotDoubleClicked( TQIconViewItem * item );
|
|
|
|
signals:
|
|
/**
|
|
* Use this signal to change the content of the statusbar
|
|
*/
|
|
void signalChangeStatusbar(const TQString& text);
|
|
|
|
private:
|
|
TDEConfig *m_config;
|
|
|
|
};
|
|
|
|
#endif // _KMOBILEVIEW_H_
|