summaryrefslogtreecommitdiff
path: root/noncore/apps/dagger/opentextdlg.h
Unidiff
Diffstat (limited to 'noncore/apps/dagger/opentextdlg.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/dagger/opentextdlg.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/noncore/apps/dagger/opentextdlg.h b/noncore/apps/dagger/opentextdlg.h
index 2b53410..9d909e2 100644
--- a/noncore/apps/dagger/opentextdlg.h
+++ b/noncore/apps/dagger/opentextdlg.h
@@ -1,48 +1,49 @@
1/* 1/*
2Dagger - A Bible study program utilizing the Sword library. 2Dagger - A Bible study program utilizing the Sword library.
3Copyright (c) 2004 Dan Williams <drw@handhelds.org> 3Copyright (c) 2004 Dan Williams <drw@handhelds.org>
4 4
5This file is free software; you can redistribute it and/or modify it under 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 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. 7Foundation; either version 2 of the License, or (at your option) any later version.
8 8
9This file is distributed in the hope that it will be useful, but WITHOUT ANY 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 10WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
11PARTICULAR PURPOSE. See the GNU General Public License for more details. 11PARTICULAR PURPOSE. See the GNU General Public License for more details.
12 12
13You should have received a copy of the GNU General Public License along with this 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., 14file; see the file COPYING. If not, write to the Free Software Foundation, Inc.,
1559 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 1559 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
16*/ 16*/
17 17
18#ifndef OPENTEXTDLG_H 18#ifndef OPENTEXTDLG_H
19#define OPENTEXTDLG_H 19#define OPENTEXTDLG_H
20 20
21#include <qdialog.h> 21#include <qdialog.h>
22#include <qlistview.h> 22#include <qlistview.h>
23 23
24#include <swmgr.h> 24#include <swmgr.h>
25#include <swmodule.h>
25 26
26class QPixmap; 27class QPixmap;
27 28
28class OpenTextDlg : public QDialog 29class OpenTextDlg : public QDialog
29{ 30{
30 Q_OBJECT 31 Q_OBJECT
31 32
32public: 33public:
33 OpenTextDlg( QWidget *parent = 0x0, sword::SWMgr *swordMgr = 0x0, QPixmap *bibleIcon = 0x0, 34 OpenTextDlg( QWidget *parent = 0x0, sword::SWMgr *swordMgr = 0x0, QPixmap *bibleIcon = 0x0,
34 QPixmap *commentaryIcon = 0x0, QPixmap *lexiconIcon = 0x0 ); 35 QPixmap *commentaryIcon = 0x0, QPixmap *lexiconIcon = 0x0 );
35 36
36 QString selectedText() { return m_textList.currentItem()->text( 1 ); }; 37 QString selectedText() { return m_textList.currentItem()->text( 1 ); };
37 38
38private: 39private:
39 QListView m_textList; // List of available texts/modules 40 QListView m_textList; // List of available texts/modules
40 41
41 QListViewItem *m_bibles; // Pointer to bible section header 42 QListViewItem *m_bibles; // Pointer to bible section header
42 QListViewItem *m_lexicons; // Pointer to lexicon/dictionary section header 43 QListViewItem *m_lexicons; // Pointer to lexicon/dictionary section header
43 QListViewItem *m_commentaries; // Pointer to commentary section header 44 QListViewItem *m_commentaries; // Pointer to commentary section header
44 45
45private slots: 46private slots:
46 void slotItemClicked( QListViewItem *item ); 47 void slotItemClicked( QListViewItem *item );
47}; 48};
48 49