debug-manager: use g_spawn_sync() instead of fork() and waitpid()
[anjuta.git] / plugins / git / git-repository-selector.h
blob77da513478659dbabd86f3cfe72218054a6be946
1 /* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 4; tab-width: 4 -*- */
2 /*
3 * anjuta
4 * Copyright (C) James Liggett 2010 <jrliggett@cox.net>
5 *
6 * anjuta is free software: you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
11 * anjuta is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
14 * See the GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License along
17 * with this program. If not, see <http://www.gnu.org/licenses/>.
20 #ifndef _GIT_REPOSITORY_SELECTOR_H_
21 #define _GIT_REPOSITORY_SELECTOR_H_
23 #include <glib-object.h>
24 #include <glib/gi18n.h>
25 #include <gtk/gtk.h>
27 G_BEGIN_DECLS
29 #define GIT_TYPE_REPOSITORY_SELECTOR (git_repository_selector_get_type ())
30 #define GIT_REPOSITORY_SELECTOR(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GIT_TYPE_REPOSITORY_SELECTOR, GitRepositorySelector))
31 #define GIT_REPOSITORY_SELECTOR_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GIT_TYPE_REPOSITORY_SELECTOR, GitRepositorySelectorClass))
32 #define GIT_IS_REPOSITORY_SELECTOR(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GIT_TYPE_REPOSITORY_SELECTOR))
33 #define GIT_IS_REPOSITORY_SELECTOR_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GIT_TYPE_REPOSITORY_SELECTOR))
34 #define GIT_REPOSITORY_SELECTOR_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GIT_TYPE_REPOSITORY_SELECTOR, GitRepositorySelectorClass))
36 typedef struct _GitRepositorySelectorClass GitRepositorySelectorClass;
37 typedef struct _GitRepositorySelector GitRepositorySelector;
38 typedef struct _GitRepositorySelectorPriv GitRepositorySelectorPriv;
40 struct _GitRepositorySelectorClass
42 GtkBoxClass parent_class;
45 struct _GitRepositorySelector
47 GtkBox parent_instance;
49 GitRepositorySelectorPriv *priv;
52 typedef enum
54 GIT_REPOSITORY_SELECTOR_REMOTE,
55 GIT_REPOSITORY_SELECTOR_URL
56 } GitRepositorySelectorMode;
59 GType git_repository_selector_get_type (void) G_GNUC_CONST;
60 GtkWidget *git_repository_selector_new (void);
61 GitRepositorySelectorMode git_repository_selector_get_mode (GitRepositorySelector *self);
62 void git_repository_selector_set_remote (GitRepositorySelector *self,
63 const gchar *remote);
64 gchar *git_repository_selector_get_repository (GitRepositorySelector *self);
66 G_END_DECLS
68 #endif /* _GIT_REMOTE_SELECTOR_H_ */