aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy-gtk/empathy-irc-network-chooser-dialog.c
Commit message (Collapse)AuthorAgeFilesLines
* tp-account-widgets: Move account widgets code in the tp-account-widgets subdirEmanuele Aina2013-08-201-740/+0
| | | | | | | Start moving the account widgets code in a subdir before fully isolating it and stubbing it out in a submodule. https://bugzilla.gnome.org/show_bug.cgi?id=699492
* Reorder header inclusions accordingly to the Telepathy coding styleEmanuele Aina2013-04-021-3/+3
| | | | | | | | | | | | Sort by: • "config.h" • API declarations, if any • public libraries • internal headers, alphabetically sorted (mostly) http://telepathy.freedesktop.org/wiki/Style#A.23includes https://bugzilla.gnome.org/show_bug.cgi?id=697076
* Use a flat namespace for internal includesEmanuele Aina2013-04-011-3/+3
| | | | | | | | Directly add the libempathy, libempathy-gtk and extensions directories to the include search path. This decouples header inclusions from their location and helps when reorganizing the source files layout. https://bugzilla.gnome.org/show_bug.cgi?id=696950
* Use double quotes for all internal headersEmanuele Aina2013-04-011-3/+3
| | | | | | | This makes a bit more obvious which headers come from public libraries and which ones come from uninstalled utility libraries. https://bugzilla.gnome.org/show_bug.cgi?id=696950
* Drop unused/redundant header inclusionsEmanuele Aina2013-03-281-6/+0
| | | | | | | With the help of the script posted at http://stackoverflow.com/a/7135530 and some manual fixes, drop the unused or redundant #include directives. https://bugzilla.gnome.org/show_bug.cgi?id=696718
* irc-network-chooser-dialog: break live search references cycleGuillaume Desmottes2013-03-111-0/+8
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=692105
* irc-network-chooser-dialog: disconnect live search signals in disposeGuillaume Desmottes2013-03-111-12/+12
| | | | | | | The 'destroyed' signal is called to late, we have to disconnect those signals before destroying the live search object. https://bugzilla.gnome.org/show_bug.cgi?id=692105
* irc-network-chooser-dialog: use GNOME 3 +/- buttonsGuillaume Desmottes2013-01-081-10/+54
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=668464
* irc-network-chooser-dialog: Attach dialog to parent windowMichael Wood2012-11-021-1/+1
| | | | | | This avoid losing the window and the window order. https://bugzilla.gnome.org/show_bug.cgi?id=687361
* irc-network-chooser-dialog: be more NULL-safeGuillaume Desmottes2012-01-131-1/+4
|
* Reset network list buttonChandni Verma2011-02-151-0/+33
| | | | Fixes: https://bugzilla.gnome.org/show_bug.cgi?id=642264
* Add context on "Select" strings (#629707)Guillaume Desmottes2010-09-291-1/+2
|
* allow to choose irc network with ENTERFelix Kaser2010-08-261-0/+12
| | | | while searching, the enter key allows you to select an irc network
* fix selection problems in irc networksFelix Kaser2010-08-261-5/+21
|
* grab focus on the treeview after adding, editing or removing networkGuillaume Desmottes2010-08-261-0/+4
|
* irc-network-chooser-dialog: make it transient and modalGuillaume Desmottes2010-08-261-1/+5
|
* search_text_notify_cb: select first matching only if we are still searchingGuillaume Desmottes2010-08-261-2/+21
| | | | Also scroll to the selected network when cancelling the search.
* Hide the search after picking the network to get the right oneGuillaume Desmottes2010-08-261-2/+3
|
* cance live search when adding/removing a networkGuillaume Desmottes2010-08-251-0/+4
|
* search_text_notify_cb: rename iter to filter_iter to avoid confusionGuillaume Desmottes2010-08-251-3/+4
|
* factor out iter_to_filter_iter()Guillaume Desmottes2010-08-251-14/+21
|
* scroll_to_iter: need a filter iterGuillaume Desmottes2010-08-251-1/+1
|
* assert that iter convert don't failGuillaume Desmottes2010-08-251-6/+6
| | | | If they do we did something wrong.
* select_iter: set the cursor as wellGuillaume Desmottes2010-08-251-0/+10
|
* make title clearerGuillaume Desmottes2010-08-251-1/+1
|
* don't allow to select a network if none is actually selectedGuillaume Desmottes2010-08-251-2/+7
|
* replace the close button by 'Select'Guillaume Desmottes2010-08-251-1/+4
|
* select the first matching network when searchingGuillaume Desmottes2010-08-251-0/+6
|
* pass filter iter to select_iter() and scroll_to_iter()Guillaume Desmottes2010-08-251-19/+27
|
* irc-network-chooser-dialog: use network accessorsGuillaume Desmottes2010-08-251-18/+4
|
* irc-network-chooser-dialog: add live search supportGuillaume Desmottes2010-08-251-7/+91
|
* add empathy-irc-network-chooser-dialogGuillaume Desmottes2010-08-251-0/+487
Some of the code has been copied from empathy-account-widget-irc.c.