summaryrefslogtreecommitdiff
path: root/noncore/apps/dagger/opentextdlg.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/opentextdlg.h
parent31a82304d62ab4943c0926c35cce552e2164eaf4 (diff)
downloadopie-76406c20db58f6007539db80e0f7b27e7cc3e83f.zip
opie-76406c20db58f6007539db80e0f7b27e7cc3e83f.tar.gz
opie-76406c20db58f6007539db80e0f7b27e7cc3e83f.tar.bz2
New Bible reader app
Diffstat (limited to 'noncore/apps/dagger/opentextdlg.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/dagger/opentextdlg.h49
1 files changed, 49 insertions, 0 deletions
diff --git a/noncore/apps/dagger/opentextdlg.h b/noncore/apps/dagger/opentextdlg.h
new file mode 100644
index 0000000..2b53410
--- a/dev/null
+++ b/noncore/apps/dagger/opentextdlg.h
@@ -0,0 +1,49 @@
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 OPENTEXTDLG_H
19#define OPENTEXTDLG_H
20
21#include <qdialog.h>
22#include <qlistview.h>
23
24#include <swmgr.h>
25
26class QPixmap;
27
28class OpenTextDlg : public QDialog
29{
30 Q_OBJECT
31
32public:
33 OpenTextDlg( QWidget *parent = 0x0, sword::SWMgr *swordMgr = 0x0, QPixmap *bibleIcon = 0x0,
34 QPixmap *commentaryIcon = 0x0, QPixmap *lexiconIcon = 0x0 );
35
36 QString selectedText() { return m_textList.currentItem()->text( 1 ); };
37
38private:
39 QListView m_textList; // List of available texts/modules
40
41 QListViewItem *m_bibles; // Pointer to bible section header
42 QListViewItem *m_lexicons; // Pointer to lexicon/dictionary section header
43 QListViewItem *m_commentaries; // Pointer to commentary section header
44
45private slots:
46 void slotItemClicked( QListViewItem *item );
47};
48
49#endif