Some checks failed
Docker. / Ubuntu (push) Has been cancelled
User-agent updater. / User-agent (push) Failing after 15s
Lock Threads / lock (push) Failing after 10s
Waiting for answer. / waiting-for-answer (push) Failing after 22s
Close stale issues and PRs / stale (push) Successful in 13s
Needs user action. / needs-user-action (push) Failing after 8s
Can't reproduce. / cant-reproduce (push) Failing after 8s
79 lines
3.0 KiB
C
79 lines
3.0 KiB
C
/* -*- Mode: C; indent-tabs-mode: nil; c-basic-offset: 2; tab-width: 2 -*- */
|
|
/*
|
|
* nimf-server.h
|
|
* This file is part of Nimf.
|
|
*
|
|
* Copyright (C) 2015-2019 Hodong Kim <cogniti@gmail.com>
|
|
*
|
|
* Nimf 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.
|
|
*
|
|
* Nimf 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/>.
|
|
*/
|
|
|
|
#ifndef __NIMF_SERVER_H__
|
|
#define __NIMF_SERVER_H__
|
|
|
|
#include <glib-object.h>
|
|
#include <gio/gio.h>
|
|
#include "nimf-preeditable.h"
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
#define NIMF_TYPE_SERVER (nimf_server_get_type ())
|
|
#define NIMF_SERVER(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), NIMF_TYPE_SERVER, NimfServer))
|
|
#define NIMF_SERVER_CLASS(class) (G_TYPE_CHECK_CLASS_CAST ((class), NIMF_TYPE_SERVER, NimfServerClass))
|
|
#define NIMF_IS_SERVER(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), NIMF_TYPE_SERVER))
|
|
#define NIMF_SERVER_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), NIMF_TYPE_SERVER, NimfServerClass))
|
|
|
|
typedef struct _NimfServer NimfServer;
|
|
typedef struct _NimfServerClass NimfServerClass;
|
|
typedef struct _NimfServerPrivate NimfServerPrivate;
|
|
|
|
struct _NimfServer
|
|
{
|
|
GObject parent_instance;
|
|
NimfServerPrivate *priv;
|
|
};
|
|
|
|
struct _NimfServerClass
|
|
{
|
|
/*< private >*/
|
|
GObjectClass parent_class;
|
|
|
|
/*< public >*/
|
|
/* Signals */
|
|
void (* engine_changed) (NimfServer *server,
|
|
const gchar *engine_id,
|
|
const gchar *icon_name);
|
|
void (* engine_status_changed) (NimfServer *server,
|
|
const gchar *engine_id,
|
|
const gchar *icon_name);
|
|
void (* engine_loaded) (NimfServer *server,
|
|
const gchar *engine_id);
|
|
void (* engine_unloaded) (NimfServer *server,
|
|
const gchar *engine_id);
|
|
};
|
|
|
|
GType nimf_server_get_type (void) G_GNUC_CONST;
|
|
void nimf_server_change_engine_by_id (NimfServer *server,
|
|
const gchar *engine_id);
|
|
void nimf_server_change_engine (NimfServer *server,
|
|
const gchar *engine_id,
|
|
const gchar *method_id);
|
|
gchar **nimf_server_get_loaded_engine_ids (NimfServer *server);
|
|
NimfServer *nimf_server_get_default (void);
|
|
NimfPreeditable *nimf_server_get_preeditable (NimfServer *server);
|
|
|
|
G_END_DECLS
|
|
|
|
#endif /* __NIMF_SERVER_H__ */
|