~didrocks/ubuntuone-client/dont-suffer-zg-crash

« back to all changes in this revision

Viewing changes to libsyncdaemon/syncdaemon-folder-info.h

  • Committer: Bazaar Package Importer
  • Author(s): Rodrigo Moya
  • Date: 2010-06-23 23:08:15 UTC
  • mto: This revision was merged to the branch mainline in revision 34.
  • Revision ID: james.westby@ubuntu.com-20100623230815-4m3ugh10u9x9xzw5
Tags: upstream-1.3.2
ImportĀ upstreamĀ versionĀ 1.3.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Syncdaemon API
 
3
 *
 
4
 * Authors: Rodrigo Moya <rodrigo.moya@canonical.com>
 
5
 *
 
6
 * Copyright 2010 Canonical Ltd.
 
7
 *
 
8
 * This program is free software: you can redistribute it and/or modify it
 
9
 * under the terms of the GNU General Public License version 3, as published
 
10
 * by the Free Software Foundation.
 
11
 *
 
12
 * This program is distributed in the hope that it will be useful, but
 
13
 * WITHOUT ANY WARRANTY; without even the implied warranties of
 
14
 * MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
 
15
 * PURPOSE.  See the GNU General Public License for more details.
 
16
 *
 
17
 * You should have received a copy of the GNU General Public License along
 
18
 * with this program.  If not, see <http://www.gnu.org/licenses/>.
 
19
 *
 
20
 */
 
21
 
 
22
#ifndef __SYNCDAEMON_FOLDER_INFO_H__
 
23
#define __SYNCDAEMON_FOLDER_INFO_H__
 
24
 
 
25
#include <glib-object.h>
 
26
 
 
27
G_BEGIN_DECLS
 
28
 
 
29
#define SYNCDAEMON_TYPE_FOLDER_INFO                (syncdaemon_folder_info_get_type ())
 
30
#define SYNCDAEMON_FOLDER_INFO(obj)                (G_TYPE_CHECK_INSTANCE_CAST ((obj), SYNCDAEMON_TYPE_FOLDER_INFO, SyncdaemonFolderInfo))
 
31
#define SYNCDAEMON_IS_FOLDER_INFO(obj)             (G_TYPE_CHECK_INSTANCE_TYPE ((obj), SYNCDAEMON_TYPE_FOLDER_INFO))
 
32
#define SYNCDAEMON_FOLDER_INFO_CLASS(klass)        (G_TYPE_CHECK_CLASS_CAST ((klass), SYNCDAEMON_TYPE_FOLDER_INFO, SyncdaemonFolderInfoClass))
 
33
#define SYNCDAEMON_IS_FOLDER_INFO_CLASS(klass)     (G_TYPE_CHECK_CLASS_TYPE ((klass), SYNCDAEMON_TYPE_FOLDER_INFO))
 
34
#define SYNCDAEMON_FOLDER_INFO_GET_CLASS(obj)      (G_TYPE_INSTANCE_GET_CLASS ((obj), SYNCDAEMON_TYPE_FOLDER_INFO, SyncdaemonFolderInfoClass))
 
35
 
 
36
typedef struct _SyncdaemonFolderInfoPrivate SyncdaemonFolderInfoPrivate;
 
37
 
 
38
typedef struct {
 
39
        GObject parent;
 
40
        SyncdaemonFolderInfoPrivate *priv;
 
41
} SyncdaemonFolderInfo;
 
42
 
 
43
typedef struct {
 
44
        GObjectClass parent_class;
 
45
} SyncdaemonFolderInfoClass;
 
46
 
 
47
GType                 syncdaemon_folder_info_get_type (void);
 
48
SyncdaemonFolderInfo *syncdaemon_folder_info_new (void);
 
49
SyncdaemonFolderInfo *syncdaemon_folder_info_new_from_hash_table (GHashTable *hash);
 
50
 
 
51
const gchar          *syncdaemon_folder_info_get_path (SyncdaemonFolderInfo *finfo);
 
52
void                  syncdaemon_folder_info_set_path (SyncdaemonFolderInfo *finfo, const gchar *path);
 
53
gboolean              syncdaemon_folder_info_get_subscribed (SyncdaemonFolderInfo *finfo);
 
54
void                  syncdaemon_folder_info_set_subscribed (SyncdaemonFolderInfo *finfo, gboolean subscribed);
 
55
const gchar          *syncdaemon_folder_info_get_volume_id (SyncdaemonFolderInfo *finfo);
 
56
void                  syncdaemon_folder_info_set_volume_id (SyncdaemonFolderInfo *finfo, const gchar *volume_id);
 
57
 
 
58
G_END_DECLS
 
59
 
 
60
#endif