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.
koffice/kword/mailmerge/kabc/KWMailMergeKABCConfig.h

151 lines
3.9 KiB

/*
This file is part of the KDE project
Copyright (C) 2004 Dirk Schmidt <fs@dirk-schmidt.net>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library 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
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#ifndef _KWMAILMERGE_KABC_CONFIG_H_
#define _KWMAILMERGE_KABC_CONFIG_H_
#include <kdialogbase.h>
#include <tdelistview.h>
#include <kabc/stdaddressbook.h>
#include "KWMailMergeKABC.h"
class AddressPickerUI;
class KWMailMergeKABC;
class KWMailMergeKABCConfig: public KDialogBase
{
Q_OBJECT
public:
KWMailMergeKABCConfig( TQWidget *parent, KWMailMergeKABC *db_ );
virtual ~KWMailMergeKABCConfig();
private slots:
/**
Moves selected items from the left Listview to the right one.
*/
void addSelectedContacts();
/**
Moves selected items from the right Listview to the left one.
*/
void removeSelectedContacts();
/**
Executes KAddressbook as external application.
*/
void launchAddressbook() const;
/**
Updates the parent's mail merge list from items in the right Listview.
*/
void acceptSelection();
/**
Hides items in the left listview, which are not matching @p txt.
*/
void filterChanged( const TQString& txt );
/**
Saves the selected single entries to a new KABC::DistributionList in KAddressbook.
*/
void saveDistributionList();
private:
/**
The addresspicker widget.
*/
AddressPickerUI *_ui;
/**
Store all categories used in the addressbook, to avoid some iterator cycles.
*/
TQStringList _usedCategories;
/**
The mail merge list.
*/
KWMailMergeKABC *_db;
/**
Removes duplicates in the left TQListView, when moving an item to the right.
*/
void destroyAvailableClones( const TQString& uid );
/**
Appends the previously selected entries to the right TQListView.
*/
void initSelectedAddressees();
/**
Appends the previously selected distribution lists to the right TQListView.
*/
void initSelectedLists();
/**
Just connects signals and slots.
*/
void initSlotSignalConnections();
/**
Moves @p item from the right Listview to the left one.
Called by KWMailMergeKABCConfig::removeSelectedContacts().
*/
void removeContact( TQListViewItem* item );
/**
Appends all KAddressbook entries in KABC::StdAddressBook::self() and all
KABC::DistributionLists to the left TQListView.
*/
void updateAvailable();
};
class KWMailMergeKABCConfigListItem : public TQListViewItem
{
public:
KWMailMergeKABCConfigListItem( TQListView *parent, const KABC::Addressee& addressEntry );
KWMailMergeKABCConfigListItem( TQListViewItem *parent, const KABC::Addressee& addressEntry );
virtual ~KWMailMergeKABCConfigListItem();
/**
Returns the KABC::Addressee of a KWMailMergeKABCConfigListItem.
*/
KABC::Addressee addressee() const;
/**
This is an overloaded member function of TQListViewItem::text( int column ).
It Returns the KABC::Addressee::uid(), if column is set to -1.
Otherwise TQListViewItem::text( int column ) is returned.
*/
TQString text( int column ) const;
private:
KABC::Addressee _addressEntry;
};
#endif