Thu, 29 Jun 2017 15:33:29 -0500
gtkidle: Port XScreensaver to DBus ScreenSaver interfaces
Modern Linux desktops use one of 3 DBus interfaces for querying if
the screensaver is currently active. There's a FreeDesktop one, a
GNOME one, and a KDE one. Rather than querying XScreensaver, which
may not be available, such as with Wayland, this patch ports Pidgin's
idle checking function to use these modern DBus interfaces.
Because Gio includes built-in DBus API, this patch also drops the
guards around pidgin_get_time_idle(), which also re-enables the
Win32 code which wasn't enabled with the previous guards.
/* pidgin * * 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, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA */ #ifndef _PIDGIN_CONVERSATION_H_ #define _PIDGIN_CONVERSATION_H_ /** * SECTION:gtkconv * @section_id: pidgin-gtkconv * @short_description: <filename>gtkconv.h</filename> * @title: Conversation API * @see_also: <link linkend="chapter-signals-gtkconv">Conversation signals</link> */ #define PIDGIN_TYPE_CONVERSATION (pidgin_conversation_get_type()) typedef struct _PidginImPane PidginImPane; typedef struct _PidginChatPane PidginChatPane; typedef struct _PidginConversation PidginConversation; /** * PidginUnseenState: * @PIDGIN_UNSEEN_NONE: No unseen text in the conversation. * @PIDGIN_UNSEEN_EVENT: Unseen events in the conversation. * @PIDGIN_UNSEEN_NO_LOG: Unseen text with NO_LOG flag. * @PIDGIN_UNSEEN_TEXT: Unseen text in the conversation. * @PIDGIN_UNSEEN_NICK: Unseen text and the nick was said. * * Unseen text states. */ typedef enum { PIDGIN_UNSEEN_NONE, PIDGIN_UNSEEN_EVENT, PIDGIN_UNSEEN_NO_LOG, PIDGIN_UNSEEN_TEXT, PIDGIN_UNSEEN_NICK } PidginUnseenState; enum { CHAT_USERS_ICON_COLUMN, CHAT_USERS_ALIAS_COLUMN, CHAT_USERS_ALIAS_KEY_COLUMN, CHAT_USERS_NAME_COLUMN, CHAT_USERS_FLAGS_COLUMN, CHAT_USERS_COLOR_COLUMN, CHAT_USERS_WEIGHT_COLUMN, CHAT_USERS_ICON_STOCK_COLUMN, CHAT_USERS_COLUMNS }; #define PIDGIN_CONVERSATION(conv) \ ((PidginConversation *)purple_conversation_get_ui_data(conv)) #define PIDGIN_IS_PIDGIN_CONVERSATION(conv) \ (purple_conversation_get_ui_ops(conv) == \ pidgin_conversations_get_conv_ui_ops()) #include "pidgin.h" #include "conversation.h" #include "gtkconvwin.h" #include "gtkconv-theme.h" /************************************************************************** * Structures **************************************************************************/ /** * PidginConversation: * * A GTK+ conversation pane. */ struct _PidginConversation { gint box_count; PurpleConversation *active_conv; PurpleConversation *last_conversed; GList *convs; GList *send_history; PidginConvWindow *win; gboolean make_sound; GtkWidget *tab_cont; GtkWidget *tabby; GtkWidget *menu_tabby; PidginConvTheme *theme; GArray *nick_colors; PurpleMessageFlags last_flags; GtkWidget *webview; GtkWidget *entry; gboolean auto_resize; /* this is set to TRUE if the conversation * is being resized by a non-user-initiated * event, such as the buddy icon appearing */ gboolean entry_growing; /* True if the size of the entry was set * automatically by typing too much to fit * in one line */ GtkWidget *close; /* "x" on the tab */ GtkWidget *icon; GtkWidget *tab_label; GtkWidget *menu_icon; GtkWidget *menu_label; GtkWidget *lower_hbox; PidginUnseenState unseen_state; guint unseen_count; union { PidginImPane *im; PidginChatPane *chat; } u; time_t newday; GtkWidget *infopane_hbox; GtkWidget *infopane; GtkListStore *infopane_model; GtkTreeIter infopane_iter; /* Used when attaching a PidginConversation to a PurpleConversation * with message history */ int attach_timer; GList *attach_current; /* * Quick Find. */ GtkWidget *quickfind_entry; GtkWidget *quickfind_container; }; G_BEGIN_DECLS /************************************************************************** * GTK+ Conversation API **************************************************************************/ /** * pidgin_conversation_get_type: * * Returns: The #GType for the #PidginConversation boxed structure. */ GType pidgin_conversation_get_type(void); /** * pidgin_conversations_get_conv_ui_ops: * * Returns the UI operations structure for GTK+ conversations. * * Returns: The GTK+ conversation operations structure. */ PurpleConversationUiOps *pidgin_conversations_get_conv_ui_ops(void); /** * pidgin_conversations_get_default_theme: * * Returns the default theme for GTK+ conversations. * * Returns: The default GTK+ conversation theme. */ PurpleTheme *pidgin_conversations_get_default_theme(void); /** * pidgin_conv_update_buddy_icon: * @im: The IM conversation. * * Updates the buddy icon on a conversation. */ void pidgin_conv_update_buddy_icon(PurpleIMConversation *im); /** * pidgin_conv_switch_active_conversation: * @conv: The conversation * * Sets the active conversation within a GTK-conversation. */ void pidgin_conv_switch_active_conversation(PurpleConversation *conv); /** * pidgin_conv_update_buttons_by_protocol: * @conv: The conversation. * * Updates conversation buttons by protocol. */ void pidgin_conv_update_buttons_by_protocol(PurpleConversation *conv); /** * pidgin_conversations_get_unseen_all: * @min_state: The minimum unseen state. * @hidden_only: If %TRUE, only consider hidden conversations. * @max_count: Maximum number of conversations to return, or 0 for * no maximum. * * Returns a list of conversations of any type which have an unseen * state greater than or equal to the specified minimum state. Using the * hidden_only parameter, this search can be limited to hidden * conversations. The max_count parameter will limit the total number of * converations returned if greater than zero. The returned list should * be freed by the caller. * * Returns: List of PurpleConversation matching criteria, or %NULL. */ GList * pidgin_conversations_get_unseen_all(PidginUnseenState min_state, gboolean hidden_only, guint max_count); /** * pidgin_conversations_get_unseen_ims: * @min_state: The minimum unseen state. * @hidden_only: If %TRUE, only consider hidden conversations. * @max_count: Maximum number of conversations to return, or 0 for * no maximum. * * Returns a list of IM conversations which have an unseen state greater * than or equal to the specified minimum state. Using the hidden_only * parameter, this search can be limited to hidden IM conversations. The * max_count parameter will limit the total number of IM converations * returned if greater than zero. The returned list should be freed by the * caller. * * Returns: List of PurpleIMConversation matching criteria, or %NULL. */ GList * pidgin_conversations_get_unseen_ims(PidginUnseenState min_state, gboolean hidden_only, guint max_count); /** * pidgin_conversations_get_unseen_chats: * @min_state: The minimum unseen state. * @hidden_only: If %TRUE, only consider hidden conversations. * @max_count: Maximum number of conversations to return, or 0 for * no maximum. * * Returns a list of chat conversations which have an unseen state greater * than or equal to the specified minimum state. Using the hidden_only * parameter, this search can be limited to hidden chat conversations. The * max_count parameter will limit the total number of chat converations * returned if greater than zero. The returned list should be freed by the * caller. * * Returns: List of PurpleChatConversation matching criteria, or %NULL. */ GList * pidgin_conversations_get_unseen_chats(PidginUnseenState min_state, gboolean hidden_only, guint max_count); /** * pidgin_conversations_fill_menu: * @menu: Menu widget to add items to. * @convs: List of PurpleConversation to add to menu. * * Fill a menu with a list of conversations. Clicking the conversation * menu item will present that conversation to the user. * * Returns: Number of conversations added to menu. */ guint pidgin_conversations_fill_menu(GtkWidget *menu, GList *convs); /** * pidgin_conv_present_conversation: * @conv: The conversation. * * Presents a purple conversation to the user. */ void pidgin_conv_present_conversation(PurpleConversation *conv); /** * pidgin_conv_attach_to_conversation: * @conv: The conversation. * * Reattach Pidgin UI to a conversation. * * Returns: Wheter Pidgin UI was successfully attached. */ gboolean pidgin_conv_attach_to_conversation(PurpleConversation *conv); /** * pidgin_conv_get_window: * @gtkconv: The GTK+ conversation. * * Returns: The window the conversation belongs to. */ PidginConvWindow *pidgin_conv_get_window(PidginConversation *gtkconv); /** * pidgin_conv_get_tab_icon: * @conv: The conversation. * @small_icon: Whether to get the small icon. * * Returns: The tab icon. */ GdkPixbuf *pidgin_conv_get_tab_icon(PurpleConversation *conv, gboolean small_icon); /** * pidgin_conv_new: * @conv: The conversation. * * Creates a new GTK+ conversation for a given #PurpleConversation. */ void pidgin_conv_new(PurpleConversation *conv); /** * pidgin_conv_get_tab_at_xy: * @win: The conversation window. * @x: X-coordinate to look up. * @y: Y-coordinate to look up. * @to_right: (out): Return address for a boolean which will be %TRUE if the * coordinates are on the right side of the tab (or bottom in case of * a vertical notebook), %FALSE otherwise. * * Returns: The tab index of a conversation in @win at (@x, @y). */ int pidgin_conv_get_tab_at_xy(PidginConvWindow *win, int x, int y, gboolean *to_right); /** * pidgin_conv_is_hidden: * @gtkconv: The GTK+ conversation. * * Returns: %TRUE if the conversation is hidden, %FALSE otherwise. */ gboolean pidgin_conv_is_hidden(PidginConversation *gtkconv); /**************************************************************************/ /* GTK+ Conversations Subsystem */ /**************************************************************************/ /** * pidgin_conversations_get_handle: * * Returns the gtk conversations subsystem handle. * * Returns: The conversations subsystem handle. */ void *pidgin_conversations_get_handle(void); /** * pidgin_conversations_init: * * Initializes the GTK+ conversations subsystem. */ void pidgin_conversations_init(void); /** * pidgin_conversations_uninit: * * Uninitialized the GTK+ conversation subsystem. */ void pidgin_conversations_uninit(void); G_END_DECLS #endif /* _PIDGIN_CONVERSATION_H_ */