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
|
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/*
* Copyright (C) 2007 Imendio AB
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; either version 2 of the
* License, or (at your option) any later version.
*
* This program 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
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef __GIGGLE_REVISION_H__
#define __GIGGLE_REVISION_H__
#include "giggle-author.h"
#include "giggle-branch.h"
#include "giggle-ref.h"
G_BEGIN_DECLS
#define GIGGLE_TYPE_REVISION (giggle_revision_get_type ())
#define GIGGLE_REVISION(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GIGGLE_TYPE_REVISION, GiggleRevision))
#define GIGGLE_REVISION_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GIGGLE_TYPE_REVISION, GiggleRevisionClass))
#define GIGGLE_IS_REVISION(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GIGGLE_TYPE_REVISION))
#define GIGGLE_IS_REVISION_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GIGGLE_TYPE_REVISION))
#define GIGGLE_REVISION_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GIGGLE_TYPE_REVISION, GiggleRevisionClass))
typedef struct _GiggleRevision GiggleRevision;
typedef struct _GiggleRevisionClass GiggleRevisionClass;
typedef struct _GiggleRevisionPriv GiggleRevisionPriv;
struct _GiggleRevision {
GObject parent_instance;
GiggleRevisionPriv *priv;
};
struct _GiggleRevisionClass {
GObjectClass parent_class;
void (* descendent_branch_added) (GiggleRevision *revision,
GiggleBranch *branch);
};
GType giggle_revision_get_type (void);
GiggleRevision * giggle_revision_new (const gchar *sha);
const gchar * giggle_revision_get_sha (GiggleRevision *revision);
GiggleAuthor * giggle_revision_get_author (GiggleRevision *revision);
void giggle_revision_set_author (GiggleRevision *revision,
GiggleAuthor *author);
GiggleAuthor * giggle_revision_get_committer (GiggleRevision *revision);
void giggle_revision_set_committer (GiggleRevision *revision,
GiggleAuthor *committer);
const struct tm * giggle_revision_get_date (GiggleRevision *revision);
void giggle_revision_set_date (GiggleRevision *revision,
const struct tm *date);
const gchar * giggle_revision_get_short_log (GiggleRevision *revision);
void giggle_revision_set_short_log (GiggleRevision *revision,
const char *short_log);
GList * giggle_revision_get_children (GiggleRevision *revision);
GList * giggle_revision_get_parents (GiggleRevision *revision);
void giggle_revision_add_parent (GiggleRevision *revision,
GiggleRevision *parent);
void giggle_revision_remove_parent (GiggleRevision *revision,
GiggleRevision *parent);
GList * giggle_revision_get_branch_heads (GiggleRevision *revision);
void giggle_revision_add_branch_head (GiggleRevision *revision,
GiggleRef *branch);
GList * giggle_revision_get_tags (GiggleRevision *revision);
void giggle_revision_add_tag (GiggleRevision *revision,
GiggleRef *tag);
GList * giggle_revision_get_remotes (GiggleRevision *revision);
void giggle_revision_add_remote (GiggleRevision *revision,
GiggleRef *tag);
GList * giggle_revision_get_descendent_branches
(GiggleRevision *revision);
int giggle_revision_compare (gconstpointer a,
gconstpointer b);
G_END_DECLS
#endif /* __GIGGLE_REVISION_H__ */
|