summaryrefslogtreecommitdiffstats
path: root/ksystemlog/src/logViewColumns.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-02-24 01:38:56 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-02-24 01:38:56 +0000
commit64e7bb523f56ef0a3eb4063917daeedcadeb1d41 (patch)
tree2f0144cc278f308718bb626db910a9de17fa790a /ksystemlog/src/logViewColumns.h
downloadksystemlog-64e7bb523f56ef0a3eb4063917daeedcadeb1d41.tar.gz
ksystemlog-64e7bb523f56ef0a3eb4063917daeedcadeb1d41.zip
Added old KDE3 version of ksystemlog
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/ksystemlog@1095334 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'ksystemlog/src/logViewColumns.h')
-rw-r--r--ksystemlog/src/logViewColumns.h63
1 files changed, 63 insertions, 0 deletions
diff --git a/ksystemlog/src/logViewColumns.h b/ksystemlog/src/logViewColumns.h
new file mode 100644
index 0000000..c76b7ce
--- /dev/null
+++ b/ksystemlog/src/logViewColumns.h
@@ -0,0 +1,63 @@
+/***************************************************************************
+ * 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 _LOG_VIEW_COLUMNS_H_
+#define _LOG_VIEW_COLUMNS_H_
+
+#include <qobject.h>
+#include <qpixmap.h>
+#include <qstringlist.h>
+#include <qfile.h>
+#include <qvaluevector.h>
+#include <qvaluelist.h>
+
+#include <kurl.h>
+
+#include "globals.h"
+#include "logViewColumn.h"
+
+/**
+ * @author Nicolas Ternisien
+ */
+class LogViewColumns : public QValueVector<LogViewColumn*> {
+
+ public:
+ LogViewColumns();
+
+ bool isGroupByLogLevel();
+ bool isGroupByDay();
+ bool isGroupByHour();
+ bool isGroupByLogFile();
+
+ void setGroupByLogLevel(bool value);
+ void setGroupByDay(bool value);
+ void setGroupByHour(bool value);
+ void setGroupByLogFile(bool value);
+
+ private:
+
+ bool groupByLogLevel;
+ bool groupByDay;
+ bool groupByHour;
+ bool groupByLogFile;
+
+};
+
+
+#endif