summaryrefslogtreecommitdiffstats
path: root/ksystemlog/src/loggerDialog.h
diff options
context:
space:
mode:
Diffstat (limited to 'ksystemlog/src/loggerDialog.h')
-rw-r--r--ksystemlog/src/loggerDialog.h55
1 files changed, 55 insertions, 0 deletions
diff --git a/ksystemlog/src/loggerDialog.h b/ksystemlog/src/loggerDialog.h
new file mode 100644
index 0000000..503de62
--- /dev/null
+++ b/ksystemlog/src/loggerDialog.h
@@ -0,0 +1,55 @@
+/***************************************************************************
+ * 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 LOGGER_DIALOG_H
+#define LOGGER_DIALOG_H
+
+
+#include <qmap.h>
+#include <qpixmap.h>
+
+
+#include "loggerDialogBase.h"
+
+class LoggerDialog: public LoggerDialogBase {
+ Q_OBJECT
+ public:
+ LoggerDialog(QWidget *parent = 0, const char *name = 0);
+
+ protected slots:
+ void sendMessage();
+
+ void textChanged(const QString&);
+
+ void tagActivationChanged(bool activation);
+ void fileActivationChanged(bool activation);
+ void messageActivationChanged(bool activation);
+
+ protected:
+ void buildMaps();
+
+ QMap<QString, QString> facilities;
+
+ QMap<QString, QString> priorities;
+ QMap<QString, QPixmap> priorityIcons;
+
+};
+
+#endif