-rw-r--r-- | kaddressbook/views/kaddressbookcardview.cpp | 1 | ||||
-rw-r--r-- | kaddressbook/views/kaddressbookiconview.cpp | 1 | ||||
-rw-r--r-- | kaddressbook/views/kaddressbooktableview.cpp | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/kaddressbook/views/kaddressbookcardview.cpp b/kaddressbook/views/kaddressbookcardview.cpp index 49c0691..8d0fca1 100644 --- a/kaddressbook/views/kaddressbookcardview.cpp +++ b/kaddressbook/views/kaddressbookcardview.cpp | |||
@@ -1,76 +1,77 @@ | |||
1 | /* | 1 | /* |
2 | This file is part of KAddressBook. | 2 | This file is part of KAddressBook. |
3 | Copyright (c) 2002 Mike Pilone <mpilone@slac.com> | 3 | Copyright (c) 2002 Mike Pilone <mpilone@slac.com> |
4 | 4 | ||
5 | This program is free software; you can redistribute it and/or modify | 5 | This program is free software; you can redistribute it and/or modify |
6 | it under the terms of the GNU General Public License as published by | 6 | it under the terms of the GNU General Public License as published by |
7 | the Free Software Foundation; either version 2 of the License, or | 7 | the Free Software Foundation; either version 2 of the License, or |
8 | (at your option) any later version. | 8 | (at your option) any later version. |
9 | 9 | ||
10 | This program is distributed in the hope that it will be useful, | 10 | This program is distributed in the hope that it will be useful, |
11 | but WITHOUT ANY WARRANTY; without even the implied warranty of | 11 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
13 | GNU General Public License for more details. | 13 | GNU General Public License for more details. |
14 | 14 | ||
15 | You should have received a copy of the GNU General Public License | 15 | You should have received a copy of the GNU General Public License |
16 | along with this program; if not, write to the Free Software | 16 | along with this program; if not, write to the Free Software |
17 | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. | 17 | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
18 | 18 | ||
19 | As a special exception, permission is given to link this program | 19 | As a special exception, permission is given to link this program |
20 | with any edition of Qt, and distribute the resulting executable, | 20 | with any edition of Qt, and distribute the resulting executable, |
21 | without including the source code for Qt in the source distribution. | 21 | without including the source code for Qt in the source distribution. |
22 | */ | 22 | */ |
23 | 23 | ||
24 | #include <qdragobject.h> | 24 | #include <qdragobject.h> |
25 | #include <qevent.h> | 25 | #include <qevent.h> |
26 | #include <qiconview.h> | 26 | #include <qiconview.h> |
27 | #include <qlayout.h> | 27 | #include <qlayout.h> |
28 | #include <qstringlist.h> | 28 | #include <qstringlist.h> |
29 | #include <qregexp.h> | ||
29 | 30 | ||
30 | #include <kabc/addressbook.h> | 31 | #include <kabc/addressbook.h> |
31 | #include <kabc/addressee.h> | 32 | #include <kabc/addressee.h> |
32 | #include <kconfig.h> | 33 | #include <kconfig.h> |
33 | #include <kdebug.h> | 34 | #include <kdebug.h> |
34 | #include <klocale.h> | 35 | #include <klocale.h> |
35 | 36 | ||
36 | #include "kabprefs.h" | 37 | #include "kabprefs.h" |
37 | #include "viewmanager.h" | 38 | #include "viewmanager.h" |
38 | 39 | ||
39 | #include "kaddressbookcardview.h" | 40 | #include "kaddressbookcardview.h" |
40 | 41 | ||
41 | #ifndef KAB_EMBEDDED | 42 | #ifndef KAB_EMBEDDED |
42 | extern "C" { | 43 | extern "C" { |
43 | void *init_libkaddrbk_cardview() | 44 | void *init_libkaddrbk_cardview() |
44 | { | 45 | { |
45 | return ( new CardViewFactory ); | 46 | return ( new CardViewFactory ); |
46 | } | 47 | } |
47 | } | 48 | } |
48 | #endif //KAB_EMBEDDED | 49 | #endif //KAB_EMBEDDED |
49 | 50 | ||
50 | //////////////////////////////// | 51 | //////////////////////////////// |
51 | // AddresseeCardViewItem (internal class) | 52 | // AddresseeCardViewItem (internal class) |
52 | class AddresseeCardViewItem : public CardViewItem | 53 | class AddresseeCardViewItem : public CardViewItem |
53 | { | 54 | { |
54 | public: | 55 | public: |
55 | AddresseeCardViewItem(const KABC::Field::List &fields, | 56 | AddresseeCardViewItem(const KABC::Field::List &fields, |
56 | bool showEmptyFields, | 57 | bool showEmptyFields, |
57 | KABC::AddressBook *doc, const KABC::Addressee &a, | 58 | KABC::AddressBook *doc, const KABC::Addressee &a, |
58 | CardView *parent) | 59 | CardView *parent) |
59 | : CardViewItem(parent, a.formattedName()), | 60 | : CardViewItem(parent, a.formattedName()), |
60 | mFields( fields ), mShowEmptyFields(showEmptyFields), | 61 | mFields( fields ), mShowEmptyFields(showEmptyFields), |
61 | mDocument(doc), mAddressee(a) | 62 | mDocument(doc), mAddressee(a) |
62 | { | 63 | { |
63 | if ( mFields.isEmpty() ) { | 64 | if ( mFields.isEmpty() ) { |
64 | mFields = KABC::Field::defaultFields(); | 65 | mFields = KABC::Field::defaultFields(); |
65 | } | 66 | } |
66 | refresh(); | 67 | refresh(); |
67 | } | 68 | } |
68 | 69 | ||
69 | const KABC::Addressee &addressee() const { return mAddressee; } | 70 | const KABC::Addressee &addressee() const { return mAddressee; } |
70 | 71 | ||
71 | void refresh() | 72 | void refresh() |
72 | { | 73 | { |
73 | // Update our addressee, since it may have changed elsewhere | 74 | // Update our addressee, since it may have changed elsewhere |
74 | mAddressee = mDocument->findByUid(mAddressee.uid()); | 75 | mAddressee = mDocument->findByUid(mAddressee.uid()); |
75 | 76 | ||
76 | if (!mAddressee.isEmpty()) | 77 | if (!mAddressee.isEmpty()) |
diff --git a/kaddressbook/views/kaddressbookiconview.cpp b/kaddressbook/views/kaddressbookiconview.cpp index 78d63b0..0ffc674 100644 --- a/kaddressbook/views/kaddressbookiconview.cpp +++ b/kaddressbook/views/kaddressbookiconview.cpp | |||
@@ -1,90 +1,91 @@ | |||
1 | /* | 1 | /* |
2 | This file is part of KAddressBook. | 2 | This file is part of KAddressBook. |
3 | Copyright (c) 2002 Mike Pilone <mpilone@slac.com> | 3 | Copyright (c) 2002 Mike Pilone <mpilone@slac.com> |
4 | 4 | ||
5 | This program is free software; you can redistribute it and/or modify | 5 | This program is free software; you can redistribute it and/or modify |
6 | it under the terms of the GNU General Public License as published by | 6 | it under the terms of the GNU General Public License as published by |
7 | the Free Software Foundation; either version 2 of the License, or | 7 | the Free Software Foundation; either version 2 of the License, or |
8 | (at your option) any later version. | 8 | (at your option) any later version. |
9 | 9 | ||
10 | This program is distributed in the hope that it will be useful, | 10 | This program is distributed in the hope that it will be useful, |
11 | but WITHOUT ANY WARRANTY; without even the implied warranty of | 11 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
13 | GNU General Public License for more details. | 13 | GNU General Public License for more details. |
14 | 14 | ||
15 | You should have received a copy of the GNU General Public License | 15 | You should have received a copy of the GNU General Public License |
16 | along with this program; if not, write to the Free Software | 16 | along with this program; if not, write to the Free Software |
17 | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. | 17 | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
18 | 18 | ||
19 | As a special exception, permission is given to link this program | 19 | As a special exception, permission is given to link this program |
20 | with any edition of Qt, and distribute the resulting executable, | 20 | with any edition of Qt, and distribute the resulting executable, |
21 | without including the source code for Qt in the source distribution. | 21 | without including the source code for Qt in the source distribution. |
22 | */ | 22 | */ |
23 | 23 | ||
24 | #ifndef KAB_EMBEDDED | 24 | #ifndef KAB_EMBEDDED |
25 | #include <qiconview.h> | 25 | #include <qiconview.h> |
26 | #include <qstringlist.h> | 26 | #include <qstringlist.h> |
27 | 27 | ||
28 | #include <kabc/addressee.h> | 28 | #include <kabc/addressee.h> |
29 | #include <kconfig.h> | 29 | #include <kconfig.h> |
30 | #include <kdebug.h> | 30 | #include <kdebug.h> |
31 | #include <kglobal.h> | 31 | #include <kglobal.h> |
32 | #include <kiconloader.h> | 32 | #include <kiconloader.h> |
33 | #include <klocale.h> | 33 | #include <klocale.h> |
34 | 34 | ||
35 | #else //KAB_EMBEDDED | 35 | #else //KAB_EMBEDDED |
36 | #endif //KAB_EMBEDDED | 36 | #endif //KAB_EMBEDDED |
37 | 37 | ||
38 | #include <kabc/addressbook.h> | 38 | #include <kabc/addressbook.h> |
39 | #include "kabprefs.h" | 39 | #include "kabprefs.h" |
40 | #include "viewmanager.h" | 40 | #include "viewmanager.h" |
41 | #include "kaddressbookiconview.h" | 41 | #include "kaddressbookiconview.h" |
42 | #include <qlayout.h> | 42 | #include <qlayout.h> |
43 | #include <qregexp.h> | ||
43 | #include <kglobal.h> | 44 | #include <kglobal.h> |
44 | /*US transfered to the headerfile | 45 | /*US transfered to the headerfile |
45 | class IconViewFactory : public ViewFactory | 46 | class IconViewFactory : public ViewFactory |
46 | { | 47 | { |
47 | public: | 48 | public: |
48 | KAddressBookView *view( KABC::AddressBook *ab, QWidget *parent, const char *name ) | 49 | KAddressBookView *view( KABC::AddressBook *ab, QWidget *parent, const char *name ) |
49 | { | 50 | { |
50 | return new KAddressBookIconView( ab, parent, name ); | 51 | return new KAddressBookIconView( ab, parent, name ); |
51 | } | 52 | } |
52 | 53 | ||
53 | QString type() const { return "Icon"; } | 54 | QString type() const { return "Icon"; } |
54 | 55 | ||
55 | QString description() const { return i18n( "Icons represent contacts. Very simple view." ); } | 56 | QString description() const { return i18n( "Icons represent contacts. Very simple view." ); } |
56 | }; | 57 | }; |
57 | 58 | ||
58 | */ | 59 | */ |
59 | 60 | ||
60 | extern "C" { | 61 | extern "C" { |
61 | void *init_libkaddrbk_iconview() | 62 | void *init_libkaddrbk_iconview() |
62 | { | 63 | { |
63 | return ( new IconViewFactory ); | 64 | return ( new IconViewFactory ); |
64 | } | 65 | } |
65 | } | 66 | } |
66 | 67 | ||
67 | //////////////////////////////// | 68 | //////////////////////////////// |
68 | // AddresseeIconView (internal class) | 69 | // AddresseeIconView (internal class) |
69 | #ifndef KAB_EMBEDDED | 70 | #ifndef KAB_EMBEDDED |
70 | AddresseeIconView::AddresseeIconView(QWidget *parent, const char *name) | 71 | AddresseeIconView::AddresseeIconView(QWidget *parent, const char *name) |
71 | : KIconView(parent, name) | 72 | : KIconView(parent, name) |
72 | #else //KAB_EMBEDDED | 73 | #else //KAB_EMBEDDED |
73 | AddresseeIconView::AddresseeIconView(QWidget *parent, const char *name) | 74 | AddresseeIconView::AddresseeIconView(QWidget *parent, const char *name) |
74 | : QIconView(parent, name) | 75 | : QIconView(parent, name) |
75 | #endif //KAB_EMBEDDED | 76 | #endif //KAB_EMBEDDED |
76 | 77 | ||
77 | { | 78 | { |
78 | setSelectionMode( QIconView::Extended ); | 79 | setSelectionMode( QIconView::Extended ); |
79 | setResizeMode( QIconView::Adjust ); | 80 | setResizeMode( QIconView::Adjust ); |
80 | setWordWrapIconText( true ); | 81 | setWordWrapIconText( true ); |
81 | setGridX( 100 ); | 82 | setGridX( 100 ); |
82 | setItemsMovable(false); | 83 | setItemsMovable(false); |
83 | setSorting(true, true); | 84 | setSorting(true, true); |
84 | 85 | ||
85 | 86 | ||
86 | //US ??? setMode( KIconView::Select ); | 87 | //US ??? setMode( KIconView::Select ); |
87 | 88 | ||
88 | #ifndef KAB_EMBEDDED | 89 | #ifndef KAB_EMBEDDED |
89 | 90 | ||
90 | connect(this, SIGNAL(dropped(QDropEvent*, const QValueList<QIconDragItem>&)), | 91 | connect(this, SIGNAL(dropped(QDropEvent*, const QValueList<QIconDragItem>&)), |
diff --git a/kaddressbook/views/kaddressbooktableview.cpp b/kaddressbook/views/kaddressbooktableview.cpp index 63ad0ed..1dc9198 100644 --- a/kaddressbook/views/kaddressbooktableview.cpp +++ b/kaddressbook/views/kaddressbooktableview.cpp | |||
@@ -1,83 +1,84 @@ | |||
1 | // $Id$ | 1 | // $Id$ |
2 | 2 | ||
3 | #include <qvbox.h> | 3 | #include <qvbox.h> |
4 | #include <qlistbox.h> | 4 | #include <qlistbox.h> |
5 | #include <qwidget.h> | 5 | #include <qwidget.h> |
6 | #include <qfile.h> | 6 | #include <qfile.h> |
7 | #include <qimage.h> | 7 | #include <qimage.h> |
8 | #include <qcombobox.h> | 8 | #include <qcombobox.h> |
9 | #include <qapplication.h> | 9 | #include <qapplication.h> |
10 | #include <qdragobject.h> | 10 | #include <qdragobject.h> |
11 | #include <qevent.h> | 11 | #include <qevent.h> |
12 | #include <qurl.h> | 12 | #include <qurl.h> |
13 | #include <qpixmap.h> | 13 | #include <qpixmap.h> |
14 | 14 | ||
15 | #include <kabc/addressbook.h> | 15 | #include <kabc/addressbook.h> |
16 | #include <kapplication.h> | 16 | #include <kapplication.h> |
17 | #include <kconfig.h> | 17 | #include <kconfig.h> |
18 | #include <kcolorbutton.h> | 18 | #include <kcolorbutton.h> |
19 | #include <kdebug.h> | 19 | #include <kdebug.h> |
20 | #include <kglobal.h> | 20 | #include <kglobal.h> |
21 | #include <kiconloader.h> | 21 | #include <kiconloader.h> |
22 | #include <klineedit.h> | 22 | #include <klineedit.h> |
23 | #include <klocale.h> | 23 | #include <klocale.h> |
24 | #include <kmessagebox.h> | 24 | #include <kmessagebox.h> |
25 | #include <kurl.h> | 25 | #include <kurl.h> |
26 | #include <kurlrequester.h> | 26 | #include <kurlrequester.h> |
27 | 27 | ||
28 | //US#include "configuretableviewdialog.h" | 28 | //US#include "configuretableviewdialog.h" |
29 | #include "contactlistview.h" | 29 | #include "contactlistview.h" |
30 | #include "kabprefs.h" | 30 | #include "kabprefs.h" |
31 | #include "undocmds.h" | 31 | #include "undocmds.h" |
32 | #include "viewmanager.h" | 32 | #include "viewmanager.h" |
33 | 33 | ||
34 | #include <qlayout.h> | 34 | #include <qlayout.h> |
35 | #include <qheader.h> | 35 | #include <qheader.h> |
36 | #include <qregexp.h> | ||
36 | 37 | ||
37 | #include "kaddressbooktableview.h" | 38 | #include "kaddressbooktableview.h" |
38 | 39 | ||
39 | 40 | ||
40 | KAddressBookTableView::KAddressBookTableView( KABC::AddressBook *ab, | 41 | KAddressBookTableView::KAddressBookTableView( KABC::AddressBook *ab, |
41 | QWidget *parent, const char *name ) | 42 | QWidget *parent, const char *name ) |
42 | : KAddressBookView( ab, parent, name ) | 43 | : KAddressBookView( ab, parent, name ) |
43 | { | 44 | { |
44 | mainLayout = new QVBoxLayout( viewWidget(), 2 ); | 45 | mainLayout = new QVBoxLayout( viewWidget(), 2 ); |
45 | 46 | ||
46 | // The list view will be created when the config is read. | 47 | // The list view will be created when the config is read. |
47 | mListView = 0; | 48 | mListView = 0; |
48 | } | 49 | } |
49 | 50 | ||
50 | KAddressBookTableView::~KAddressBookTableView() | 51 | KAddressBookTableView::~KAddressBookTableView() |
51 | { | 52 | { |
52 | } | 53 | } |
53 | 54 | ||
54 | void KAddressBookTableView::reconstructListView() | 55 | void KAddressBookTableView::reconstructListView() |
55 | { | 56 | { |
56 | if (mListView) | 57 | if (mListView) |
57 | { | 58 | { |
58 | disconnect(mListView, SIGNAL(selectionChanged()), | 59 | disconnect(mListView, SIGNAL(selectionChanged()), |
59 | this, SLOT(addresseeSelected())); | 60 | this, SLOT(addresseeSelected())); |
60 | disconnect(mListView, SIGNAL(executed(QListViewItem*)), | 61 | disconnect(mListView, SIGNAL(executed(QListViewItem*)), |
61 | this, SLOT(addresseeExecuted(QListViewItem*))); | 62 | this, SLOT(addresseeExecuted(QListViewItem*))); |
62 | disconnect(mListView, SIGNAL(doubleClicked(QListViewItem*)), | 63 | disconnect(mListView, SIGNAL(doubleClicked(QListViewItem*)), |
63 | this, SLOT(addresseeExecuted(QListViewItem*))); | 64 | this, SLOT(addresseeExecuted(QListViewItem*))); |
64 | disconnect(mListView, SIGNAL(startAddresseeDrag()), this, | 65 | disconnect(mListView, SIGNAL(startAddresseeDrag()), this, |
65 | SIGNAL(startDrag())); | 66 | SIGNAL(startDrag())); |
66 | disconnect(mListView, SIGNAL(returnPressed(QListViewItem*)), | 67 | disconnect(mListView, SIGNAL(returnPressed(QListViewItem*)), |
67 | this, SLOT(addresseeExecuted(QListViewItem*))); | 68 | this, SLOT(addresseeExecuted(QListViewItem*))); |
68 | 69 | ||
69 | disconnect(mListView, SIGNAL(addresseeDropped(QDropEvent*)), this, | 70 | disconnect(mListView, SIGNAL(addresseeDropped(QDropEvent*)), this, |
70 | SIGNAL(dropped(QDropEvent*))); | 71 | SIGNAL(dropped(QDropEvent*))); |
71 | delete mListView; | 72 | delete mListView; |
72 | } | 73 | } |
73 | 74 | ||
74 | mListView = new ContactListView( this, addressBook(), viewWidget() ); | 75 | mListView = new ContactListView( this, addressBook(), viewWidget() ); |
75 | 76 | ||
76 | // Add the columns | 77 | // Add the columns |
77 | KABC::Field::List fieldList = fields(); | 78 | KABC::Field::List fieldList = fields(); |
78 | KABC::Field::List::ConstIterator it; | 79 | KABC::Field::List::ConstIterator it; |
79 | 80 | ||
80 | int c = 0; | 81 | int c = 0; |
81 | for( it = fieldList.begin(); it != fieldList.end(); ++it ) { | 82 | for( it = fieldList.begin(); it != fieldList.end(); ++it ) { |
82 | mListView->addColumn( (*it)->label() ); | 83 | mListView->addColumn( (*it)->label() ); |
83 | mListView->setColumnWidthMode(c++, QListView::Manual); | 84 | mListView->setColumnWidthMode(c++, QListView::Manual); |