/* -*- Mode: C; indent-tabs-mode: nil; c-basic-offset: 2; tab-width: 2 -*- */ /* * nimf-connection.h * This file is part of Nimf. * * Copyright (C) 2015-2019 Hodong Kim * * 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 . */ #ifndef __NIMF_CONNECTION_H__ #define __NIMF_CONNECTION_H__ #include #include "nimf-nim.h" #include "nimf-message-private.h" G_BEGIN_DECLS #define NIMF_TYPE_CONNECTION (nimf_connection_get_type ()) #define NIMF_CONNECTION(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), NIMF_TYPE_CONNECTION, NimfConnection)) #define NIMF_CONNECTION_CLASS(class) (G_TYPE_CHECK_CLASS_CAST ((class), NIMF_TYPE_CONNECTION, NimfConnectionClass)) #define NIMF_IS_CONNECTION(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), NIMF_TYPE_CONNECTION)) #define NIMF_IS_CONNECTION_CLASS(class) (G_TYPE_CHECK_CLASS_TYPE ((class), NIMF_TYPE_CONNECTION)) #define NIMF_CONNECTION_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), NIMF_TYPE_CONNECTION, NimfConnectionClass)) typedef struct _NimfConnection NimfConnection; typedef struct _NimfConnectionClass NimfConnectionClass; struct _NimfConnection { GObject parent_instance; guint16 id; NimfNim *nim; GSocket *socket; NimfResult *result; GSource *source; GSocketConnection *socket_connection; GHashTable *ics; }; struct _NimfConnectionClass { GObjectClass parent_class; }; GType nimf_connection_get_type (void) G_GNUC_CONST; NimfConnection *nimf_connection_new (void); guint16 nimf_connection_get_id (NimfConnection *connection); void nimf_connection_change_engine_by_id (NimfConnection *connection, const gchar *engine_id); void nimf_connection_change_engine (NimfConnection *connection, const gchar *engine_id, const gchar *method_id); G_END_DECLS #endif /* __NIMF_CONNECTION_H__ */