summaryrefslogtreecommitdiffstats
path: root/src/ktlisttask.h
diff options
context:
space:
mode:
authorMavridis Philippe <mavridisf@gmail.com>2021-01-13 19:26:24 +0200
committerMavridis Philippe <mavridisf@gmail.com>2021-01-13 19:26:24 +0200
commit8c20dc919f7d54eb48fb60f39ba5e1d466a70763 (patch)
tree44d89f278d5dd066603e5ab9c0b270bc8eb4ad51 /src/ktlisttask.h
downloadklamav-8c20dc919f7d54eb48fb60f39ba5e1d466a70763.tar.gz
klamav-8c20dc919f7d54eb48fb60f39ba5e1d466a70763.zip
Initial commit
Signed-off-by: Mavridis Philippe <mavridisf@gmail.com>
Diffstat (limited to 'src/ktlisttask.h')
-rw-r--r--src/ktlisttask.h63
1 files changed, 63 insertions, 0 deletions
diff --git a/src/ktlisttask.h b/src/ktlisttask.h
new file mode 100644
index 0000000..1f71e57
--- /dev/null
+++ b/src/ktlisttask.h
@@ -0,0 +1,63 @@
+/***************************************************************************
+ * KT list view item task header. *
+ * -------------------------------------------------------------------- *
+ * Copyright (C) 1999, Gary Meyer <gary@meyer.net> *
+ * -------------------------------------------------------------------- *
+ * 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. *
+ ***************************************************************************/
+
+#ifndef KTLISTTASK_H
+#define KTLISTTASK_H
+
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
+#include "ktlistitem.h"
+
+class CTTask;
+
+/**
+ * QListViewItem with a CTTask.
+ */
+class KTListTask : public KTListItem
+{
+public:
+
+/**
+ * Initialize the list view item and task.
+ */
+ KTListTask(KTListItem* parent, CTCron* _ctcron, CTTask* _cttask);
+
+/**
+ * Refresh from underlying task.
+ */
+ virtual void refresh();
+
+/**
+ * Print task.
+ */
+ //virtual void print(KTPrint &printer) const;
+
+/**
+ * Edit task.
+ */
+// virtual void edit();
+
+/**
+ * Get the task.
+ */
+ CTTask* getCTTask() const;
+
+private:
+
+/**
+ * Task.
+ */
+ CTTask* cttask;
+};
+
+#endif // KTLISTTASK_H