summaryrefslogtreecommitdiff
path: root/core
Unidiff
Diffstat (limited to 'core') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/osearch/applnksearch.cpp4
-rw-r--r--core/pim/osearch/applnksearch.h6
-rw-r--r--core/pim/osearch/doclnksearch.cpp56
-rw-r--r--core/pim/osearch/doclnksearch.h13
-rw-r--r--core/pim/osearch/mainwindow.cpp10
-rw-r--r--core/pim/osearch/searchgroup.cpp15
-rw-r--r--core/pim/osearch/searchgroup.h3
7 files changed, 87 insertions, 20 deletions
diff --git a/core/pim/osearch/applnksearch.cpp b/core/pim/osearch/applnksearch.cpp
index 5fa36bb..403c719 100644
--- a/core/pim/osearch/applnksearch.cpp
+++ b/core/pim/osearch/applnksearch.cpp
@@ -48,5 +48,7 @@ int AppLnkSearch::search()
48 || (_search.match(app->exec()) != -1) ) { 48 || (_search.match(app->exec()) != -1) ) {
49 insertItem( app ); 49 insertItem( app );
50 } 50 }else
51 if (searchFile( app ))
52 insertItem( app );
51 qApp->processEvents( 100 ); 53 qApp->processEvents( 100 );
52 } 54 }
diff --git a/core/pim/osearch/applnksearch.h b/core/pim/osearch/applnksearch.h
index 6bb7486..853064d 100644
--- a/core/pim/osearch/applnksearch.h
+++ b/core/pim/osearch/applnksearch.h
@@ -17,4 +17,5 @@
17 17
18class AppLnkSet; 18class AppLnkSet;
19class AppLnk;
19 20
20/** 21/**
@@ -25,12 +26,13 @@ class AppLnkSearch : public SearchGroup
25public: 26public:
26 AppLnkSearch(QListView* parent, QString name); 27 AppLnkSearch(QListView* parent, QString name);
27
28 ~AppLnkSearch(); 28 ~AppLnkSearch();
29 29
30 virtual void setSearch(QRegExp); 30 virtual void setSearch(QRegExp);
31
32protected:
31 virtual void load(); 33 virtual void load();
32 virtual int search(); 34 virtual int search();
33 virtual void insertItem( void* ); 35 virtual void insertItem( void* );
34 36 virtual bool searchFile(AppLnk*) { return false; };
35 AppLnkSet *_apps; 37 AppLnkSet *_apps;
36}; 38};
diff --git a/core/pim/osearch/doclnksearch.cpp b/core/pim/osearch/doclnksearch.cpp
index d97eeb8..321d011 100644
--- a/core/pim/osearch/doclnksearch.cpp
+++ b/core/pim/osearch/doclnksearch.cpp
@@ -11,18 +11,29 @@
11// 11//
12// 12//
13#include "doclnksearch.h"
14 13
15#include <qpe/applnk.h> 14#include <qaction.h>
16#include <qpe/qpeapplication.h> 15#include <qfile.h>
17#include <qiconset.h> 16#include <qiconset.h>
17#include <qpopupmenu.h>
18#include <qtextstream.h>
19#include <qpe/applnk.h>
20#include <qpe/config.h>
18#include <qpe/resource.h> 21#include <qpe/resource.h>
22#include <qpe/qpeapplication.h>
23#include <opie/owait.h>
19 24
20#include "doclnkitem.h" 25#include "doclnkitem.h"
26#include "doclnksearch.h"
21 27
22DocLnkSearch::DocLnkSearch(QListView* parent, QString name) 28DocLnkSearch::DocLnkSearch(QListView* parent, QString name)
23: AppLnkSearch(parent, name) 29: AppLnkSearch(parent, name), _popupMenu(0)
24{ 30{
25 QIconSet is = Resource::loadIconSet( "osearch/documents" ); 31 QIconSet is = Resource::loadIconSet( "osearch/documents" );
26 setPixmap( 0, is.pixmap( QIconSet::Small, true ) ); 32 setPixmap( 0, is.pixmap( QIconSet::Small, true ) );
33
34 actionSearchInFiles = new QAction( QObject::tr("search content"),QString::null, 0, 0, 0, true );
35 Config cfg( "osearch", Config::User );
36 cfg.setGroup( "doclnk_settings" );
37 actionSearchInFiles->setOn( cfg.readBoolEntry( "search_content", false ) );
27} 38}
28 39
@@ -30,4 +41,7 @@ DocLnkSearch::DocLnkSearch(QListView* parent, QString name)
30DocLnkSearch::~DocLnkSearch() 41DocLnkSearch::~DocLnkSearch()
31{ 42{
43 Config cfg( "osearch", Config::User );
44 cfg.setGroup( "doclnk_settings" );
45 cfg.writeEntry( "search_content", actionSearchInFiles->isOn() );
32} 46}
33 47
@@ -37,4 +51,28 @@ void DocLnkSearch::load()
37} 51}
38 52
53bool DocLnkSearch::searchFile( AppLnk *app )
54{
55 if (!actionSearchInFiles->isOn()) return false;
56 DocLnk *doc = (DocLnk*)app;
57 bool found = false;
58 if ( doc->type().contains( "text" ) ){
59#ifdef NEW_OWAIT
60 QString ouput = QObject::tr("searching %1").arg(doc->file());
61 OWait( output );
62#endif
63 QFile f(doc->file());
64 if ( f.open(IO_ReadOnly) ) {
65 QTextStream t( &f );
66 while ( !t.eof() )
67 if (_search.match( t.readLine()) != -1) {
68 found = true;
69 break;
70 }
71 }
72 f.close();
73 }
74 return found;
75}
76
39void DocLnkSearch::insertItem( void *rec ) 77void DocLnkSearch::insertItem( void *rec )
40{ 78{
@@ -42,2 +80,12 @@ void DocLnkSearch::insertItem( void *rec )
42 _resultCount++; 80 _resultCount++;
43} 81}
82
83
84QPopupMenu* DocLnkSearch::popupMenu()
85{
86 if (!_popupMenu){
87 _popupMenu = new QPopupMenu( 0 );
88 actionSearchInFiles->addTo( _popupMenu );
89 }
90 return _popupMenu;
91}
diff --git a/core/pim/osearch/doclnksearch.h b/core/pim/osearch/doclnksearch.h
index e2ac40b..81a8e62 100644
--- a/core/pim/osearch/doclnksearch.h
+++ b/core/pim/osearch/doclnksearch.h
@@ -3,5 +3,5 @@
3// C++ Interface: $MODULE$ 3// C++ Interface: $MODULE$
4// 4//
5// Description: 5// Description:
6// 6//
7// 7//
@@ -16,8 +16,11 @@
16#include "applnksearch.h" 16#include "applnksearch.h"
17 17
18class QAction;
19class QPopupMenu;
20
18/** 21/**
19@author Patrick S. Vogt 22@author Patrick S. Vogt
20*/ 23*/
21class DocLnkSearch : public AppLnkSearch 24class DocLnkSearch : public AppLnkSearch
22{ 25{
23public: 26public:
@@ -25,7 +28,13 @@ public:
25 ~DocLnkSearch(); 28 ~DocLnkSearch();
26 29
30 virtual QPopupMenu* popupMenu();
31
27protected: 32protected:
28 virtual void load(); 33 virtual void load();
34 virtual bool searchFile(AppLnk*);
29 virtual void insertItem( void* ); 35 virtual void insertItem( void* );
36private:
37 QAction *actionSearchInFiles;
38 QPopupMenu *_popupMenu;
30 39
31}; 40};
diff --git a/core/pim/osearch/mainwindow.cpp b/core/pim/osearch/mainwindow.cpp
index 89ab690..6070fdf 100644
--- a/core/pim/osearch/mainwindow.cpp
+++ b/core/pim/osearch/mainwindow.cpp
@@ -21,4 +21,5 @@
21#include <qpe/config.h> 21#include <qpe/config.h>
22#include <qpe/global.h> 22#include <qpe/global.h>
23#include <opie/owait.h>
23#include <qaction.h> 24#include <qaction.h>
24#include <qmessagebox.h> 25#include <qmessagebox.h>
@@ -212,5 +213,4 @@ void MainWindow::stopTimer(QListViewItem*)
212void MainWindow::showPopup() 213void MainWindow::showPopup()
213{ 214{
214 qDebug("showPopup");
215 popupTimer->stop(); 215 popupTimer->stop();
216 if (!_currentItem) return; 216 if (!_currentItem) return;
@@ -228,4 +228,7 @@ void MainWindow::setSearch( const QString &key )
228void MainWindow::searchStringChanged() 228void MainWindow::searchStringChanged()
229{ 229{
230#ifdef NEW_OWAIT
231 OWait("setting search string");
232#endif
230 searchTimer->stop(); 233 searchTimer->stop();
231 QString ss = _searchString; 234 QString ss = _searchString;
@@ -233,5 +236,5 @@ void MainWindow::searchStringChanged()
233 //if (actionWholeWordsOnly->isOn()) 236 //if (actionWholeWordsOnly->isOn())
234 // ss = "\\s"+_searchString+"\\s"; 237 // ss = "\\s"+_searchString+"\\s";
235 qDebug(" set searchString >%s<",ss.latin1()); 238 //qDebug(" set searchString >%s<",ss.latin1());
236 QRegExp re( ss ); 239 QRegExp re( ss );
237 re.setCaseSensitive( actionCaseSensitiv->isOn() ); 240 re.setCaseSensitive( actionCaseSensitiv->isOn() );
@@ -243,4 +246,7 @@ void MainWindow::searchStringChanged()
243void MainWindow::searchAll() 246void MainWindow::searchAll()
244{ 247{
248#ifdef NEW_OWAIT
249 OWait("searching...");
250#endif
245 for (SearchGroup *s = searches.first(); s != 0; s = searches.next() ){ 251 for (SearchGroup *s = searches.first(); s != 0; s = searches.next() ){
246 s->doSearch(); 252 s->doSearch();
diff --git a/core/pim/osearch/searchgroup.cpp b/core/pim/osearch/searchgroup.cpp
index e307696..0b58176 100644
--- a/core/pim/osearch/searchgroup.cpp
+++ b/core/pim/osearch/searchgroup.cpp
@@ -11,6 +11,6 @@
11// 11//
12// 12//
13#include "searchgroup.h"
14 13
14#include <qobject.h>
15#include <qregexp.h> 15#include <qregexp.h>
16#include <qapplication.h> 16#include <qapplication.h>
@@ -18,6 +18,6 @@
18 18
19#include "olistviewitem.h" 19#include "olistviewitem.h"
20#include "searchgroup.h"
20 21
21//#define NEW_OWAIT
22#ifndef NEW_OWAIT 22#ifndef NEW_OWAIT
23static OWait *wait = 0; 23static OWait *wait = 0;
@@ -40,5 +40,5 @@ void SearchGroup::expand()
40{ 40{
41 //expanded = true; 41 //expanded = true;
42 clearList(); 42 if (_lastSearch != _search) clearList();
43 if (_search.isEmpty()) return; 43 if (_search.isEmpty()) return;
44 OListViewItem *dummy = new OListViewItem( this, "searching..."); 44 OListViewItem *dummy = new OListViewItem( this, "searching...");
@@ -70,22 +70,21 @@ void SearchGroup::setSearch(QRegExp re)
70int SearchGroup::realSearch() 70int SearchGroup::realSearch()
71{ 71{
72 if (_lastSearch == _search) return _resultCount;
72#ifndef NEW_OWAIT 73#ifndef NEW_OWAIT
73 qDebug("NOT using NEW_OWAIT");
74 if (!wait) wait = new OWait( qApp->mainWidget(), "osearch" ); 74 if (!wait) wait = new OWait( qApp->mainWidget(), "osearch" );
75 wait->show(); 75 wait->show();
76 qApp->processEvents(); 76 qApp->processEvents();
77#else 77#else
78 qDebug("using NEW_OWAIT"); 78 qDebug("********** NEW_OWAIT *************");
79 OWait::start( "osearch" ); 79 OWait( "searching" );
80#endif 80#endif
81 if (!loaded) load(); 81 if (!loaded) load();
82 _resultCount = 0; 82 _resultCount = 0;
83 _resultCount = search(); 83 _resultCount = search();
84 _lastSearch = _search;
84 setText(0, _name + " - " + _search.pattern() + " (" + QString::number( _resultCount ) + ")"); 85 setText(0, _name + " - " + _search.pattern() + " (" + QString::number( _resultCount ) + ")");
85 86
86#ifndef NEW_OWAIT 87#ifndef NEW_OWAIT
87 wait->hide(); 88 wait->hide();
88#else
89 OWait::stop();
90#endif 89#endif
91 return _resultCount; 90 return _resultCount;
diff --git a/core/pim/osearch/searchgroup.h b/core/pim/osearch/searchgroup.h
index a755e06..ad37d4e 100644
--- a/core/pim/osearch/searchgroup.h
+++ b/core/pim/osearch/searchgroup.h
@@ -35,8 +35,9 @@ public:
35 35
36protected: 36protected:
37 QRegExp _search;
38 virtual void load() = 0; 37 virtual void load() = 0;
39 virtual int search() = 0; 38 virtual int search() = 0;
40 virtual void insertItem( void* ) = 0; 39 virtual void insertItem( void* ) = 0;
40 QRegExp _search;
41 QRegExp _lastSearch;
41 QString _name; 42 QString _name;
42 bool loaded; 43 bool loaded;