-rw-r--r-- | core/pim/osearch/adresssearch.cpp | 3 | ||||
-rw-r--r-- | core/pim/osearch/contactitem.cpp | 2 | ||||
-rw-r--r-- | core/pim/osearch/mainwindow.cpp | 24 |
3 files changed, 16 insertions, 13 deletions
diff --git a/core/pim/osearch/adresssearch.cpp b/core/pim/osearch/adresssearch.cpp index 252fb40..2cd545f 100644 --- a/core/pim/osearch/adresssearch.cpp +++ b/core/pim/osearch/adresssearch.cpp | |||
@@ -9,16 +9,17 @@ | |||
9 | // | 9 | // |
10 | // Copyright: See COPYING file that comes with this distribution | 10 | // Copyright: See COPYING file that comes with this distribution |
11 | // | 11 | // |
12 | // | 12 | // |
13 | #include "adresssearch.h" | 13 | #include "adresssearch.h" |
14 | 14 | ||
15 | #include <opie/ocontactaccess.h> | ||
16 | #include <qstring.h> | 15 | #include <qstring.h> |
17 | #include <qiconset.h> | 16 | #include <qiconset.h> |
17 | #include <qwhatsthis.h> | ||
18 | #include <qpe/resource.h> | 18 | #include <qpe/resource.h> |
19 | #include <opie/ocontactaccess.h> | ||
19 | 20 | ||
20 | #include "contactitem.h" | 21 | #include "contactitem.h" |
21 | 22 | ||
22 | AdressSearch::AdressSearch(QListView* parent, QString name): | 23 | AdressSearch::AdressSearch(QListView* parent, QString name): |
23 | SearchGroup(parent, name) | 24 | SearchGroup(parent, name) |
24 | { | 25 | { |
diff --git a/core/pim/osearch/contactitem.cpp b/core/pim/osearch/contactitem.cpp index 68e0cd4..c4738ae 100644 --- a/core/pim/osearch/contactitem.cpp +++ b/core/pim/osearch/contactitem.cpp | |||
@@ -39,14 +39,12 @@ void ContactItem::setIcon() | |||
39 | icon = Resource::loadPixmap( "addressbook/faxwork" ); | 39 | icon = Resource::loadPixmap( "addressbook/faxwork" ); |
40 | break; | 40 | break; |
41 | case Qtopia::BusinessMobile: | 41 | case Qtopia::BusinessMobile: |
42 | icon = Resource::loadPixmap( "addressbook/mobilework" ); | 42 | icon = Resource::loadPixmap( "addressbook/mobilework" ); |
43 | break; | 43 | break; |
44 | case Qtopia::DefaultEmail: | 44 | case Qtopia::DefaultEmail: |
45 | icon = Resource::loadPixmap( "addressbook/email" ); | ||
46 | break; | ||
47 | case Qtopia::Emails: | 45 | case Qtopia::Emails: |
48 | icon = Resource::loadPixmap( "addressbook/email" ); | 46 | icon = Resource::loadPixmap( "addressbook/email" ); |
49 | break; | 47 | break; |
50 | case Qtopia::HomePhone: | 48 | case Qtopia::HomePhone: |
51 | icon = Resource::loadPixmap( "addressbook/phonehome" ); | 49 | icon = Resource::loadPixmap( "addressbook/phonehome" ); |
52 | break; | 50 | break; |
diff --git a/core/pim/osearch/mainwindow.cpp b/core/pim/osearch/mainwindow.cpp index 2936b17..c6934db 100644 --- a/core/pim/osearch/mainwindow.cpp +++ b/core/pim/osearch/mainwindow.cpp | |||
@@ -7,23 +7,13 @@ | |||
7 | * * | 7 | * * |
8 | ***************************************************************************/ | 8 | ***************************************************************************/ |
9 | 9 | ||
10 | // (c) 2002 Patrick S. Vogt <tille@handhelds.org> | 10 | // (c) 2002 Patrick S. Vogt <tille@handhelds.org> |
11 | 11 | ||
12 | 12 | ||
13 | #include "mainwindow.h" | ||
14 | 13 | ||
15 | #include <qpe/qpemenubar.h> | ||
16 | #include <qpe/qpemessagebox.h> | ||
17 | #include <qpe/resource.h> | ||
18 | #include <qpe/config.h> | ||
19 | #include <qpe/qpetoolbar.h> | ||
20 | #include <qpe/qpeapplication.h> | ||
21 | #include <qpe/config.h> | ||
22 | #include <qpe/global.h> | ||
23 | #include <opie/owait.h> | ||
24 | #include <qaction.h> | 14 | #include <qaction.h> |
25 | #include <qmessagebox.h> | 15 | #include <qmessagebox.h> |
26 | #include <qpopupmenu.h> | 16 | #include <qpopupmenu.h> |
27 | #include <qtoolbutton.h> | 17 | #include <qtoolbutton.h> |
28 | #include <qstring.h> | 18 | #include <qstring.h> |
29 | #include <qlabel.h> | 19 | #include <qlabel.h> |
@@ -32,21 +22,32 @@ | |||
32 | #include <qpushbutton.h> | 22 | #include <qpushbutton.h> |
33 | #include <qintdict.h> | 23 | #include <qintdict.h> |
34 | #include <qlayout.h> | 24 | #include <qlayout.h> |
35 | #include <qlineedit.h> | 25 | #include <qlineedit.h> |
36 | #include <qtextbrowser.h> | 26 | #include <qtextbrowser.h> |
37 | #include <qregexp.h> | 27 | #include <qregexp.h> |
28 | #include <qwhatsthis.h> | ||
29 | #include <qpe/qpemenubar.h> | ||
30 | #include <qpe/qpemessagebox.h> | ||
31 | #include <qpe/resource.h> | ||
32 | #include <qpe/config.h> | ||
33 | #include <qpe/qpetoolbar.h> | ||
34 | #include <qpe/qpeapplication.h> | ||
35 | #include <qpe/config.h> | ||
36 | #include <qpe/global.h> | ||
37 | #include <opie/owait.h> | ||
38 | 38 | ||
39 | #include "olistview.h" | 39 | #include "olistview.h" |
40 | #include "olistviewitem.h" | 40 | #include "olistviewitem.h" |
41 | #include "resultitem.h" | 41 | #include "resultitem.h" |
42 | #include "adresssearch.h" | 42 | #include "adresssearch.h" |
43 | #include "todosearch.h" | 43 | #include "todosearch.h" |
44 | #include "datebooksearch.h" | 44 | #include "datebooksearch.h" |
45 | #include "applnksearch.h" | 45 | #include "applnksearch.h" |
46 | #include "doclnksearch.h" | 46 | #include "doclnksearch.h" |
47 | #include "mainwindow.h" | ||
47 | 48 | ||
48 | MainWindow::MainWindow( QWidget *parent, const char *name, WFlags f ) : | 49 | MainWindow::MainWindow( QWidget *parent, const char *name, WFlags f ) : |
49 | QMainWindow( parent, name, f ), _currentItem(0) | 50 | QMainWindow( parent, name, f ), _currentItem(0) |
50 | { | 51 | { |
51 | setCaption( tr("OSearch") ); | 52 | setCaption( tr("OSearch") ); |
52 | 53 | ||
@@ -63,12 +64,13 @@ MainWindow::MainWindow( QWidget *parent, const char *name, WFlags f ) : | |||
63 | resultsList->setSizePolicy( QSizePolicy( QSizePolicy::MinimumExpanding, QSizePolicy::MinimumExpanding)); | 64 | resultsList->setSizePolicy( QSizePolicy( QSizePolicy::MinimumExpanding, QSizePolicy::MinimumExpanding)); |
64 | mainLayout->addWidget( resultsList ); | 65 | mainLayout->addWidget( resultsList ); |
65 | 66 | ||
66 | detailsFrame = new QFrame( mainFrame, "detailsFrame" ); | 67 | detailsFrame = new QFrame( mainFrame, "detailsFrame" ); |
67 | QVBoxLayout *detailsLayout = new QVBoxLayout( detailsFrame ); | 68 | QVBoxLayout *detailsLayout = new QVBoxLayout( detailsFrame ); |
68 | richEdit = new QTextView( detailsFrame ); | 69 | richEdit = new QTextView( detailsFrame ); |
70 | QWhatsThis::add( richEdit, tr("The details of the current result") ); | ||
69 | richEdit->setSizePolicy( QSizePolicy( QSizePolicy::MinimumExpanding, QSizePolicy::MinimumExpanding)); | 71 | richEdit->setSizePolicy( QSizePolicy( QSizePolicy::MinimumExpanding, QSizePolicy::MinimumExpanding)); |
70 | detailsLayout->addWidget( richEdit ); | 72 | detailsLayout->addWidget( richEdit ); |
71 | 73 | ||
72 | buttonGroupActions = new QHButtonGroup( this ); | 74 | buttonGroupActions = new QHButtonGroup( this ); |
73 | buttonGroupActions->hide(); | 75 | buttonGroupActions->hide(); |
74 | _buttonCount = 0; | 76 | _buttonCount = 0; |
@@ -131,12 +133,13 @@ void MainWindow::makeMenu() | |||
131 | } | 133 | } |
132 | 134 | ||
133 | 135 | ||
134 | //SEARCH | 136 | //SEARCH |
135 | SearchAllAction = new QAction( tr("Search all"),QString::null, 0, this, 0 ); | 137 | SearchAllAction = new QAction( tr("Search all"),QString::null, 0, this, 0 ); |
136 | SearchAllAction->setIconSet( Resource::loadIconSet( "find" ) ); | 138 | SearchAllAction->setIconSet( Resource::loadIconSet( "find" ) ); |
139 | // QWhatsThis::add( SearchAllAction, tr("Search everything...") ); | ||
137 | connect( SearchAllAction, SIGNAL(activated()), this, SLOT(searchAll()) ); | 140 | connect( SearchAllAction, SIGNAL(activated()), this, SLOT(searchAll()) ); |
138 | SearchAllAction->addTo( searchMenu ); | 141 | SearchAllAction->addTo( searchMenu ); |
139 | searchMenu->insertItem( tr( "Options" ), searchOptions ); | 142 | searchMenu->insertItem( tr( "Options" ), searchOptions ); |
140 | 143 | ||
141 | //SEARCH OPTIONS | 144 | //SEARCH OPTIONS |
142 | //actionWholeWordsOnly = new QAction( tr("Whole words only"),QString::null, 0, this, 0, true ); | 145 | //actionWholeWordsOnly = new QAction( tr("Whole words only"),QString::null, 0, this, 0, true ); |
@@ -146,12 +149,13 @@ void MainWindow::makeMenu() | |||
146 | actionWildcards = new QAction( tr("Use wildcards"),QString::null, 0, this, 0, true ); | 149 | actionWildcards = new QAction( tr("Use wildcards"),QString::null, 0, this, 0, true ); |
147 | actionWildcards->addTo( searchOptions ); | 150 | actionWildcards->addTo( searchOptions ); |
148 | 151 | ||
149 | //SEARCH BAR | 152 | //SEARCH BAR |
150 | addToolBar( searchBar, "Search", QMainWindow::Top, TRUE ); | 153 | addToolBar( searchBar, "Search", QMainWindow::Top, TRUE ); |
151 | QLineEdit *searchEdit = new QLineEdit( searchBar, "seachEdit" ); | 154 | QLineEdit *searchEdit = new QLineEdit( searchBar, "seachEdit" ); |
155 | QWhatsThis::add( searchEdit, tr("Enter your search terms here") ); | ||
152 | searchEdit->setFocus(); | 156 | searchEdit->setFocus(); |
153 | searchBar->setHorizontalStretchable( TRUE ); | 157 | searchBar->setHorizontalStretchable( TRUE ); |
154 | searchBar->setStretchableWidget( searchEdit ); | 158 | searchBar->setStretchableWidget( searchEdit ); |
155 | SearchAllAction->addTo( searchBar ); | 159 | SearchAllAction->addTo( searchBar ); |
156 | connect( searchEdit, SIGNAL( textChanged( const QString & ) ), | 160 | connect( searchEdit, SIGNAL( textChanged( const QString & ) ), |
157 | this, SLOT( setSearch( const QString & ) ) ); | 161 | this, SLOT( setSearch( const QString & ) ) ); |