summaryrefslogtreecommitdiffstats
path: root/lib/pilotTodoEntry.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-02-16 20:17:18 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-02-16 20:17:18 +0000
commitcb7eddb91455a69cf66fcd717e91a51ca5e2cfef (patch)
treecf5546e4d7c44370fbe9ca2be937bd254f30ebaa /lib/pilotTodoEntry.h
downloadkpilot-cb7eddb91455a69cf66fcd717e91a51ca5e2cfef.tar.gz
kpilot-cb7eddb91455a69cf66fcd717e91a51ca5e2cfef.zip
Moved kpilot from kdepim to applications, as the core Trinity libraries should not contain hardware-dependent software
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kpilot@1221127 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'lib/pilotTodoEntry.h')
-rw-r--r--lib/pilotTodoEntry.h166
1 files changed, 166 insertions, 0 deletions
diff --git a/lib/pilotTodoEntry.h b/lib/pilotTodoEntry.h
new file mode 100644
index 0000000..020912f
--- /dev/null
+++ b/lib/pilotTodoEntry.h
@@ -0,0 +1,166 @@
+#ifndef _KPILOT_PILOTTODOENTRY_H
+#define _KPILOT_PILOTTODOENTRY_H
+/* pilotTodoEntry.h -*- C++ -*- KPilot
+**
+** Copyright (C) 1998-2001 by Dan Pilone
+** Copyright (C) 2003-2004 Reinhold Kainhofer <reinhold@kainhofer.com>
+**
+** This is a wrapper around the pilot-link Memo structure. It is
+** the interpreted form of a Pilot database record.
+*/
+
+/*
+** This program is free software; you can redistribute it and/or modify
+** it under the terms of the GNU Lesser General Public License as published by
+** the Free Software Foundation; either version 2.1 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 Lesser General Public License for more details.
+**
+** You should have received a copy of the GNU Lesser General Public License
+** along with this program in a file called COPYING; if not, write to
+** the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+** MA 02110-1301, USA.
+*/
+
+/*
+** Bug reports and questions can be sent to kde-pim@kde.org
+*/
+
+#include <time.h>
+
+#include <pi-macros.h>
+#include <pi-todo.h>
+
+#include <tqnamespace.h>
+#include <tqstring.h>
+
+#include "pilotRecord.h"
+#include "pilotAppInfo.h"
+
+/** @file This file defines structures wrapped around the ToDo database
+* on the Pilot, based on pilot-link's ToDo stuff.
+*/
+
+/** A decoded ToDo item. */
+class KDE_EXPORT PilotTodoEntry : public PilotRecordBase
+{
+public:
+ /** Create an empty ToDo item. All attributes are 0. */
+ PilotTodoEntry();
+
+ /**
+ * Constructor. Create a ToDo item and fill it with data from the
+ * uninterpreted record @p rec. The record may be NULL, in which
+ * case the todo is empty and its category and ID are zero, as in
+ * the constructor above.
+ */
+ PilotTodoEntry(PilotRecord * rec);
+
+ /** Copy an existing ToDo item. */
+ PilotTodoEntry(const PilotTodoEntry &e);
+
+ /** Delete a ToDo item. */
+ ~PilotTodoEntry()
+ {
+ free_ToDo(&fTodoInfo);
+ }
+
+ /** Return a string for the ToDo item. If @param richText is true, then
+ * use qt style markup to make the string clearer when displayed.
+ */
+ TQString getTextRepresentation(Qt::TextFormat richText);
+
+ /** Assign an existing ToDo item to this one. */
+ PilotTodoEntry& operator=(const PilotTodoEntry &e);
+
+ /** Accessor for the Due Date of the ToDo item. */
+ struct tm getDueDate() const { return fTodoInfo.due; }
+
+ /** Set the Due Date for the ToDo item. */
+ void setDueDate(struct tm& d)
+ {
+ fTodoInfo.due = d;
+ }
+
+ /** Return the indefinite status of the ToDo (? that is, whether it
+ * had a Due Date that is relevant or not). Return values are 0
+ * (not indefinite) or non-0.
+ */
+ int getIndefinite() const
+ {
+ return fTodoInfo.indefinite;
+ }
+
+ /** Set whether the ToDo is indefinite or not. */
+ void setIndefinite(int i)
+ {
+ fTodoInfo.indefinite = i;
+ }
+
+ /** Return the priority of the ToDo item. The priority ranges
+ * from 1-5 on the handheld, so this needs to be mapped (perhaps)
+ * onto KOrganizer's priority levels.
+ */
+ int getPriority() const
+ {
+ return fTodoInfo.priority;
+ }
+
+ /** Set the priority of the ToDo. */
+ void setPriority(int p)
+ {
+ fTodoInfo.priority = p;
+ }
+
+ /** Return whether the ToDo is complete (done, finished) or not. */
+ int getComplete() const
+ {
+ return fTodoInfo.complete;
+ }
+
+ /** Set whether the ToDo is done. */
+ void setComplete(int c)
+ {
+ fTodoInfo.complete = c;
+ }
+
+ /** Get the ToDo item's description (which is the title shown on
+ * the handheld, and the item's Title in KDE). This uses the default codec.
+ */
+ TQString getDescription() const;
+ /** Set the ToDo item's description. */
+ void setDescription(const TQString &);
+
+ /** Get the ToDo item's note (the longer text, not immediately accessible
+ * on the handheld). This uses the default codec.
+ */
+ TQString getNote() const;
+
+ /** Set the ToDo item's note. */
+ void setNote(const TQString &note);
+
+ /** Returns the label for the category this ToDo item is in. */
+ TQString getCategoryLabel() const;
+
+ PilotRecord *pack() const;
+
+protected:
+ const char *getDescriptionP() const { return fTodoInfo.description; } ;
+ void setDescriptionP(const char *, int len=-1) ;
+ const char *getNoteP() const { return fTodoInfo.note; } ;
+ void setNoteP(const char *, int len=-1) ;
+
+private:
+ struct ToDo fTodoInfo;
+ unsigned int fDescriptionSize, fNoteSize;
+};
+
+typedef PilotAppInfo<ToDoAppInfo,unpack_ToDoAppInfo, pack_ToDoAppInfo> PilotToDoInfo;
+
+
+#endif
+