Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.
tdepim/kaddressbook/interfaces/core.h

205 рядки
5.3 KiB

/*
This file is part of KAddressbook.
Copyright (c) 2003 Tobias Koenig <tokoe@kde.org>
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.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
As a special exception, permission is given to link this program
with any edition of TQt, and distribute the resulting executable,
without including the source code for TQt in the source distribution.
*/
#ifndef KAB_CORE_H
#define KAB_CORE_H
#include <config.h> // for KDEPIM_NEW_DISTRLISTS
#ifdef KDEPIM_NEW_DISTRLISTS
#include <libtdepim/distributionlist.h>
#endif
#include <tqobject.h>
#include <kabc/field.h>
#include <kcommand.h>
#include <kxmlguiclient.h>
#include <kdepimmacros.h>
namespace KABC {
class AddressBook;
class Resource;
}
class TQWidget;
class KActionCollection;
class KConfig;
class KURL;
namespace KAB {
class SearchManager;
class KDE_EXPORT Core : public TQObject
{
Q_OBJECT
TQ_OBJECT
public:
Core( KXMLGUIClient *client, TQObject *parent, const char *name = 0 );
/**
Returns a pointer to the StdAddressBook of the application.
*/
virtual KABC::AddressBook *addressBook() const = 0;
/**
Returns a pointer to the KConfig object of the application.
*/
virtual KConfig *config() const = 0;
/**
Returns a pointer to the global KActionCollection object. So
other classes can register their actions easily.
*/
virtual KActionCollection *actionCollection() const = 0;
/**
Returns a pointer to the gui client.
*/
virtual KXMLGUIClient *guiClient() const { return mGUIClient; }
/**
Returns the current sort field.
*/
virtual KABC::Field *currentSortField() const = 0;
/**
Returns the uid list of the currently selected contacts.
*/
virtual TQStringList selectedUIDs() const = 0;
/**
Displays a ResourceSelectDialog and returns the selected
resource or a null pointer if no resource was selected by
the user.
*/
virtual KABC::Resource *requestResource( TQWidget *parent ) = 0;
/**
Returns the parent widget.
*/
virtual TQWidget *widget() const = 0;
/**
Deletes given contacts from the address book.
@param uids The uids of the contacts, which shall be deleted.
*/
virtual void deleteContacts( const TQStringList &uids ) = 0;
/**
Deletes given contacts from the address book.
@param uids The uids of the contacts, which shall be deleted.
*/
virtual void deleteDistributionLists( const TQStringList &uids ) = 0;
#ifdef KDEPIM_NEW_DISTRLISTS
/**
Returns all the distribution lists.
*/
virtual KPIM::DistributionList::List distributionLists() const = 0;
/**
Returns the name of all the distribution lists.
*/
virtual TQStringList distributionListNames() const = 0;
/**
sets the distribution list to display. If null, the regular
address book is to be displayed.
*/
virtual void setSelectedDistributionList( const TQString &name ) = 0;
#endif
//// This class isn't part of interfaces/, so this method here isn't really useful
virtual SearchManager *searchManager() const = 0;
virtual KCommandHistory *commandHistory() const = 0;
signals:
/**
Forwarded from SearchManager
After it is emitted, distributionListNames() might have a different result.
*/
void contactsUpdated();
public slots:
/**
Is called whenever a contact is selected in the view.
*/
virtual void setContactSelected( const TQString &uid ) = 0;
/**
DCOP METHOD: Adds the given email address to address book.
*/
virtual void addEmail( const TQString& addr ) = 0;
/**
DCOP METHOD: Imports the vCard, located at the given url.
*/
virtual void importVCard( const KURL& url ) = 0;
/**
DCOP METHOD: Imports the given vCard.
*/
virtual void importVCardFromData( const TQString& vCard ) = 0;
/**
DCOP METHOD: Opens contact editor to input a new contact.
*/
virtual void newContact() = 0;
/**
DCOP METHOD: Opens distribution list editor to input a new distribution list.
*/
virtual void newDistributionList() = 0;
/**
DCOP METHOD: Returns the name of the contact, that matches the given
phone number.
*/
virtual TQString getNameByPhone( const TQString& phone ) = 0;
/**
Shows an edit dialog for the given uid.
*/
virtual void editContact( const TQString &uid = TQString() ) = 0;
/**
Shows an edit dialog for the given distribution list
*/
virtual void editDistributionList( const TQString &name ) = 0;
private:
KXMLGUIClient *mGUIClient;
};
}
#endif