~ubuntu-branches/ubuntu/raring/almanah/raring-proposed

« back to all changes in this revision

Viewing changes to src/widgets/calendar.h

  • Committer: Bazaar Package Importer
  • Author(s): Angel Abad
  • Date: 2011-04-18 16:21:36 UTC
  • mfrom: (1.3.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20110418162136-l0ik4snrl420srer
Tags: 0.8.0-1
* New upstream release
* Temporarily remove evolution support in unstable
* Disable AM_GCONF_SOURCE_2 macro to fix ftbfs in unstable
  - debian/patches/disable_am_gconf_source_2
  - Build-Depends on dh-autoreconf
  - Use --with autoreconf in rules
* debian/control:
  - Build-Depends on libgtk-3-dev
* debian/rules:
  - Remove unnecessary override_dh_auto_install
* debian/copyright:
  - Update copyright years
  - Update license stanza
* Bump Standards-Version to 3.9.1 (no changes)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */
 
2
/*
 
3
 * Almanah
 
4
 * Copyright (C) Philip Withnall 2010 <philip@tecnocode.co.uk>
 
5
 * 
 
6
 * Almanah is free software: you can redistribute it and/or modify
 
7
 * it under the terms of the GNU General Public License as published by
 
8
 * the Free Software Foundation, either version 3 of the License, or
 
9
 * (at your option) any later version.
 
10
 *
 
11
 * Almanah is distributed in the hope that it will be useful,
 
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
 * GNU General Public License for more details.
 
15
 *
 
16
 * You should have received a copy of the GNU General Public License
 
17
 * along with Almanah.  If not, see <http://www.gnu.org/licenses/>.
 
18
 */
 
19
 
 
20
#ifndef ALMANAH_CALENDAR_H
 
21
#define ALMANAH_CALENDAR_H
 
22
 
 
23
#include <glib.h>
 
24
#include <glib-object.h>
 
25
#include <gtk/gtk.h>
 
26
 
 
27
G_BEGIN_DECLS
 
28
 
 
29
#define ALMANAH_TYPE_CALENDAR           (almanah_calendar_get_type ())
 
30
#define ALMANAH_CALENDAR(o)             (G_TYPE_CHECK_INSTANCE_CAST ((o), ALMANAH_TYPE_CALENDAR, AlmanahCalendar))
 
31
#define ALMANAH_CALENDAR_CLASS(k)       (G_TYPE_CHECK_CLASS_CAST((k), ALMANAH_TYPE_CALENDAR, AlmanahCalendarClass))
 
32
#define ALMANAH_IS_CALENDAR(o)          (G_TYPE_CHECK_INSTANCE_TYPE ((o), ALMANAH_TYPE_CALENDAR))
 
33
#define ALMANAH_IS_CALENDAR_CLASS(k)    (G_TYPE_CHECK_CLASS_TYPE ((k), ALMANAH_TYPE_CALENDAR))
 
34
#define ALMANAH_CALENDAR_GET_CLASS(o)   (G_TYPE_INSTANCE_GET_CLASS ((o), ALMANAH_TYPE_CALENDAR, AlmanahCalendarClass))
 
35
 
 
36
typedef struct _AlmanahCalendarPrivate  AlmanahCalendarPrivate;
 
37
 
 
38
typedef struct {
 
39
        GtkCalendar parent;
 
40
        AlmanahCalendarPrivate *priv;
 
41
} AlmanahCalendar;
 
42
 
 
43
typedef struct {
 
44
        GtkCalendarClass parent;
 
45
} AlmanahCalendarClass;
 
46
 
 
47
GType almanah_calendar_get_type (void) G_GNUC_CONST;
 
48
 
 
49
GtkWidget *almanah_calendar_new (void) G_GNUC_MALLOC G_GNUC_WARN_UNUSED_RESULT;
 
50
 
 
51
void almanah_calendar_select_date (AlmanahCalendar *self, GDate *date);
 
52
void almanah_calendar_select_today (AlmanahCalendar *self);
 
53
void almanah_calendar_get_date (AlmanahCalendar *self, GDate *date);
 
54
 
 
55
G_END_DECLS
 
56
 
 
57
#endif /* !ALMANAH_CALENDAR_H */