1 /* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 4; tab-width: 4 -*- */
2 /*
3  * anjuta
4  * Copyright (C) James Liggett 2008 <jrliggett@cox.net>
5  *
6  * anjuta is free software.
7  *
8  * You may redistribute it and/or modify it under the terms of the
9  * GNU General Public License, as published by the Free Software
10  * Foundation; either version 2 of the License, or (at your option)
11  * any later version.
12  *
13  * anjuta is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
16  * See the GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with anjuta.  If not, write to:
20  * 	The Free Software Foundation, Inc.,
21  * 	51 Franklin Street, Fifth Floor
22  * 	Boston, MA  02110-1301, USA.
23  */
24 
25 #include "git-branch.h"
26 
27 struct _GitBranchPriv
28 {
29 	gchar *name;
30 	gboolean active;
31 };
32 
33 G_DEFINE_TYPE (GitBranch, git_branch, G_TYPE_OBJECT);
34 
35 static void
git_branch_init(GitBranch * self)36 git_branch_init (GitBranch *self)
37 {
38 	self->priv = g_new0 (GitBranchPriv, 1);
39 }
40 
41 static void
git_branch_finalize(GObject * object)42 git_branch_finalize (GObject *object)
43 {
44 	GitBranch *self;
45 
46 	self = GIT_BRANCH (object);
47 
48 	g_free (self->priv->name);
49 	g_free (self->priv);
50 
51 	G_OBJECT_CLASS (git_branch_parent_class)->finalize (object);
52 }
53 
54 static void
git_branch_class_init(GitBranchClass * klass)55 git_branch_class_init (GitBranchClass *klass)
56 {
57 	GObjectClass* object_class = G_OBJECT_CLASS (klass);
58 
59 	object_class->finalize = git_branch_finalize;
60 }
61 
62 
63 GitBranch *
git_branch_new(const gchar * name,gboolean active)64 git_branch_new (const gchar *name, gboolean active)
65 {
66 	GitBranch *self;
67 
68 	self = g_object_new (GIT_TYPE_BRANCH, NULL);
69 
70 	self->priv->name = g_strdup (name);
71 	self->priv->active = active;
72 
73 	return self;
74 }
75 
76 gchar *
git_branch_get_name(GitBranch * self)77 git_branch_get_name (GitBranch *self)
78 {
79 	return g_strdup (self->priv->name);
80 }
81 
82 gboolean
git_branch_is_active(GitBranch * self)83 git_branch_is_active (GitBranch *self)
84 {
85 	return self->priv->active;
86 }
87