Mercurial > pidgin
annotate plugins/gevolution/gevolution.h @ 12116:e75ef7aa913e
[gaim-migrate @ 14416]
" This patch implements a replacement for the queuing
system from 1.x. It also obsoletes a previous patch
[#1338873] I submitted to prioritize the unseen states
in gtk conversations.
The attached envelope.png is ripped from the
msgunread.png already included in gaim. It should be
dropped in the pixmaps directory (Makefile.am is
updated accordingly in this patch).
The two separate queuing preferences from 1.x, queuing
messages while away and queuing all new messages (from
docklet), are replaced with a single 3-way preference
for conversations. The new preference is "Hide new IM
conversations". This preference can be set to never,
away and always.
When a gtk conversation is created, it may be placed in
a hidden conversation window instead of being placed
normally. This decision is based upon the preference
and possibly the away state of the account the
conversation is being created for. This *will* effect
conversations the user explicitly requests to be
created, so in these cases the caller must be sure to
present the conversation to the user, using
gaim_gtkconv_present_conversation(). This is done
already in gtkdialogs.c which handles creating
conversations requested by the user from gaim proper
(menus, double-clicking on budy in blist, etc.).
The main advantage to not queuing messages is that the
conversations exist, the message is written to the
conversation (and logged if appropriate) and the unseen
state is set on the conversation. This means no
additional features are needed to track whether there
are queued messages or not, just use the unseen state
on conversations.
Since conversations may not be visible (messages
"queued"), gaim proper needs some notification that
there are messages waiting. I opted for a menutray icon
that shows up when an im conversation has an unseen
message. Clicking this icon will focus (and show if
hidden) the first conversation with an unseen message.
This is essentially the same behavior of the docklet in
cvs right now, except that the icon is only visible
when there is a conversation with an unread message.
The api that is added is flexible enough to allow
either the docklet or the new blist menutray icon to be
visible for conversations of any/all types and for
unseen messages >= any state. Currently they are set to
only IM conversations and only unseen states >= TEXT
(system messages and no log messages will not trigger
blinking the docklet or showing the blist tray icon),
but these could be made preferences relatively easily
in the future. Other plugins could probably benefit as
well: gaim_gtk_conversations_get_first_unseen().
There is probably some limit to comment size, so I'll
stop rambling now. If anyone has more
questions/comments, catch me in #gaim, here or on
gaim-devel."
committer: Tailor Script <tailor@pidgin.im>
| author | Luke Schierer <lschiere@pidgin.im> |
|---|---|
| date | Wed, 16 Nov 2005 18:17:01 +0000 |
| parents | 5a8bc4b1f5b6 |
| children |
| rev | line source |
|---|---|
| 8089 | 1 /* |
| 2 * Evolution integration plugin for Gaim | |
| 3 * | |
| 4 * Copyright (C) 2003 Christian Hammond. | |
| 5 * | |
| 6 * This program is free software; you can redistribute it and/or | |
| 7 * modify it under the terms of the GNU General Public License as | |
| 8 * published by the Free Software Foundation; either version 2 of the | |
| 9 * License, or (at your option) any later version. | |
| 10 * | |
| 11 * This program is distributed in the hope that it will be useful, but | |
| 12 * WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
| 14 * General Public License for more details. | |
| 15 * | |
| 16 * You should have received a copy of the GNU General Public License | |
| 17 * along with this program; if not, write to the Free Software | |
| 18 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA | |
| 19 * 02111-1307, USA. | |
| 20 */ | |
| 21 #ifndef _GEVOLUTION_H_ | |
| 22 #define _GEVOLUTION_H_ | |
| 23 | |
|
9046
c307cf4c84d2
[gaim-migrate @ 9822]
Christian Hammond <chipx86@chipx86.com>
parents:
8089
diff
changeset
|
24 #ifdef HAVE_CONFIG_H |
|
c307cf4c84d2
[gaim-migrate @ 9822]
Christian Hammond <chipx86@chipx86.com>
parents:
8089
diff
changeset
|
25 # include "config.h" |
|
c307cf4c84d2
[gaim-migrate @ 9822]
Christian Hammond <chipx86@chipx86.com>
parents:
8089
diff
changeset
|
26 #endif |
|
c307cf4c84d2
[gaim-migrate @ 9822]
Christian Hammond <chipx86@chipx86.com>
parents:
8089
diff
changeset
|
27 |
| 8089 | 28 #include <libebook/e-book.h> |
| 29 | |
|
10081
ff4be2d1401d
[gaim-migrate @ 11071]
Christian Hammond <chipx86@chipx86.com>
parents:
9567
diff
changeset
|
30 enum |
|
ff4be2d1401d
[gaim-migrate @ 11071]
Christian Hammond <chipx86@chipx86.com>
parents:
9567
diff
changeset
|
31 { |
|
ff4be2d1401d
[gaim-migrate @ 11071]
Christian Hammond <chipx86@chipx86.com>
parents:
9567
diff
changeset
|
32 ADDRBOOK_COLUMN_NAME, |
|
ff4be2d1401d
[gaim-migrate @ 11071]
Christian Hammond <chipx86@chipx86.com>
parents:
9567
diff
changeset
|
33 ADDRBOOK_COLUMN_URI, |
|
ff4be2d1401d
[gaim-migrate @ 11071]
Christian Hammond <chipx86@chipx86.com>
parents:
9567
diff
changeset
|
34 NUM_ADDRBOOK_COLUMNS |
|
ff4be2d1401d
[gaim-migrate @ 11071]
Christian Hammond <chipx86@chipx86.com>
parents:
9567
diff
changeset
|
35 }; |
|
ff4be2d1401d
[gaim-migrate @ 11071]
Christian Hammond <chipx86@chipx86.com>
parents:
9567
diff
changeset
|
36 |
|
ff4be2d1401d
[gaim-migrate @ 11071]
Christian Hammond <chipx86@chipx86.com>
parents:
9567
diff
changeset
|
37 typedef struct |
|
ff4be2d1401d
[gaim-migrate @ 11071]
Christian Hammond <chipx86@chipx86.com>
parents:
9567
diff
changeset
|
38 { |
|
ff4be2d1401d
[gaim-migrate @ 11071]
Christian Hammond <chipx86@chipx86.com>
parents:
9567
diff
changeset
|
39 GtkListStore *sources; |
|
ff4be2d1401d
[gaim-migrate @ 11071]
Christian Hammond <chipx86@chipx86.com>
parents:
9567
diff
changeset
|
40 EBook *active_book; |
|
ff4be2d1401d
[gaim-migrate @ 11071]
Christian Hammond <chipx86@chipx86.com>
parents:
9567
diff
changeset
|
41 GList *contacts; |
|
ff4be2d1401d
[gaim-migrate @ 11071]
Christian Hammond <chipx86@chipx86.com>
parents:
9567
diff
changeset
|
42 |
|
ff4be2d1401d
[gaim-migrate @ 11071]
Christian Hammond <chipx86@chipx86.com>
parents:
9567
diff
changeset
|
43 } GevoAddrbooksSelector; |
|
9354
a5ec9e73f46d
[gaim-migrate @ 10162]
Christian Hammond <chipx86@chipx86.com>
parents:
9046
diff
changeset
|
44 |
| 8089 | 45 typedef struct |
| 46 { | |
| 47 GaimAccount *account; | |
| 48 char *username; | |
| 49 | |
| 50 EBook *book; | |
| 51 | |
| 52 GtkWidget *win; | |
| 53 GtkWidget *treeview; | |
|
10081
ff4be2d1401d
[gaim-migrate @ 11071]
Christian Hammond <chipx86@chipx86.com>
parents:
9567
diff
changeset
|
54 GtkWidget *addrbooks_combo; |
| 8089 | 55 GtkWidget *search_field; |
| 56 GtkWidget *group_combo; | |
| 57 GtkWidget *select_button; | |
| 58 GtkWidget *account_optmenu; | |
| 59 GtkListStore *model; | |
| 60 | |
|
10081
ff4be2d1401d
[gaim-migrate @ 11071]
Christian Hammond <chipx86@chipx86.com>
parents:
9567
diff
changeset
|
61 GtkTreeModel *addrbooks; |
| 8089 | 62 GList *contacts; |
| 63 | |
| 64 } GevoAddBuddyDialog; | |
| 65 | |
| 66 typedef struct | |
| 67 { | |
| 68 gboolean person_only; | |
| 69 | |
| 70 GaimAccount *account; | |
| 71 GaimBuddy *buddy; | |
| 72 | |
|
10081
ff4be2d1401d
[gaim-migrate @ 11071]
Christian Hammond <chipx86@chipx86.com>
parents:
9567
diff
changeset
|
73 EBook *book; |
| 8089 | 74 EContact *contact; |
| 75 | |
| 76 GtkWidget *win; | |
| 77 GtkWidget *accounts_menu; | |
| 78 GtkWidget *screenname; | |
| 79 GtkWidget *firstname; | |
| 80 GtkWidget *lastname; | |
| 81 GtkWidget *email; | |
| 82 GtkWidget *group_combo; | |
| 83 GtkWidget *add_button; | |
| 84 | |
| 85 char *buddy_icon; | |
| 86 | |
| 87 } GevoNewPersonDialog; | |
| 88 | |
| 89 typedef struct | |
| 90 { | |
| 91 GaimBuddy *buddy; | |
| 92 | |
| 93 EBook *book; | |
| 94 | |
| 95 GtkWidget *win; | |
| 96 GtkWidget *treeview; | |
|
10081
ff4be2d1401d
[gaim-migrate @ 11071]
Christian Hammond <chipx86@chipx86.com>
parents:
9567
diff
changeset
|
97 GtkWidget *addrbooks_combo; |
| 8089 | 98 GtkWidget *search_field; |
| 99 GtkWidget *assoc_button; | |
| 100 GtkWidget *imhtml; | |
| 101 GtkListStore *model; | |
| 102 | |
|
10081
ff4be2d1401d
[gaim-migrate @ 11071]
Christian Hammond <chipx86@chipx86.com>
parents:
9567
diff
changeset
|
103 GtkTreeModel *addrbooks; |
| 8089 | 104 GList *contacts; |
| 105 | |
| 106 } GevoAssociateBuddyDialog; | |
| 107 | |
| 108 void gevo_add_buddy_dialog_show(GaimAccount *account, const char *username, | |
| 109 const char *group, const char *alias); | |
| 110 void gevo_add_buddy_dialog_add_person(GevoAddBuddyDialog *dialog, | |
| 111 EContact *contact, | |
| 112 const char *name, GaimAccount *account, | |
| 113 const char *screenname); | |
| 114 | |
|
10081
ff4be2d1401d
[gaim-migrate @ 11071]
Christian Hammond <chipx86@chipx86.com>
parents:
9567
diff
changeset
|
115 void gevo_new_person_dialog_show(EBook *book, EContact *contact, |
|
ff4be2d1401d
[gaim-migrate @ 11071]
Christian Hammond <chipx86@chipx86.com>
parents:
9567
diff
changeset
|
116 GaimAccount *account, const char *username, |
|
ff4be2d1401d
[gaim-migrate @ 11071]
Christian Hammond <chipx86@chipx86.com>
parents:
9567
diff
changeset
|
117 const char *group, GaimBuddy *buddy, |
|
ff4be2d1401d
[gaim-migrate @ 11071]
Christian Hammond <chipx86@chipx86.com>
parents:
9567
diff
changeset
|
118 gboolean person_only); |
| 8089 | 119 |
| 120 void gevo_add_buddy(GaimAccount *account, const char *group_name, | |
| 121 const char *screenname, const char *alias); | |
| 122 GList *gevo_get_groups(void); | |
| 123 | |
| 124 EContactField gevo_prpl_get_field(GaimAccount *account, GaimBuddy *buddy); | |
| 125 gboolean gevo_prpl_is_supported(GaimAccount *account, GaimBuddy *buddy); | |
|
10081
ff4be2d1401d
[gaim-migrate @ 11071]
Christian Hammond <chipx86@chipx86.com>
parents:
9567
diff
changeset
|
126 gboolean gevo_load_addressbook(const gchar *uri, EBook **book, GError **error); |
| 8089 | 127 |
| 128 GevoAssociateBuddyDialog *gevo_associate_buddy_dialog_new(GaimBuddy *buddy); | |
| 129 | |
|
10081
ff4be2d1401d
[gaim-migrate @ 11071]
Christian Hammond <chipx86@chipx86.com>
parents:
9567
diff
changeset
|
130 GtkTreeModel *gevo_addrbooks_model_new(void); |
|
ff4be2d1401d
[gaim-migrate @ 11071]
Christian Hammond <chipx86@chipx86.com>
parents:
9567
diff
changeset
|
131 void gevo_addrbooks_model_unref(GtkTreeModel *model); |
|
ff4be2d1401d
[gaim-migrate @ 11071]
Christian Hammond <chipx86@chipx86.com>
parents:
9567
diff
changeset
|
132 void gevo_addrbooks_model_populate(GtkTreeModel *model); |
|
11117
5a8bc4b1f5b6
[gaim-migrate @ 13173]
Richard Laager <rlaager@wiktel.com>
parents:
10835
diff
changeset
|
133 EContact *gevo_search_buddy_in_contacts(GaimBuddy *buddy, EBookQuery *query); |
|
10081
ff4be2d1401d
[gaim-migrate @ 11071]
Christian Hammond <chipx86@chipx86.com>
parents:
9567
diff
changeset
|
134 |
| 8089 | 135 #endif /* _GEVOLUTION_H_ */ |
