summaryrefslogtreecommitdiffstats
path: root/ksystemlog/src/cups/cupsOptions.h
diff options
context:
space:
mode:
Diffstat (limited to 'ksystemlog/src/cups/cupsOptions.h')
-rw-r--r--ksystemlog/src/cups/cupsOptions.h69
1 files changed, 69 insertions, 0 deletions
diff --git a/ksystemlog/src/cups/cupsOptions.h b/ksystemlog/src/cups/cupsOptions.h
new file mode 100644
index 0000000..cb57740
--- /dev/null
+++ b/ksystemlog/src/cups/cupsOptions.h
@@ -0,0 +1,69 @@
+/***************************************************************************
+ * Copyright (C) 2005 by Nicolas Ternisien *
+ * nicolas.ternisien@gmail.com *
+ * *
+ * This program is free software; you can redistribute it and/or modify *
+ * it under the terms of the GNU General Public License as published by *
+ * the Free Software Foundation; either version 2 of the License, or *
+ * (at your option) any later version. *
+ * *
+ * This program is distributed in the hope that it will be useful, *
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of *
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
+ * GNU General Public License for more details. *
+ * *
+ * You should have received a copy of the GNU General Public License *
+ * along with this program; if not, write to the *
+ * Free Software Foundation, Inc., *
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
+ ***************************************************************************/
+
+#ifndef _CUPS_OPTIONS_H_
+#define _CUPS_OPTIONS_H_
+
+#include <qframe.h>
+#include <qspinbox.h>
+
+#include <kpopupmenu.h>
+#include <kconfig.h>
+#include <kdialogbase.h>
+#include <kurlrequester.h>
+#include <kurl.h>
+#include <kaction.h>
+#include <ktabwidget.h>
+
+#include "globals.h"
+#include "fileList.h"
+#include "logMode.h"
+
+
+class CupsOptions : public QWidget {
+
+ Q_OBJECT
+
+ public:
+ CupsOptions(QWidget *parent = 0);
+ ~CupsOptions();
+
+ bool isValid();
+
+ public slots:
+ void saveConfig();
+ void readConfig();
+
+ void slotFileListChanged(int itemLeft);
+
+ signals:
+ void optionsChanged(bool valid);
+
+ private:
+
+
+ KTabWidget tabs;
+
+ FileList cupsFileList;
+
+ FileList cupsAccessFileList;
+};
+
+#endif