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
|
/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */
/*
* GData Client
* Copyright (C) Peteris Krisjanis 2013 <pecisk@gmail.com>
*
* GData Client 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.
*
* GData Client 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 GData Client. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* SECTION:gdata-tasks-tasklist
* @short_description: GData Tasks tasklist object
* @stability: Stable
* @include: gdata/services/tasks/gdata-tasks-tasklist.h
*
* #GDataTasksTasklist is a subclass of #GDataEntry to represent a tasklist from Google Tasks.
*
* For more details of Google Tasks API, see the <ulink type="http" url="https://developers.google.com/google-apps/tasks/v1/reference/">
* online documentation</ulink>.
*
* Since: 0.15.0
*/
#include <config.h>
#include <glib.h>
#include <glib/gi18n-lib.h>
#include <string.h>
#include "gdata-tasks-tasklist.h"
#include "gdata-private.h"
#include "gdata-types.h"
static const gchar *get_content_type (void);
G_DEFINE_TYPE (GDataTasksTasklist, gdata_tasks_tasklist, GDATA_TYPE_ENTRY)
static void
gdata_tasks_tasklist_class_init (GDataTasksTasklistClass *klass)
{
GDataParsableClass *parsable_class = GDATA_PARSABLE_CLASS (klass);
GDataEntryClass *entry_class = GDATA_ENTRY_CLASS (klass);
parsable_class->get_content_type = get_content_type;
entry_class->kind_term = "tasks#taskList";
}
static void
gdata_tasks_tasklist_init (GDataTasksTasklist *self)
{
/* Empty */
}
static const gchar *
get_content_type (void)
{
return "application/json";
}
/**
* gdata_tasks_tasklist_new:
* @id: (allow-none): the tasklist's ID, or %NULL
*
* Creates a new #GDataTasksTasklist with the given ID and default properties.
*
* Return value: (transfer full): a new #GDataTasksTasklist; unref with g_object_unref()
*
* Since: 0.15.0
*/
GDataTasksTasklist *
gdata_tasks_tasklist_new (const gchar *id)
{
return GDATA_TASKS_TASKLIST (g_object_new (GDATA_TYPE_TASKS_TASKLIST, "id", id, NULL));
}
|