summaryrefslogtreecommitdiffstats
path: root/ksystemlog/src/logLineTree.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/logLineTree.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/logLineTree.h')
-rw-r--r--ksystemlog/src/logLineTree.h71
1 files changed, 71 insertions, 0 deletions
diff --git a/ksystemlog/src/logLineTree.h b/ksystemlog/src/logLineTree.h
new file mode 100644
index 0000000..2888304
--- /dev/null
+++ b/ksystemlog/src/logLineTree.h
@@ -0,0 +1,71 @@
+/***************************************************************************
+ * 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_LINE_TREE_H_
+#define _LOG_LINE_TREE_H_
+
+#include <qobject.h>
+#include <qptrlist.h>
+#include <qmap.h>
+
+#include <kdebug.h>
+
+#include "logLineList.h"
+
+#include "logViewColumn.h"
+
+#include "parentLogLine.h"
+
+//Try to find a impossible type
+#define PARENT_LOG_LINE_TYPE 7777
+
+/**
+ * @author Nicolas Ternisien
+ */
+class LogLineTree : public LogLineList {
+ public:
+ LogLineTree(LogViewColumns* cols, groupByType type, int column=-1);
+
+ virtual ~LogLineTree();
+
+ virtual bool remove(LogLine* line);
+ virtual void insert(LogLine* line);
+
+ protected:
+ QPtrList<ParentLogLine> parents;
+
+ groupByType groupBy;
+ int groupByColumn;
+
+ LogViewColumns* columns;
+
+ /**
+ * Synchronize the lines to delete
+ */
+ virtual void synchronizeRemovedLines(View* view);
+
+ /**
+ * Synchronize new lines and returns the last one
+ */
+ virtual LogLine* synchronizeAddedLines(View* view);
+
+};
+
+#endif