author | tille <tille> | 2003-05-11 19:29:27 (UTC) |
---|---|---|
committer | tille <tille> | 2003-05-11 19:29:27 (UTC) |
commit | 10de2c93dffa16f6d2f1cf72fa20008757c5ef3a (patch) (side-by-side diff) | |
tree | 561f501cf966e1f3ee6c9ce6d76ab9c227e7708a /core | |
parent | 43c18630840a98aed8deb96b454957c40f0a4344 (diff) | |
download | opie-10de2c93dffa16f6d2f1cf72fa20008757c5ef3a.zip opie-10de2c93dffa16f6d2f1cf72fa20008757c5ef3a.tar.gz opie-10de2c93dffa16f6d2f1cf72fa20008757c5ef3a.tar.bz2 |
colabse applnkitem in case of new search, since it's far to slow...
... I wonder how slow osearch will be on the pda!
-rw-r--r-- | core/pim/osearch/applnksearch.cpp | 8 | ||||
-rw-r--r-- | core/pim/osearch/applnksearch.h | 2 | ||||
-rw-r--r-- | core/pim/osearch/searchgroup.h | 1 |
3 files changed, 9 insertions, 2 deletions
diff --git a/core/pim/osearch/applnksearch.cpp b/core/pim/osearch/applnksearch.cpp index d5b2930..acf650a 100644 --- a/core/pim/osearch/applnksearch.cpp +++ b/core/pim/osearch/applnksearch.cpp @@ -44,12 +44,20 @@ int AppLnkSearch::search() || (_search.match(app->exec()) != -1) ) { count++; insertItem( app ); } } return count; } void AppLnkSearch::insertItem( void *rec ) { new AppLnkItem( this, (AppLnk*)rec ); } + +void AppLnkSearch::setSearch(QRegExp re) +{ + expanded = false; + setOpen( false ); + SearchGroup::setSearch( re ); +} + diff --git a/core/pim/osearch/applnksearch.h b/core/pim/osearch/applnksearch.h index d88a8ce..6bb7486 100644 --- a/core/pim/osearch/applnksearch.h +++ b/core/pim/osearch/applnksearch.h @@ -18,21 +18,21 @@ class AppLnkSet; /** @author Patrick S. Vogt */ class AppLnkSearch : public SearchGroup { public: AppLnkSearch(QListView* parent, QString name); ~AppLnkSearch(); -protected: + virtual void setSearch(QRegExp); virtual void load(); virtual int search(); virtual void insertItem( void* ); AppLnkSet *_apps; }; #endif diff --git a/core/pim/osearch/searchgroup.h b/core/pim/osearch/searchgroup.h index ebe1193..35949f0 100644 --- a/core/pim/osearch/searchgroup.h +++ b/core/pim/osearch/searchgroup.h @@ -30,20 +30,19 @@ public: virtual void expand(); virtual void setSearch(QString); virtual void setSearch(QRegExp); virtual int rtti() { return Searchgroup;} protected: QRegExp _search; virtual void load() = 0; virtual int search() = 0; virtual void insertItem( void* ) = 0; -private: void clearList(); QString _name; bool expanded; bool loaded; }; #endif |