Blame telepathy-account-widgets/tp-account-widgets/tpaw-irc-network.h

Packit 79f644
/*
Packit 79f644
 * Copyright (C) 2007-2008 Guillaume Desmottes
Packit 79f644
 *
Packit 79f644
 * This library is free software; you can redistribute it and/or
Packit 79f644
 * modify it under the terms of the GNU Lesser General Public
Packit 79f644
 * License as published by the Free Software Foundation; either
Packit 79f644
 * version 2.1 of the License, or (at your option) any later version.
Packit 79f644
 *
Packit 79f644
 * This library is distributed in the hope that it will be useful,
Packit 79f644
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit 79f644
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit 79f644
 * Lesser General Public License for more details.
Packit 79f644
 *
Packit 79f644
 * You should have received a copy of the GNU Lesser General Public
Packit 79f644
 * License along with this library; if not, write to the Free Software
Packit 79f644
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
Packit 79f644
 *
Packit 79f644
 * Authors: Guillaume Desmottes <gdesmott@gnome.org>
Packit 79f644
 */
Packit 79f644
Packit 79f644
#ifndef __TPAW_IRC_NETWORK_H__
Packit 79f644
#define __TPAW_IRC_NETWORK_H__
Packit 79f644
Packit 79f644
#include <glib-object.h>
Packit 79f644
Packit 79f644
#include "tpaw-irc-server.h"
Packit 79f644
Packit 79f644
G_BEGIN_DECLS
Packit 79f644
Packit 79f644
typedef struct _TpawIrcNetwork TpawIrcNetwork;
Packit 79f644
typedef struct _TpawIrcNetworkPriv TpawIrcNetworkPriv;
Packit 79f644
typedef struct _TpawIrcNetworkClass TpawIrcNetworkClass;
Packit 79f644
Packit 79f644
struct _TpawIrcNetwork
Packit 79f644
{
Packit 79f644
  GObject parent;
Packit 79f644
  TpawIrcNetworkPriv *priv;
Packit 79f644
Packit 79f644
  gboolean user_defined;
Packit 79f644
  gboolean dropped;
Packit 79f644
};
Packit 79f644
Packit 79f644
struct _TpawIrcNetworkClass
Packit 79f644
{
Packit 79f644
    GObjectClass parent_class;
Packit 79f644
};
Packit 79f644
Packit 79f644
GType tpaw_irc_network_get_type (void);
Packit 79f644
Packit 79f644
/* TYPE MACROS */
Packit 79f644
#define TPAW_TYPE_IRC_NETWORK (tpaw_irc_network_get_type ())
Packit 79f644
#define TPAW_IRC_NETWORK(o) \
Packit 79f644
  (G_TYPE_CHECK_INSTANCE_CAST ((o), TPAW_TYPE_IRC_NETWORK, \
Packit 79f644
                               TpawIrcNetwork))
Packit 79f644
#define TPAW_IRC_NETWORK_CLASS(k) \
Packit 79f644
  (G_TYPE_CHECK_CLASS_CAST ((k), TPAW_TYPE_IRC_NETWORK,\
Packit 79f644
                            TpawIrcNetworkClass))
Packit 79f644
#define TPAW_IS_IRC_NETWORK(o) \
Packit 79f644
  (G_TYPE_CHECK_INSTANCE_TYPE ((o), TPAW_TYPE_IRC_NETWORK))
Packit 79f644
#define TPAW_IS_IRC_NETWORK_CLASS(k) \
Packit 79f644
  (G_TYPE_CHECK_CLASS_TYPE ((k), TPAW_TYPE_IRC_NETWORK))
Packit 79f644
#define TPAW_IRC_NETWORK_GET_CLASS(o) \
Packit 79f644
  (G_TYPE_INSTANCE_GET_CLASS ((o), TPAW_TYPE_IRC_NETWORK, \
Packit 79f644
                              TpawIrcNetworkClass))
Packit 79f644
Packit 79f644
void tpaw_irc_network_activate (TpawIrcNetwork *self);
Packit 79f644
Packit 79f644
TpawIrcNetwork * tpaw_irc_network_new (const gchar *name);
Packit 79f644
Packit 79f644
GSList * tpaw_irc_network_get_servers (TpawIrcNetwork *network);
Packit 79f644
Packit 79f644
void tpaw_irc_network_append_server (TpawIrcNetwork *network,
Packit 79f644
    TpawIrcServer *server);
Packit 79f644
Packit 79f644
void tpaw_irc_network_remove_server (TpawIrcNetwork *network,
Packit 79f644
    TpawIrcServer *server);
Packit 79f644
Packit 79f644
void tpaw_irc_network_set_server_position (TpawIrcNetwork *network,
Packit 79f644
    TpawIrcServer *server, gint pos);
Packit 79f644
Packit 79f644
const gchar * tpaw_irc_network_get_name (TpawIrcNetwork *network);
Packit 79f644
Packit 79f644
const gchar * tpaw_irc_network_get_charset (TpawIrcNetwork *network);
Packit 79f644
Packit 79f644
G_END_DECLS
Packit 79f644
Packit 79f644
#endif /* __TPAW_IRC_NETWORK_H__ */