1 /* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 4; tab-width: 4 -*- */
4 * Copyright (C) James Liggett 2008 <jrliggett@cox.net>
6 * anjuta is free software.
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)
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.
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.
25 #include "git-status.h"
30 AnjutaVcsStatus status
;
33 G_DEFINE_TYPE (GitStatus
, git_status
, G_TYPE_OBJECT
);
36 git_status_init (GitStatus
*self
)
38 self
->priv
= g_new0 (GitStatusPriv
, 1);
42 git_status_finalize (GObject
*object
)
46 self
= GIT_STATUS (object
);
48 g_free (self
->priv
->path
);
51 G_OBJECT_CLASS (git_status_parent_class
)->finalize (object
);
55 git_status_class_init (GitStatusClass
*klass
)
57 GObjectClass
*object_class
= G_OBJECT_CLASS (klass
);
59 object_class
->finalize
= git_status_finalize
;
63 git_status_new (const gchar
*path
, AnjutaVcsStatus status
)
67 self
= g_object_new (GIT_TYPE_STATUS
, NULL
);
69 self
->priv
->path
= g_strdup (path
);
70 self
->priv
->status
= status
;
76 git_status_get_path (GitStatus
*self
)
78 return g_strdup (self
->priv
->path
);
82 git_status_get_vcs_status (GitStatus
*self
)
84 return self
->priv
->status
;