summaryrefslogtreecommitdiff
path: root/core
authortille <tille>2003-05-10 16:51:45 (UTC)
committer tille <tille>2003-05-10 16:51:45 (UTC)
commitbb282009a5d37c77c9239d0e78950290f026d7a8 (patch) (unidiff)
treef77f8299f6cb4393d98e005963b116bab6a27989 /core
parent2a37284ab7ea4a29b6e55a84445ad5b2e3d6739b (diff)
downloadopie-bb282009a5d37c77c9239d0e78950290f026d7a8.zip
opie-bb282009a5d37c77c9239d0e78950290f026d7a8.tar.gz
opie-bb282009a5d37c77c9239d0e78950290f026d7a8.tar.bz2
applnk search
Diffstat (limited to 'core') (more/less context) (show whitespace changes)
-rw-r--r--core/pim/osearch/applnkitem.cpp54
-rw-r--r--core/pim/osearch/applnkitem.h37
-rw-r--r--core/pim/osearch/applnksearch.cpp46
-rw-r--r--core/pim/osearch/applnksearch.h35
-rw-r--r--core/pim/osearch/mainwindow.cpp4
-rw-r--r--core/pim/osearch/mainwindow.h2
-rw-r--r--core/pim/osearch/osearch.pro8
7 files changed, 183 insertions, 3 deletions
diff --git a/core/pim/osearch/applnkitem.cpp b/core/pim/osearch/applnkitem.cpp
new file mode 100644
index 0000000..f45ed68
--- a/dev/null
+++ b/core/pim/osearch/applnkitem.cpp
@@ -0,0 +1,54 @@
1//
2//
3// C++ Implementation: $MODULE$
4//
5// Description:
6//
7//
8// Author: Patrick S. Vogt <tille@handhelds.org>, (C) 2003
9//
10// Copyright: See COPYING file that comes with this distribution
11//
12//
13#include "applnkitem.h"
14
15#include <qpe/applnk.h>
16
17AppLnkItem::AppLnkItem(OListViewItem* parent, AppLnk *app)
18 : ResultItem(parent)
19{
20 _app = app;
21 setText(0, _app->name() );
22}
23
24
25AppLnkItem::~AppLnkItem()
26{
27}
28
29
30QString AppLnkItem::toRichText()
31{
32 QString text;
33 text += "<b><h3>";
34 text += _app->name();
35 text += "</b></h3><br>";
36 text += _app->comment();
37 text += "<br><br>`";
38 text += _app->exec();
39 text += "`";
40 return text;
41}
42
43void AppLnkItem::editItem()
44{
45 _app->execute();
46}
47
48void AppLnkItem::showItem()
49{
50 /* QCopEnvelope e("QPE/Application/addressbook", "edit(int)");
51 e << _contact->uid();*/
52 ResultItem::showItem();
53}
54
diff --git a/core/pim/osearch/applnkitem.h b/core/pim/osearch/applnkitem.h
new file mode 100644
index 0000000..b28631a
--- a/dev/null
+++ b/core/pim/osearch/applnkitem.h
@@ -0,0 +1,37 @@
1//
2//
3// C++ Interface: $MODULE$
4//
5// Description:
6//
7//
8// Author: Patrick S. Vogt <tille@handhelds.org>, (C) 2003
9//
10// Copyright: See COPYING file that comes with this distribution
11//
12//
13#ifndef APPLNKITEM_H
14#define APPLNKITEM_H
15
16#include "resultitem.h"
17
18class AppLnk;
19
20/**
21@author Patrick S. Vogt
22*/
23class AppLnkItem : public ResultItem
24{
25public:
26 AppLnkItem(OListViewItem* parent, AppLnk *app);
27 ~AppLnkItem();
28
29 virtual QString toRichText();
30 virtual void editItem();
31 virtual void showItem();
32
33private:
34 AppLnk *_app;
35};
36
37#endif
diff --git a/core/pim/osearch/applnksearch.cpp b/core/pim/osearch/applnksearch.cpp
new file mode 100644
index 0000000..7872ae3
--- a/dev/null
+++ b/core/pim/osearch/applnksearch.cpp
@@ -0,0 +1,46 @@
1//
2//
3// C++ Implementation: $MODULE$
4//
5// Description:
6//
7//
8// Author: Patrick S. Vogt <tille@handhelds.org>, (C) 2003
9//
10// Copyright: See COPYING file that comes with this distribution
11//
12//
13#include "applnksearch.h"
14
15#include <qpe/applnk.h>
16#include <qpe/qpeapplication.h>
17
18#include "applnkitem.h"
19
20AppLnkSearch::AppLnkSearch(QListView* parent, QString name): SearchGroup(parent, name)
21{
22 _apps = 0;
23}
24
25
26AppLnkSearch::~AppLnkSearch()
27{
28 delete _apps;
29}
30
31
32void AppLnkSearch::expand()
33{
34 SearchGroup::expand();
35 if (_search.isEmpty()) return;
36 if (!_apps) _apps = new AppLnkSet(QPEApplication::qpeDir());
37 QList<AppLnk> appList = _apps->children();
38 for ( AppLnk *app = appList.first(); app != 0; app = appList.next() ){
39 // if (app->name().contains(_search) || app->comment().contains(_search))
40 if ( (_search.match( app->name() ) != -1)
41 || (_search.match(app->comment()) != -1)
42 || (_search.match(app->exec()) != -1) )
43 new AppLnkItem( this, app );
44 }
45}
46
diff --git a/core/pim/osearch/applnksearch.h b/core/pim/osearch/applnksearch.h
new file mode 100644
index 0000000..e283cd3
--- a/dev/null
+++ b/core/pim/osearch/applnksearch.h
@@ -0,0 +1,35 @@
1//
2//
3// C++ Interface: $MODULE$
4//
5// Description:
6//
7//
8// Author: Patrick S. Vogt <tille@handhelds.org>, (C) 2003
9//
10// Copyright: See COPYING file that comes with this distribution
11//
12//
13#ifndef APPLNKSEARCH_H
14#define APPLNKSEARCH_H
15
16#include "searchgroup.h"
17
18class AppLnkSet;
19
20/**
21@author Patrick S. Vogt
22*/
23class AppLnkSearch : public SearchGroup
24{
25public:
26 AppLnkSearch(QListView* parent, QString name);
27
28 ~AppLnkSearch();
29
30 virtual void expand();
31private:
32 AppLnkSet *_apps;
33};
34
35#endif
diff --git a/core/pim/osearch/mainwindow.cpp b/core/pim/osearch/mainwindow.cpp
index 3dba3a9..41ce5b6 100644
--- a/core/pim/osearch/mainwindow.cpp
+++ b/core/pim/osearch/mainwindow.cpp
@@ -36,7 +36,7 @@
36#include "adresssearch.h" 36#include "adresssearch.h"
37#include "todosearch.h" 37#include "todosearch.h"
38#include "datebooksearch.h" 38#include "datebooksearch.h"
39 39#include "applnksearch.h"
40 40
41MainWindow::MainWindow( QWidget *parent, const char *name, WFlags f ) : 41MainWindow::MainWindow( QWidget *parent, const char *name, WFlags f ) :
42 QMainWindow( parent, name, f ), _currentItem(0) 42 QMainWindow( parent, name, f ), _currentItem(0)
@@ -77,6 +77,7 @@ MainWindow::MainWindow( QWidget *parent, const char *name, WFlags f ) :
77 adrSearch = new AdressSearch( resultsList, tr("adressbook") ); 77 adrSearch = new AdressSearch( resultsList, tr("adressbook") );
78 todoSearch = new TodoSearch( resultsList, tr("todo") ); 78 todoSearch = new TodoSearch( resultsList, tr("todo") );
79 datebookSearch = new DatebookSearch( resultsList, tr("datebook") ); 79 datebookSearch = new DatebookSearch( resultsList, tr("datebook") );
80 applnkSearch = new AppLnkSearch( resultsList, tr("applications") );
80 81
81 makeMenu(); 82 makeMenu();
82 setCentralWidget( mainFrame ); 83 setCentralWidget( mainFrame );
@@ -155,6 +156,7 @@ void MainWindow::setSearch( const QString &key )
155 adrSearch->setSearch(key); 156 adrSearch->setSearch(key);
156 todoSearch->setSearch(key); 157 todoSearch->setSearch(key);
157 datebookSearch->setSearch(key); 158 datebookSearch->setSearch(key);
159 applnkSearch->setSearch(key);
158} 160}
159 161
160 162
diff --git a/core/pim/osearch/mainwindow.h b/core/pim/osearch/mainwindow.h
index f7e8f8e..f79504c 100644
--- a/core/pim/osearch/mainwindow.h
+++ b/core/pim/osearch/mainwindow.h
@@ -28,6 +28,7 @@ class OListViewItem;
28class AdressSearch; 28class AdressSearch;
29class TodoSearch; 29class TodoSearch;
30class DatebookSearch; 30class DatebookSearch;
31class AppLnkSearch;
31 32
32class MainWindow : public QMainWindow 33class MainWindow : public QMainWindow
33{ 34{
@@ -61,6 +62,7 @@ private:
61 AdressSearch *adrSearch; 62 AdressSearch *adrSearch;
62 TodoSearch *todoSearch; 63 TodoSearch *todoSearch;
63 DatebookSearch *datebookSearch; 64 DatebookSearch *datebookSearch;
65 AppLnkSearch *applnkSearch;
64 66
65 void makeMenu(); 67 void makeMenu();
66}; 68};
diff --git a/core/pim/osearch/osearch.pro b/core/pim/osearch/osearch.pro
index 397bc83..75e90f2 100644
--- a/core/pim/osearch/osearch.pro
+++ b/core/pim/osearch/osearch.pro
@@ -18,7 +18,9 @@ SOURCES += main.cpp \
18 resultitem.cpp \ 18 resultitem.cpp \
19 todoitem.cpp \ 19 todoitem.cpp \
20 contactitem.cpp \ 20 contactitem.cpp \
21 eventitem.cpp 21 eventitem.cpp \
22 applnksearch.cpp \
23 applnkitem.cpp
22HEADERS += mainwindow.h \ 24HEADERS += mainwindow.h \
23 olistview.h \ 25 olistview.h \
24 olistviewitem.h \ 26 olistviewitem.h \
@@ -29,4 +31,6 @@ HEADERS += mainwindow.h \
29 resultitem.h \ 31 resultitem.h \
30 todoitem.h \ 32 todoitem.h \
31 contactitem.h \ 33 contactitem.h \
32 eventitem.h 34 eventitem.h \
35 applnksearch.h \
36 applnkitem.h