pidgin/pidgin

Port wincred keyring to PurpleCredentialManager

2021-01-30, Elliott Sales de Andrade
548fed625b8a
Port wincred keyring to PurpleCredentialManager

* Inline PURPLE_PLUGIN_INIT in wincred.
* Add skeleton of wincred PurpleCredentialProvider object.
* Implement password reading.
* Implement wincred password writing.
* Implement wincred password clearing.
* Autoload wincred keyring plugin.
* Cleanup formatting.

Testing Done:
Added XMPP account, saved password, disabled and re-enabled account which kept the password. Restarted Pidgin and password was still saved. Removed XMPP account, and password was deleted from Credential Manager.

I'm not sure that the password needs to be converted from UTF-8 to "Unicode", as I did not test modifying the password in Credential Manager.

Bugs closed: PIDGIN-17489

Reviewed at https://reviews.imfreedom.org/r/466/
/* 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
* 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, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA
*/
#if !defined(PIDGIN_GLOBAL_HEADER_INSIDE) && !defined(PIDGIN_COMPILATION)
# error "only <pidgin.h> may be included directly"
#endif
#ifndef PIDGIN_MENU_TRAY_H
#define PIDGIN_MENU_TRAY_H
/**
* SECTION:pidginmenutray
* @section_id: pidgin-menu-tray
* @short_description: <filename>pidginmenutray.h</filename>
* @title: Tray Menu Item
*/
#include <gtk/gtk.h>
G_BEGIN_DECLS
#define PIDGIN_TYPE_MENU_TRAY (pidgin_menu_tray_get_type())
G_DECLARE_FINAL_TYPE(PidginMenuTray, pidgin_menu_tray, PIDGIN, MENU_TRAY, GtkMenuItem)
/**
* PidginMenuTray:
*
* A PidginMenuTray is a #GtkMenuItem that allows you to pack icons into it
* similar to a system notification area but in a windows menu bar.
*/
/**
* pidgin_menu_tray_new:
*
* Creates a new PidginMenuTray
*
* Returns: A new PidginMenuTray
*/
GtkWidget *pidgin_menu_tray_new(void);
/**
* pidgin_menu_tray_get_box:
* @menu_tray: The PidginMenuTray
*
* Gets the box for the PidginMenuTray
*
* Returns: (transfer none): The box that this menu tray is using
*/
GtkWidget *pidgin_menu_tray_get_box(PidginMenuTray *menu_tray);
/**
* pidgin_menu_tray_append:
* @menu_tray: The tray
* @widget: The widget
* @tooltip: The tooltip for this widget
*
* Appends a widget into the tray
*/
void pidgin_menu_tray_append(PidginMenuTray *menu_tray, GtkWidget *widget, const char *tooltip);
/**
* pidgin_menu_tray_prepend:
* @menu_tray: The tray
* @widget: The widget
* @tooltip: The tooltip for this widget
*
* Prepends a widget into the tray
*/
void pidgin_menu_tray_prepend(PidginMenuTray *menu_tray, GtkWidget *widget, const char *tooltip);
/**
* pidgin_menu_tray_set_tooltip:
* @menu_tray: The tray
* @widget: The widget
* @tooltip: The tooltip to set for the widget
*
* Set the tooltip for a widget
*/
void pidgin_menu_tray_set_tooltip(PidginMenuTray *menu_tray, GtkWidget *widget, const char *tooltip);
G_END_DECLS
#endif /* PIDGIN_MENU_TRAY_H */