aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy-gtk/empathy-contact-selector-dialog.c
Commit message (Collapse)AuthorAgeFilesLines
* contact-selector-dialog: add a selected-account propertyDanielle Madeley2011-05-051-1/+24
|
* rename empathy-dispatcher to empathy-request-utilGuillaume Desmottes2011-03-171-1/+0
| | | | | We don't have EmpathyDispatcher any more so this file just contains some utility functions now.
* Make AccountChooser filters asynchronous to let them handle newly connected ↵Vitaly Minko2010-11-111-3/+9
| | | | accounts properly (#633481).
* Don't use deprecated gtk_dialog_set_has_separatorDiego Escalante Urrelo2010-09-281-2/+0
| | | | | | This is deprecated in GTK+ 2.22 Bug #630107
* Remove calls to gtk_dialog_set_has_separator() if building against GTK+ 3Philip Withnall2010-09-071-1/+1
| | | | | | | gtk_dialog_set_has_separator() has been removed in GTK+ 3, but can't be removed (or the property's default value changed) in GTK+ 2 without breaking API. This adds a wrapper macro to keep the calls when building against GTK+ 2, and remove them when building against GTK+ 3.
* empathy_contact_selector_dialog_get_selected: allow to get the account as wellGuillaume Desmottes2010-08-101-2/+13
|
* Merge EmpathyContact:name and *_set_alias() to EmpathyContact:aliasPhilip Withnall2010-07-221-3/+3
| | | | The "name" API was a relic of Gossip.
* return correct value in g_return_val_if_failGuillaume Desmottes2010-03-151-1/+1
|
* contact-selector-dialog: unref filter_account when disposingGuillaume Desmottes2010-03-151-0/+5
|
* contact_selector_dialog_account_changed_cb: cope with ↵Guillaume Desmottes2010-03-151-0/+3
| | | | tp_account_get_connection being NULL
* contact-selector-dialog: Add a property to filter contacts by accountGuillaume Desmottes2010-03-151-3/+65
| | | | | This is useful when the account chooser is not displayed to filter contacts from one specific account.
* [EmpathyContactSelectorDialog] add contact filtering supportDanielle Madeley2009-12-221-10/+53
|
* [EmpathyContactSelectorDialog] remove got_response vcallDanielle Madeley2009-12-211-31/+25
| | | | | | | | | | The got_response vcall method wasn't generic enough. It assumed that your response code was always GTK_RESPONSE_ACCEPT, and doesn't allow for the dialog to be used with gtk_dialog_run. Instead dialogs now use the regular response() vcall provided by GtkDialog, and an additional API method empathy_contact_selector_dialog_get_selected() provides the information content of the dialog.
* [EmpathyContactSelectorDialog] initialise priv->show_account_chooser correctlyDanielle Madeley2009-12-211-0/+1
|
* [EmpathyContactSelectorDialog] normalise case in match functionDanielle Madeley2009-12-191-15/+21
|
* [EmpathyContactSelectorDialog] tweak paddingDanielle Madeley2009-12-191-1/+2
|
* [EmpathyContactSelectorDialog] switch from table_contents to VBoxDanielle Madeley2009-12-191-3/+8
| | | | This makes it more flexible to add other contents to the dialog.
* [EmpathyContactSelectorDialog] make the Account Chooser optionalDanielle Madeley2009-12-191-7/+108
|
* [EmpathyContactSelectorDialog] make this an abstract typeDanielle Madeley2009-12-191-1/+2
| | | | i.e. a type that must be inherited and can't be created directly
* contact-selector-dialog: set a border of 12 as defined in the HIGGuillaume Desmottes2009-12-171-0/+2
|
* contact-selector-dialog: add API for subclass to redefine the accoutn filter ↵Guillaume Desmottes2009-12-171-2/+16
| | | | function
* contact-selector-dialog: make table_contact a protected memberGuillaume Desmottes2009-12-171-4/+3
| | | | So subclass can easily add widgets.
* contact-selector-dialog: emit response when the entry is activatedGuillaume Desmottes2009-12-171-0/+17
|
* rename empathy-new-message-dialog.ui to empathy-contact-selector-dialog.uiGuillaume Desmottes2009-12-171-1/+1
|
* add empathy-contact-selector-dialogGuillaume Desmottes2009-12-171-0/+320
EmpathyContactSelectorDialog is an abstract class to helping to implement dialog such as the "new message" dialog.