kaddressbook
kaddressbooktableview.h
Go to the documentation of this file.00001 /* 00002 This file is part of KAddressBook. 00003 Copyright (c) 2002 Mike Pilone <mpilone@slac.com> 00004 00005 This program is free software; you can redistribute it and/or modify 00006 it under the terms of the GNU General Public License as published by 00007 the Free Software Foundation; either version 2 of the License, or 00008 (at your option) any later version. 00009 00010 This program is distributed in the hope that it will be useful, 00011 but WITHOUT ANY WARRANTY; without even the implied warranty of 00012 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00013 GNU General Public License for more details. 00014 00015 You should have received a copy of the GNU General Public License 00016 along with this program; if not, write to the Free Software 00017 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. 00018 00019 As a special exception, permission is given to link this program 00020 with any edition of Qt, and distribute the resulting executable, 00021 without including the source code for Qt in the source distribution. 00022 */ 00023 00024 #ifndef KADDRESSBOOKTABLEVIEW_H 00025 #define KADDRESSBOOKTABLEVIEW_H 00026 00027 #include <Qt3Support/Q3ListView> 00028 #include <Qt3Support/Q3TabDialog> 00029 #include <QtCore/QString> 00030 #include <QtCore/QStringList> 00031 #include <QtGui/QWidget> 00032 00033 #include "kaddressbookview.h" 00034 00035 class Q3ListViewItem; 00036 class QVBoxLayout; 00037 class KConfig; 00038 class KIMProxy; 00039 00040 class ContactListView; 00041 00042 namespace KABC { class AddressBook; } 00043 00052 class KAddressBookTableView : public KAddressBookView 00053 { 00054 friend class ContactListView; 00055 00056 Q_OBJECT 00057 00058 public: 00059 KAddressBookTableView( KAB::Core *core, QWidget *parent ); 00060 virtual ~KAddressBookTableView(); 00061 00062 virtual void refresh( const QString &uid = QString() ); 00063 virtual QStringList selectedUids(); 00064 virtual void setSelected( const QString &uid = QString(), bool selected = false ); 00065 virtual void setFirstSelected( bool selected = true ); 00066 virtual KABC::Field *sortField() const; 00067 00068 virtual void readConfig( KConfigGroup&cfg ); 00069 virtual void writeConfig( KConfigGroup &cfg ); 00070 virtual QString type() const { return "Table"; } 00071 00072 void scrollUp(); 00073 void scrollDown(); 00074 00075 public Q_SLOTS: 00076 virtual void reconstructListView(); 00077 00078 protected Q_SLOTS: 00082 void addresseeSelected(); 00083 00088 void addresseeExecuted( Q3ListViewItem* ); 00089 00093 void rmbClicked( K3ListView*, Q3ListViewItem*, const QPoint& ); 00094 00098 void updatePresence( const QString &uid ); 00099 00100 private: 00101 QVBoxLayout *mMainLayout; 00102 ContactListView *mListView; 00103 KIMProxy *mIMProxy; 00104 }; 00105 00106 #endif
KDE 4.2 API Reference