aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy-gtk/empathy-individual-view.c
Commit message (Collapse)AuthorAgeFilesLines
* Don't try to expand groups if the EmpathyIndividualView's store is unsetPhilip Withnall2010-08-201-2/+6
|
* Bug 627219 — Link dialog search doesn't workPhilip Withnall2010-08-201-22/+73
| | | | | Allow the store of an EmpathyIndividualView to be changed after construction, and cope with recreating the filter when this happens. Closes: bgo#627219
* Use EmpathyIndividualWidget in EmpathyIndividualView tooltipsPhilip Withnall2010-08-201-12/+8
|
* Aggregate group expansion/contraction in EmpathyIndividualViewPhilip Withnall2010-08-181-36/+96
| | | | | | | The idle handler for expanding/contracting groups was getting scheduled many hundreds of times more than necessary when initialising the contact list. This aggregates expansion/contraction of group rows into a single idle handler call which expands or contracts a number of rows at once.
* Don't recursively expand contact list rows unnecessarilyPhilip Withnall2010-08-181-1/+1
|
* Bug 626552 — Sporadic tree model warnings upon initial fill in EmpathyPhilip Withnall2010-08-181-5/+15
| | | | | | Work around bgo#621076 in EmpathyIndividualView to ensure that all individuals and groups are visible in the contact list on initial load. Closes: bgo#626552
* Rearrange functions in EmpathyIndividualViewPhilip Withnall2010-08-181-109/+109
|
* Support calls in the Personas menu.Travis Reitter2010-08-161-2/+2
|
* Only enable row reordering in EmpathyIndividualView if dragging is enabledPhilip Withnall2010-08-121-6/+9
|
* re-implement empathy_dispatcher_chat_with_contact using ↵Guillaume Desmottes2010-08-111-1/+1
| | | | | | empathy_dispatcher_chat_with_contact_id We don't use the callback arg anyway.
* Minor coding style fixes in EmpathyIndividual[Store|View]Philip Withnall2010-08-091-1/+1
|
* Cast away constness of strings in GtkTargetEntry structsPhilip Withnall2010-08-051-8/+13
| | | | | This stops gcc warning us about GTK+'s broken API which uses non-const string fields in a static struct.
* Fix missing entries in switch statementsPhilip Withnall2010-08-051-3/+1
| | | | Added missing default cases and missing enum cases.
* use different labels if view is emptyFelix Kaser2010-08-051-0/+13
| | | | | either show "no match found" or "your contact list is empty". fixes bug #621642
* Fix an assertion failure in the filtering code due to show-offline changesPhilip Withnall2010-08-051-2/+4
| | | | | | individual_view_is_visible_individual() is now called even when the live search widget isn't in use, so has to fail gracefully in that case. Closes: bgo#626041
* use member variable instead of getterFelix Kaser2010-08-031-5/+3
|
* refactored show_offline property to the viewFelix Kaser2010-08-031-4/+59
| | | | | | the show offline property was moved from the individual store to the individual view. this allows to easily and automatically search through offline contacts as well.
* Connect signals only once, it's enoughXavier Claessens2010-08-031-7/+0
|
* added return value for the keynav signalFelix Kaser2010-07-291-2/+6
| | | | now the hook widget can decide if it wants to handle the event or not. in case of the treeview this allows us to navigate in the search entry with left and right and navigate in the treeview with up and down since those are catched by the treeview
* changed the type of keynav signalFelix Kaser2010-07-291-4/+4
| | | | now VOID__BOXED is used instead of VOID__POINTER
* added check for null before scroll to cellFelix Kaser2010-07-291-2/+5
|
* add key navigation possibilities to searchFelix Kaser2010-07-291-0/+23
| | | | one result of this patch is that key navigation in the search-entry will not be possible any more, in order to allow the hook widget to react to key navigation.
* keep the selected contact visible after searchFelix Kaser2010-07-291-0/+7
| | | | empathy will scroll automatically to the cell which is selected, when the search is hidden.
* fix small regression with expanding groupsFelix Kaser2010-07-281-1/+1
|
* Adjust for signature change in folks_groups_change_group()Travis Reitter2010-07-271-2/+20
|
* Don't depend on Folks capabilities in the IndividualViewTravis Reitter2010-07-211-2/+13
|
* Take advantage of tp_clear_object().Travis Reitter2010-07-211-2/+1
|
* Minimize the scope of some variables and avoid risk of double-freeing a string.Travis Reitter2010-07-211-3/+4
|
* Don't enclose trivial blocks in {}.Travis Reitter2010-07-211-63/+22
|
* Use explicit '!= NULL' for pointer boolean expressions.Travis Reitter2010-07-211-10/+11
|
* Don't leak references to the contacts returned from ↵Travis Reitter2010-07-211-1/+2
| | | | empathy_contact_dup_from_folks_individual().
* Add 'dup' to the names of empathy_contact_from_folks_individual() and ↵Travis Reitter2010-07-211-3/+3
| | | | folks_individual_from_empathy_contact() to make it clear that the return value has been referenced.
* Take advantage of the tp_clear_* utility functions.Travis Reitter2010-07-211-30/+7
|
* Use explicit boolean expressions for if-conditionals, according to Telepathy ↵Travis Reitter2010-07-211-3/+3
| | | | style.
* Support removing groupsPhilip Withnall2010-07-211-2/+4
|
* Fix some referencing bugs with the IndividualStore and IndividualViewPhilip Withnall2010-07-211-8/+11
|
* Re-implement file sending with drag and dropPhilip Withnall2010-07-211-2/+3
|
* Hide/show groups as necessary when their members change.Travis Reitter2010-07-211-0/+7
|
* Replace the IndividualView's setup function with a more-conventional ↵Travis Reitter2010-07-211-1/+0
| | | | constructed function.
* Catch up with convention for getting the view's model.Travis Reitter2010-07-211-1/+1
|
* Finish adding favourites supportPhilip Withnall2010-07-211-7/+0
|
* Use the new FolksFavourite interface for favourites supportPhilip Withnall2010-07-211-0/+2
|
* Re-add the audio and video call menu items in the call-activated handler.Travis Reitter2010-07-211-4/+6
|
* Support the contact list tooltipTravis Reitter2010-07-211-1/+48
|
* Re-implement the context menu for IndividualsTravis Reitter2010-07-211-13/+9
|
* Don't crash if a row gets deleted before being expanded.Travis Reitter2010-07-211-1/+0
|
* Fix the formatting of some calls to g_object_set()Travis Reitter2010-07-211-6/+26
|
* Back-port better solution for incorrect-groups-expanded problem.Travis Reitter2010-07-211-0/+1
|
* Base the contact list around libfolks metacontacts. Not yet to feature-parityTravis Reitter2010-07-211-0/+2125
with mainline Empathy.