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 97 98 99 100 101 102 103 104 105 106 107 108 109
|
/* -*- Mode: C; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* Copyright (C) 2007 Kouhei Sutou <kou@cozmixng.org>
*
* This library is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This library 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 Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif /* HAVE_CONFIG_H */
#include <glib.h>
#include "cut-ui.h"
#include "cut-module.h"
#include "cut-listener-utils.h"
CUT_DEFINE_LISTENER_MODULE(ui, UI)
void
cut_ui_init (void)
{
}
static void
cut_ui_set_default_module_dir (const gchar *dir)
{
if (ui_module_dir)
g_free(ui_module_dir);
ui_module_dir = NULL;
if (dir)
ui_module_dir = g_strdup(dir);
}
static void
cut_ui_unload (void)
{
g_list_foreach(uis, (GFunc)cut_module_unload, NULL);
g_list_free(uis);
uis = NULL;
}
void
cut_ui_quit (void)
{
cut_ui_unload();
cut_ui_set_default_module_dir(NULL);
}
GObject *
cut_ui_new (const gchar *name, const gchar *first_property, ...)
{
CutModule *module;
GObject *ui;
va_list var_args;
module = cut_ui_load_module(name);
g_return_val_if_fail(module != NULL, NULL);
va_start(var_args, first_property);
ui = cut_module_instantiate(module, first_property, var_args);
va_end(var_args);
return ui;
}
GType
cut_ui_get_type (void)
{
static GType ui_type = 0;
if (!ui_type) {
const GTypeInfo ui_info = {
sizeof(CutUIClass), /* class_size */
NULL, /* base_init */
NULL, /* base_finalize */
};
ui_type = g_type_register_static(G_TYPE_INTERFACE, "CutUI",
&ui_info, 0);
}
return ui_type;
}
gboolean
cut_ui_run (CutUI *ui, CutRunContext *run_context)
{
if (CUT_UI_GET_CLASS(ui)->run)
return CUT_UI_GET_CLASS(ui)->run(ui, run_context);
return FALSE;
}
/*
vi:ts=4:nowrap:ai:expandtab:sw=4
*/
|