pidgin/pidginaccountstore.h

Sat, 07 Nov 2020 02:21:44 -0600

author
Elliott Sales de Andrade <quantum.analyst@gmail.com>
date
Sat, 07 Nov 2020 02:21:44 -0600
changeset 40588
abf38be27d21
parent 40539
2941deda6d8d
child 40711
3ec3eae31fe4
permissions
-rw-r--r--

Rename a few things in Jabber SI xfer to be clearer.

A small followup to the previous review, which I noticed while working on Bonjour's version.

Testing Done:
compile only.

Reviewed at https://reviews.imfreedom.org/r/205/

/*
 * Pidgin - Internet Messenger
 * Copyright (C) Pidgin Developers <devel@pidgin.im>
 *
 * Pidgin is the legal property of its developers, whose names are too numerous
 * to list here.  Please refer to the COPYRIGHT file distributed with this
 * source distribution.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program 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 General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, see <https://www.gnu.org/licenses/>.
 */

#ifndef PIDGIN_ACCOUNT_STORE_H
#define PIDGIN_ACCOUNT_STORE_H

/**
 * SECTION:pidginaccountstore
 * @section_id: pidgin-account-store
 * @short_description: A GtkListStore that keeps track of accounts
 * @title: Account Store
 *
 * #PidginAccountStore is a #GtkListStore that automatically keeps track of
 * what accounts are currently available in libpurple.  It's intended to be
 * used any time that you need to present an account selection to the user.
 */

#include <gtk/gtk.h>

#include <purple.h>

typedef enum {
	PIDGIN_ACCOUNT_STORE_COLUMN_ACCOUNT,
	PIDGIN_ACCOUNT_STORE_COLUMN_MARKUP,
	PIDGIN_ACCOUNT_STORE_COLUMN_ICON,
	PIDGIN_ACCOUNT_STORE_N_COLUMNS,
} PidginAccountStoreColumn;

G_BEGIN_DECLS

#define PIDGIN_TYPE_ACCOUNT_STORE pidgin_account_store_get_type()
G_DECLARE_FINAL_TYPE(PidginAccountStore, pidgin_account_store, PIDGIN,
                     ACCOUNT_STORE, GtkListStore)

/**
 * pidgin_account_store_new:
 *
 * Creates a new #PidginAccountStore that can be used anywhere a #GtkListStore
 * can be used.
 *
 * Returns: (transfer full): The new #PidginAccountStore instance.
 *
 * Since: 3.0.0
 */
GtkListStore *pidgin_account_store_new(void);

/**
 * pidgin_account_store_filter_connected:
 * @model: The #GtkTreeModel that's being filtered.
 * @iter: The #GtkTreeIter to check.
 * @data: Userdata passed to gtk_tree_model_filter_set_visible_func().
 *
 * pidgin_account_store_filter_connected() is a #GtkTreeModelFilterVisibleFunc
 * that can be set on a #GtkTreeModelFilter via
 * gtk_tree_model_filter_set_visible_func(), to only show accounts that are
 * currently connected.
 *
 * Returns: %TRUE if the account will be displayed, %FALSE otherwise.
 */
gboolean pidgin_account_store_filter_connected(GtkTreeModel *model, GtkTreeIter *iter, gpointer data);

G_END_DECLS

#endif /* PIDGIN_ACCOUNT_STORE_H */

mercurial