~dobey/rhetorical/trunk

« back to all changes in this revision

Viewing changes to src/calview-month.h

  • Committer: rodney.dawes at canonical
  • Date: 2008-10-24 02:42:27 UTC
  • Revision ID: rodney.dawes@canonical.com-20081024024227-635l0ef9cge686qu
2008-10-23  Rodney Dawes  <dobey.pwns@gmail.com>

        * *: Import rhetorical into bzr

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 *  Authors: Rodney Dawes <dobey.pwns@gmail.com>
 
3
 *
 
4
 *  Copyright 2008 Rodney Dawes
 
5
 *
 
6
 */
 
7
 
 
8
#ifndef _CALVIEW_MONTH_H_
 
9
#define _CALVIEW_MONTH_H_
 
10
 
 
11
#include "calview-model.h"
 
12
 
 
13
G_BEGIN_DECLS
 
14
 
 
15
#define CAL_TYPE_VIEW_MONTH            (cal_view_month_get_type ())
 
16
#define CAL_VIEW_MONTH(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), CAL_TYPE_VIEW_MONTH, CalViewMonth))
 
17
#define CAL_VIEW_MONTH_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass), CAL_TYPE_VIEW_MONTH, CalViewMonthClass))
 
18
#define CAL_IS_VIEW_MONTH(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), CAL_TYPE_VIEW_MONTH))
 
19
#define CAL_IS_VIEW_MONTH_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), CAL_TYPE_VIEW_MONTH))
 
20
#define CAL_VIEW_MONTH_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS ((obj), CAL_TYPE_VIEW_MONTH, CalViewMonthClass))
 
21
 
 
22
typedef struct _CalViewMonth CalViewMonth;
 
23
typedef struct _CalViewMonthClass CalViewMonthClass;
 
24
typedef struct _CalViewMonthPrivate CalViewMonthPrivate;
 
25
 
 
26
struct _CalViewMonth {
 
27
  CalViewModel parent;
 
28
 
 
29
  CalViewMonthPrivate * priv;
 
30
};
 
31
 
 
32
struct _CalViewMonthClass {
 
33
  CalViewModelClass parent_class;
 
34
};
 
35
 
 
36
/* Creators */
 
37
GType cal_view_month_get_type (void) G_GNUC_CONST;
 
38
 
 
39
CalViewModel * cal_view_month_new (void);
 
40
 
 
41
G_END_DECLS
 
42
 
 
43
#endif