1 /* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 4; tab-width: 4 -*- */
4 * Copyright (C) James Liggett 2007 <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 "anjuta-sync-command.h"
27 G_DEFINE_TYPE (AnjutaSyncCommand
, anjuta_sync_command
, ANJUTA_TYPE_COMMAND
);
30 anjuta_sync_command_init (AnjutaSyncCommand
*self
)
36 anjuta_sync_command_finalize (GObject
*object
)
38 G_OBJECT_CLASS (anjuta_sync_command_parent_class
)->finalize (object
);
42 start_command (AnjutaCommand
*command
)
46 return_code
= ANJUTA_COMMAND_GET_CLASS (command
)->run (command
);
47 anjuta_command_notify_complete (command
, return_code
);
51 notify_data_arrived (AnjutaCommand
*command
)
53 g_signal_emit_by_name (command
, "data-arrived");
57 notify_complete (AnjutaCommand
*command
, guint return_code
)
59 g_signal_emit_by_name (command
, "command-finished",
64 anjuta_sync_command_class_init (AnjutaSyncCommandClass
*klass
)
66 GObjectClass
* object_class
= G_OBJECT_CLASS (klass
);
67 AnjutaCommandClass
* parent_class
= ANJUTA_COMMAND_CLASS (klass
);
69 object_class
->finalize
= anjuta_sync_command_finalize
;
71 parent_class
->start
= start_command
;
72 parent_class
->notify_data_arrived
= notify_data_arrived
;
73 parent_class
->notify_complete
= notify_complete
;