summaryrefslogtreecommitdiff
path: root/noncore/apps/dagger/swordoptionlist.h
authordrw <drw>2004-04-06 16:00:07 (UTC)
committer drw <drw>2004-04-06 16:00:07 (UTC)
commit76406c20db58f6007539db80e0f7b27e7cc3e83f (patch) (unidiff)
tree0f19911a7ec644bb40e0e4650b312ddccffb5ad3 /noncore/apps/dagger/swordoptionlist.h
parent31a82304d62ab4943c0926c35cce552e2164eaf4 (diff)
downloadopie-76406c20db58f6007539db80e0f7b27e7cc3e83f.zip
opie-76406c20db58f6007539db80e0f7b27e7cc3e83f.tar.gz
opie-76406c20db58f6007539db80e0f7b27e7cc3e83f.tar.bz2
New Bible reader app
Diffstat (limited to 'noncore/apps/dagger/swordoptionlist.h') (more/less context) (show whitespace changes)
-rw-r--r--noncore/apps/dagger/swordoptionlist.h44
1 files changed, 44 insertions, 0 deletions
diff --git a/noncore/apps/dagger/swordoptionlist.h b/noncore/apps/dagger/swordoptionlist.h
new file mode 100644
index 0000000..ea492bf
--- a/dev/null
+++ b/noncore/apps/dagger/swordoptionlist.h
@@ -0,0 +1,44 @@
1/*
2Dagger - A Bible study program utilizing the Sword library.
3Copyright (c) 2004 Dan Williams <drw@handhelds.org>
4
5This file is free software; you can redistribute it and/or modify it under
6the terms of the GNU General Public License as published by the Free Software
7Foundation; either version 2 of the License, or (at your option) any later version.
8
9This file is distributed in the hope that it will be useful, but WITHOUT ANY
10WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
11PARTICULAR PURPOSE. See the GNU General Public License for more details.
12
13You should have received a copy of the GNU General Public License along with this
14file; see the file COPYING. If not, write to the Free Software Foundation, Inc.,
1559 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
16*/
17
18#ifndef SWORDOPTIONLIST_H
19#define SWORDOPTIONLIST_H
20
21#include <qaction.h>
22#include <qlist.h>
23
24class SwordOptionList : public QList<QAction>
25{
26private:
27
28 int compareItems( QCollection::Item item1, QCollection::Item item2 )
29 {
30 // Sort by QAction text
31 QString act1 = reinterpret_cast<QAction*>(item1)->text();
32 QString act2 = reinterpret_cast<QAction*>(item2)->text();
33 if ( act1 < act2 )
34 return -1;
35 else if ( act1 == act2 )
36 return 0;
37 else
38 return 1;
39 }
40};
41
42typedef QListIterator<QAction> SwordOptionListIterator;
43
44#endif