~vcs-imports/bibletime/trunk

« back to all changes in this revision

Viewing changes to bibletime/frontend/keychooser/crefselectdialog.h

  • Committer: mgruner
  • Date: 2007-05-08 15:51:07 UTC
  • Revision ID: vcs-imports@canonical.com-20070508155107-0rj7jdmm5ivf8685
-imported source and data files to new svn module
-this is where KDE4-based development will take place

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*********
 
2
*
 
3
* This file is part of BibleTime's source code, http://www.bibletime.info/.
 
4
*
 
5
* Copyright 1999-2006 by the BibleTime developers.
 
6
* The BibleTime source code is licensed under the GNU General Public License version 2.0.
 
7
*
 
8
**********/
 
9
 
 
10
 
 
11
 
 
12
#ifndef CREFSELECTDIALOG_H
 
13
#define CREFSELECTDIALOG_H
 
14
//Qt includes
 
15
#include <qwidget.h>
 
16
#include <qstring.h>
 
17
class QLineEdit;
 
18
 
 
19
//KDE includes
 
20
#include <kdialog.h>
 
21
#include <kdialogbase.h>
 
22
 
 
23
 
 
24
// BT includes
 
25
#include "ckeychooser.h"
 
26
 
 
27
//class CRefSelectDialog : public KDialogBase  {
 
28
//  Q_OBJECT
 
29
// public:
 
30
//  CRefSelectDialog(QWidget *parent);
 
31
//  virtual ~CRefSelectDialog();
 
32
//
 
33
//  void setChooser(CKeyChooser* const chooser);
 
34
//
 
35
// public slots:
 
36
//   void slotPressedOk();
 
37
//   void slotPressedCancel();
 
38
//
 
39
//
 
40
// protected:
 
41
//   void restoreParent();
 
42
//
 
43
// private:
 
44
//  QWidget*     m_page;
 
45
//  QWidget*     m_placeholder;
 
46
//  QWidget*     m_oldParent;
 
47
//  CKeyChooser* m_chooser;
 
48
//  QLineEdit*   m_lineedit;
 
49
//  QPoint       m_oldPos;
 
50
//};
 
51
#endif
 
52
 
 
53
 
 
54
 
 
55
 
 
56