Sat, 29 Oct 2022 01:14:13 -0500
Convert PidginProxyPrefs to Adwaita 1.2
Testing Done:
Set all the values via the ui and the config file and tested bad values in the port in both as well. Bad values in the ui will store whatever atoi returned, but bad values in the config file will fallback to the default.
Reviewed at https://reviews.imfreedom.org/r/1996/
/* * 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/>. */ #include <glib/gi18n-lib.h> #include "pidgin/pidginaccountstore.h" #include "gtkutils.h" struct _PidginAccountStore { GtkListStore parent; }; /****************************************************************************** * Helpers *****************************************************************************/ static void pidgin_account_store_add_account(PidginAccountStore *store, PurpleAccount *account) { PurpleProtocol *protocol = NULL; GtkTreeIter iter; gchar *markup = NULL; const gchar *alias = NULL, *icon_name = NULL; protocol = purple_account_get_protocol(account); icon_name = purple_protocol_get_icon_name(protocol); alias = purple_account_get_private_alias(account); if(alias != NULL) { markup = g_strdup_printf(_("%s (%s) (%s)"), purple_account_get_username(account), alias, purple_account_get_protocol_name(account)); } else { markup = g_strdup_printf(_("%s (%s)"), purple_account_get_username(account), purple_account_get_protocol_name(account)); } gtk_list_store_append(GTK_LIST_STORE(store), &iter); gtk_list_store_set( GTK_LIST_STORE(store), &iter, PIDGIN_ACCOUNT_STORE_COLUMN_ACCOUNT, account, PIDGIN_ACCOUNT_STORE_COLUMN_MARKUP, markup, PIDGIN_ACCOUNT_STORE_COLUMN_ICON_NAME, icon_name, -1 ); g_free(markup); } static void pidgin_account_store_add_account_helper(PurpleAccount *account, gpointer data) { if(PURPLE_IS_ACCOUNT(account)) { pidgin_account_store_add_account(PIDGIN_ACCOUNT_STORE(data), PURPLE_ACCOUNT(account)); } } static void pidgin_account_store_remove_account(PidginAccountStore *store, PurpleAccount *account) { GtkTreeIter iter; if(gtk_tree_model_get_iter_first(GTK_TREE_MODEL(store), &iter) == FALSE) { purple_debug_warning("account-store", "account %s was removed but not in the store", purple_account_get_username(account)); return; } /* walk through the store and look for the account to remove */ do { PurpleAccount *found = NULL; gtk_tree_model_get( GTK_TREE_MODEL(store), &iter, PIDGIN_ACCOUNT_STORE_COLUMN_ACCOUNT, &found, -1 ); if(found == account) { g_object_unref(G_OBJECT(found)); gtk_list_store_remove(GTK_LIST_STORE(store), &iter); return; } } while(gtk_tree_model_iter_next(GTK_TREE_MODEL(store), &iter)); } /****************************************************************************** * Callbacks *****************************************************************************/ static void pidgin_account_store_account_added_cb(G_GNUC_UNUSED PurpleAccountManager *manager, PurpleAccount *account, gpointer data) { pidgin_account_store_add_account(PIDGIN_ACCOUNT_STORE(data), account); } static void pidgin_account_store_account_removed_cb(G_GNUC_UNUSED PurpleAccountManager *manager, PurpleAccount *account, gpointer data) { pidgin_account_store_remove_account(PIDGIN_ACCOUNT_STORE(data), account); } /****************************************************************************** * GObject Implementation *****************************************************************************/ G_DEFINE_TYPE(PidginAccountStore, pidgin_account_store, GTK_TYPE_LIST_STORE) static void pidgin_account_store_init(PidginAccountStore *store) { PurpleAccountManager *manager = NULL; GType types[PIDGIN_ACCOUNT_STORE_N_COLUMNS] = { PURPLE_TYPE_ACCOUNT, G_TYPE_STRING, G_TYPE_STRING, }; gtk_list_store_set_column_types( GTK_LIST_STORE(store), PIDGIN_ACCOUNT_STORE_N_COLUMNS, types ); /* add the known accounts */ manager = purple_account_manager_get_default(); purple_account_manager_foreach(manager, pidgin_account_store_add_account_helper, store); /* add the signal handlers to dynamically add/remove accounts */ g_signal_connect_object(manager, "added", G_CALLBACK(pidgin_account_store_account_added_cb), store, 0); g_signal_connect_object(manager, "removed", G_CALLBACK(pidgin_account_store_account_removed_cb), store, 0); } static void pidgin_account_store_finalize(GObject *obj) { purple_signals_disconnect_by_handle(obj); G_OBJECT_CLASS(pidgin_account_store_parent_class)->finalize(obj); } static void pidgin_account_store_class_init(PidginAccountStoreClass *klass) { GObjectClass *obj_class = G_OBJECT_CLASS(klass); obj_class->finalize = pidgin_account_store_finalize; } /****************************************************************************** * API *****************************************************************************/ GtkListStore * pidgin_account_store_new(void) { return GTK_LIST_STORE(g_object_new(PIDGIN_TYPE_ACCOUNT_STORE, NULL)); }