summaryrefslogtreecommitdiff
path: root/calendarsource.h
diff options
context:
space:
mode:
authorJavier <dev.git@javispedro.com>2016-08-28 17:03:04 +0200
committerJavier <dev.git@javispedro.com>2016-08-28 17:03:04 +0200
commitfa539e0228bb618516372d330b9e57f8f482d422 (patch)
tree14e36b10bdecfcd77fcc30f62de8c47e6fdf8ec6 /calendarsource.h
parente555e7549d369feaf2e6176a75a5f56fe2774995 (diff)
downloadlibwatchfish-fa539e0228bb618516372d330b9e57f8f482d422.tar.gz
libwatchfish-fa539e0228bb618516372d330b9e57f8f482d422.zip
add calendar feature
Diffstat (limited to 'calendarsource.h')
-rw-r--r--calendarsource.h54
1 files changed, 54 insertions, 0 deletions
diff --git a/calendarsource.h b/calendarsource.h
new file mode 100644
index 0000000..981c497
--- /dev/null
+++ b/calendarsource.h
@@ -0,0 +1,54 @@
+/*
+ * libwatchfish - library with common functionality for SailfishOS smartwatch connector programs.
+ * Copyright (C) 2016 Javier S. Pedro <dev.git@javispedro.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 3 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, see <http://www.gnu.org/licenses/>.
+ */
+
+#ifndef WATCHFISH_CALENDARSOURCE_H
+#define WATCHFISH_CALENDARSOURCE_H
+
+#include <QtCore/QLoggingCategory>
+
+#include "calendarevent.h"
+
+namespace watchfish
+{
+
+Q_DECLARE_LOGGING_CATEGORY(calendarSourceCat)
+
+class CalendarSourcePrivate;
+
+class CalendarSource : public QObject
+{
+ Q_OBJECT
+ Q_DECLARE_PRIVATE(CalendarSource)
+
+public:
+ explicit CalendarSource(QObject *parent = 0);
+ ~CalendarSource();
+
+ Q_INVOKABLE QList<CalendarEvent> fetchEvents(const QDate &start, const QDate &end,
+ bool startInclusive = false, bool endInclusive = false);
+
+signals:
+ void changed();
+
+private:
+ CalendarSourcePrivate * const d_ptr;
+};
+
+}
+
+#endif // WATCHFISH_CALENDARSOURCE_H