1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234
|
/****************************************************************************
**
** Copyright (C) 2015 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of the documentation for the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:BSD$
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
** accordance with the commercial license agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and The Qt Company. For licensing terms
** and conditions see https://www.qt.io/terms-conditions. For further
** information use the contact form at https://www.qt.io/contact-us.
**
** BSD License Usage
** Alternatively, you may use this file under the terms of the BSD license
** as follows:
**
** "Redistribution and use in source and binary forms, with or without
** modification, are permitted provided that the following conditions are
** met:
** * Redistributions of source code must retain the above copyright
** notice, this list of conditions and the following disclaimer.
** * Redistributions in binary form must reproduce the above copyright
** notice, this list of conditions and the following disclaimer in
** the documentation and/or other materials provided with the
** distribution.
** * Neither the name of The Qt Company Ltd nor the names of its
** contributors may be used to endorse or promote products derived
** from this software without specific prior written permission.
**
**
** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
**
** $QT_END_LICENSE$
**
****************************************************************************/
#include <QtOrganizer>
#include <QDebug>
#include <QCoreApplication>
#include <QObject>
#include <QTimer>
QTORGANIZER_USE_NAMESPACE
static void snippets();
static void dumpItems(QOrganizerManager* manager);
static void dumpItem(const QOrganizerItem& item);
int main(int, char**)
{
snippets();
return 0;
}
void snippets()
{
//! [Instantiating the default manager for the platform]
QOrganizerManager defaultManager;
//! [Instantiating the default manager for the platform]
//! [Instantiating a specific manager]
QOrganizerManager specificManager("KCal");
//! [Instantiating a specific manager]
// XXX TODO: use rrule instead of rdates.
QDateTime startDateTime = QDateTime::currentDateTime();
QDate firstOccDate = startDateTime.date().addDays(7);
QDate secondOccDate = startDateTime.date().addDays(14);
QDate thirdOccDate = startDateTime.date().addDays(21);
QDateTime endDateTime = startDateTime.addDays(28);
QSet<QDate> rDates;
rDates << firstOccDate << secondOccDate << thirdOccDate;
//! [Creating a recurrent event]
QOrganizerEvent marshmallowMeeting;
marshmallowMeeting.setRecurrenceDates(rDates);
marshmallowMeeting.setPriority(QOrganizerItemPriority::HighPriority);
marshmallowMeeting.setLocation("Meeting Room 8");
marshmallowMeeting.setDescription("A meeting every wednesday to discuss the vitally important topic of marshmallows");
marshmallowMeeting.setDisplayLabel("Marshmallow Conference");
if (!defaultManager.saveItem(&marshmallowMeeting))
qDebug() << "Failed to save the recurrent event; error:" << defaultManager.error();
//! [Creating a recurrent event]
//! [Retrieving occurrences of a particular recurrent event within a time period]
QList<QOrganizerItem> instances = defaultManager.itemOccurrences(marshmallowMeeting, startDateTime, endDateTime);
//! [Retrieving occurrences of a particular recurrent event within a time period]
qDebug() << "dumping retrieved instances:";
foreach (const QOrganizerItem& currInst, instances)
{
dumpItem(currInst);
qDebug() << "....................";
}
//! [Retrieving the next 5 occurrences of a particular recurrent event]
instances = defaultManager.itemOccurrences(marshmallowMeeting, QDateTime::currentDateTime(), QDateTime(), 5);
//! [Retrieving the next 5 occurrences of a particular recurrent event]
//! [Retrieving the next 10 occurrences of any item (Agenda View)]
instances = defaultManager.items(QDateTime::currentDateTime(), QDateTime());
instances = instances.mid(0, 10);
//! [Retrieving the next 10 occurrences of any item (Agenda View)]
//! [Creating a non-recurrent entry]
// a default constructed journal will have it's date/time set to the current date/time.
QOrganizerJournal journal;
journal.setDescription("The conference went well. We all agree that marshmallows are awesome, "\
"but we were unable to reach any agreement as to how we could possibly "\
"increase our intake of marshmallows. Several action points were assigned "\
"to various members of the group; I have been tasked with finding a good "\
"recipe that combines both marshmallows and chocolate, by next Wednesday.");
defaultManager.saveItem(&journal);
//! [Creating a non-recurrent entry]
//! [Editing a non-recurrent entry]
journal.addComment("Serves: 8. Ingredients: 500g Milk Chocolate, 500g Marshmallows."\
" Step 1: Put the marshmallows into 8 separate bowls."\
" Step 2: Melt the chocolate."\
" Step 3: Pour the chocolate over the marshmallows in the bowls."\
" Step 4: Put the bowls into the refrigerator for 20 minutes; serve chilled.");
if (!defaultManager.saveItem(&journal))
qDebug() << "Unable to save updated journal! Error:" << defaultManager.error();
//! [Editing a non-recurrent entry]
//! [Removing an entry]
defaultManager.removeItem(journal.id());
//! [Removing an entry]
//! [Retrieving entries for a time period]
QList<QOrganizerItem> entries =
defaultManager.items(QDateTime(QDate(2010, 1, 1), QTime(0, 0, 0)),
QDateTime(QDate(2010, 1, 31), QTime(23, 59, 59)));
//! [Retrieving entries for a time period]
//! [Retrieving entries with a filter]
entries = defaultManager.items(QOrganizerItemLocation::match("Meeting Room 8"));
//! [Retrieving entries with a filter]
//! [Downcasting items]
QList<QOrganizerItem> items = defaultManager.items();
foreach (QOrganizerItem item, entries) {
if (item.type() == QOrganizerItemType::TypeEvent) {
QOrganizerEvent event(item);
qDebug() << "Event:" << event.startDateTime() << ", " << event.displayLabel();
} else if (item.type() == QOrganizerItemType::TypeEventOccurrence) {
QOrganizerEventOccurrence event(item);
qDebug() << "Event:" << event.startDateTime() << ", " << event.displayLabel();
} else if (item.type() == QOrganizerItemType::TypeTodo) {
// process todos
} else if (item.type() == QOrganizerItemType::TypeTodoOccurrence) {
// process recurring todos
} else if (item.type() == QOrganizerItemType::TypeJournal) {
// process journals
} else if (item.type() == QOrganizerItemType::TypeNote) {
// process notes
}
}
//! [Downcasting items]
//! [Creating an exception to a particular recurrent event]
QOrganizerEventOccurrence nextMarshmallowMeeting = defaultManager.itemOccurrences(marshmallowMeeting).value(0);
nextMarshmallowMeeting.setStartDateTime(QDateTime::fromString("13.05.2010 18:00:00", "dd.MM.yy hh:mm:ss"));
nextMarshmallowMeeting.setEndDateTime(QDateTime::fromString("13.05.2010 20:00:00", "dd.MM.yy hh:mm:ss"));
nextMarshmallowMeeting.addComment("The next meeting will go for an hour longer (starting one "\
"hour earlier than usual), since we have scheduled one hour"\
"to taste the results of the recipe that I will be presenting "\
"at the meeting.");
defaultManager.saveItem(&nextMarshmallowMeeting);
//! [Creating an exception to a particular recurrent event]
//! [Getting a list of collections]
QList<QOrganizerCollection> collections = defaultManager.collections();
//! [Getting a list of collections]
QOrganizerCollection collection = collections.first();
//! [Saving an item to a collection]
marshmallowMeeting.setCollectionId(collection.id());
defaultManager.saveItem(&marshmallowMeeting);
//! [Saving an item to a collection]
//! [Retrieving items in a collection]
QOrganizerItemCollectionFilter collectionFilter;
collectionFilter.setCollectionId(collection.id());
items = defaultManager.items(collectionFilter);
//! [Retrieving items in a collection]
dumpItems(&defaultManager);
}
void dumpItems(QOrganizerManager* manager)
{
QList<QOrganizerItem> items = manager->items();
qDebug() << "dumping" << items.count() << "items:";
qDebug() << "=============================";
for (int i = 0; i < items.size(); ++i) {
QOrganizerItem curr = items.at(i);
dumpItem(curr);
if (i < (items.size() - 1)) {
qDebug() << "--------------";
}
}
qDebug() << "=============================";
}
void dumpItem(const QOrganizerItem& item)
{
qDebug() << "item:" << item.displayLabel() << ", id:" << item.id();
QList<QOrganizerItemDetail> dets = item.details();
foreach (const QOrganizerItemDetail det, dets) {
qDebug() << " new" << det.definitionName() << "detail:";
QVariantMap values = det.variantValues();
QStringList keys = values.keys();
foreach (const QString& key, keys) {
qDebug() << " " << key << "=" << values.value(key);
}
}
}
|