From 6bfdfc1c4fab71196b0d40f08c209d7819874686 Mon Sep 17 00:00:00 2001 From: groucho Date: Wed, 07 May 2003 14:10:02 +0000 Subject: Hopefully things are now fixed in CVS --- (limited to 'noncore/apps/opie-reader/URLDialog.h') diff --git a/noncore/apps/opie-reader/URLDialog.h b/noncore/apps/opie-reader/URLDialog.h new file mode 100644 index 0000000..1bcc4bd --- a/dev/null +++ b/noncore/apps/opie-reader/URLDialog.h @@ -0,0 +1,65 @@ +/**************************************************************************** +** Form interface generated from reading ui file 'Prefs.ui' +** +** Created: Tue Feb 11 23:53:32 2003 +** by: The User Interface Compiler (uic) +** +** WARNING! All changes made in this file will be lost! +****************************************************************************/ +#ifndef __URLDIALOG_H +#define __URLDIALOG_H + +#include "useqpe.h" +#include +#include +#include +#include +#include +#include +#include +#include +//#include +#include + +class QVBoxLayout; +class QHBoxLayout; +class QGridLayout; +//class QCheckBox; +class QLabel; +//class QSpinBox; + +class CURLDialog : public QDialog +{ +Q_OBJECT + QCheckBox *m_localfile, *m_globalfile, *m_clipboard; +#ifndef USEQPE + void keyPressEvent(QKeyEvent* e) + { + switch (e->key()) + { + case Key_Escape: + e->accept(); + reject(); + break; + case Key_Space: + case Key_Return: + e->accept(); + accept(); + break; + default: + QWidget::keyPressEvent(e); + } + } +#endif + public: + CURLDialog(const QString&, bool fs = true, QWidget* parent = 0, const char* name = 0); + ~CURLDialog() {} + bool clipboard() { return m_clipboard->isChecked(); } + bool localfile() { return m_localfile->isChecked(); } + bool globalfile() { return m_globalfile->isChecked(); } + void clipboard(bool _b) { m_clipboard->setChecked(_b); } + void localfile(bool _b) { m_localfile->setChecked(_b); } + void globalfile(bool _b) { m_globalfile->setChecked(_b); } + +}; +#endif // CPREFS_H -- cgit v0.9.0.2