aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy-gtk/empathy-new-message-dialog.c
Commit message (Collapse)AuthorAgeFilesLines
* Reorder header inclusions accordingly to the Telepathy coding styleEmanuele Aina2013-04-021-5/+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-2/+2
| | | | | | | | 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
* Avoid include path overspecificationsEmanuele Aina2013-04-011-3/+3
| | | | | | | If we're under the libempathy directory there's no need to prefix include file paths with it, and the same is true for libempathy-gtk. https://bugzilla.gnome.org/show_bug.cgi?id=696950
* Use double quotes for all internal headersEmanuele Aina2013-04-011-5/+5
| | | | | | | 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-8/+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
* Consistently use `#include "config.h"` everywhereEmanuele Aina2013-03-281-1/+1
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=696718
* include telepathy-glib.hGuillaume Desmottes2012-09-171-1/+1
| | | | | tp-glib 1.0 will enforce to only include telepathy-glib.h so best doing it to reduce the delta with the future stable branch.
* remove unused tp-contact-factory includesGuillaume Desmottes2012-05-151-1/+0
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=675597
* remove useless includes of empathy-contact-manager.hGuillaume Desmottes2011-12-141-1/+0
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=660547
* Swap SMS and Text buttonsDanielle Madeley2011-10-201-4/+4
| | | | The default action should be on the right.
* Fix extra buttons in new-call/message dialogsDanielle Madeley2011-10-201-1/+2
| | | | This was caused by a missing parameter of gtk_dialog_add_buttons().
* empathy_new_message_dialog_response: initialize contactGuillaume Desmottes2011-10-181-1/+1
|
* empathy_new_message_dialog_response: initialize individualGuillaume Desmottes2011-10-181-1/+1
|
* new-message-dialog: port to EmpathyContactChooserGuillaume Desmottes2011-10-181-122/+133
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=661981
* Set a parent for the error dialogEmilio Pozuelo Monfort2011-09-051-5/+8
| | | | | | Conflicts: libempathy-gtk/empathy-new-message-dialog.c
* NewMessageDialog: show an error if starting the channel failsEmilio Pozuelo Monfort2011-09-051-2/+77
| | | | | | Conflicts: libempathy-gtk/empathy-new-message-dialog.c
* empathy_dispatcher_chat_with_contact_id(): add optional cbEmilio Pozuelo Monfort2011-09-051-2/+4
| | | | | | | | | | | Conflicts: libempathy-gtk/empathy-individual-menu.c libempathy-gtk/empathy-new-message-dialog.c libempathy/empathy-dispatcher.c libempathy/empathy-dispatcher.h src/empathy-chat-manager.c src/empathy-chat-window.c
* new-message-dialog: rely on the factory to prepare ↵Guillaume Desmottes2011-08-191-44/+11
| | | | | | TP_CONNECTION_FEATURE_CAPABILITIES https://bugzilla.gnome.org/show_bug.cgi?id=656831
* Properly convert timestamps received from X11 (#650015)Guillaume Desmottes2011-05-121-2/+2
| | | | | X11 timestamps are guint32 while Telepathy uses gint64 timestamps. We should always use tp_user_action_time_from_x11() to do the conversion.
* Only set the SMS button sensitive if we have SMS capabilityDanielle Madeley2011-05-051-2/+63
|
* Add an SMS button to the new-message dialogDanielle Madeley2011-05-051-4/+39
|
* rename empathy-dispatcher to empathy-request-utilGuillaume Desmottes2011-03-171-2/+2
| | | | | We don't have EmpathyDispatcher any more so this file just contains some utility functions now.
* Make AccountChooser-related code simpler and clearer (re #633481).Vitaly Minko2010-11-121-28/+5
|
* Make AccountChooser filters asynchronous to let them handle newly connected ↵Vitaly Minko2010-11-111-18/+67
| | | | accounts properly (#633481).
* empathy_dispatcher_chat_with_contact_id: get a TpAccount instead of a ↵Guillaume Desmottes2010-08-111-4/+4
| | | | TpConnection
* empathy_dispatcher_chat_with_contact_id: remove callback argumentGuillaume Desmottes2010-08-111-1/+1
| | | | It's unused anyway.
* empathy_contact_selector_dialog_get_selected: allow to get the account as wellGuillaume Desmottes2010-08-101-1/+1
|
* add timestamp arg to empathy_dispatcher_chat_with_contact(_id)Sjoerd Simons2010-04-251-1/+2
|
* [EmpathyContactSelectorDialog] remove got_response vcallDanielle Madeley2009-12-211-6/+19
| | | | | | | | | | 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.
* new-message-dialog: filter out CM which doesn't support 1-1 chatGuillaume Desmottes2009-12-171-0/+35
|
* empathy-new-message-dialog: port to TP coding styleGuillaume Desmottes2009-12-171-51/+53
| | | | We rewrote most of this file any way.
* new-message-dialog: inherit from EmpathyContactSelectorDialogGuillaume Desmottes2009-12-171-259/+18
|
* new-message-dialog: remove the call buttonGuillaume Desmottes2009-12-171-40/+3
| | | | We are about to create a new dialog for it.
* new-message-dialog: inherit from GtkDialog (#604097)Guillaume Desmottes2009-12-091-58/+146
|
* Autocomplete for offline contacts. Closes bug #583919.Justin Forest2009-11-031-17/+15
|
* new-message-dialog: port to new tp-glib account APIJonny Lamb2009-10-241-1/+0
| | | | Signed-off-by: Jonny Lamb <jonnylamb@gnome.org>
* Remove useless mission-control includesSjoerd Simons2009-07-061-2/+0
|
* Port libempathy-gtk to EmpathyAccountSjoerd Simons2009-07-011-1/+1
|
* empathy-new-message-dialog: remove trailing tabsGuillaume Desmottes2009-06-251-1/+1
|
* empathy-new-message-dialog: fix coding styleGuillaume Desmottes2009-05-181-5/+5
|
* Add documentation for EmpathyNewMessageDialog.Jonny Lamb2009-04-231-0/+18
| | | | Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk>
* Change EmpathyTpContactFactory API to look more like TpConnection. Add ↵Xavier Claessens2009-04-221-3/+9
| | | | | | function to get only one contact from id/handle.
* Port EmpathyNewMessageDialog to new API.Xavier Claessens2009-04-221-45/+55
|
* Port EmpathyNewMessageDialog to new APIXavier Claessens2009-04-161-8/+5
| | | | | | From: Xavier Claessens <xclaesse@gmail.com> svn path=/trunk/; revision=2851
* Don't start the call from the message dialog, the handler will take care of itSjoerd Simons2009-02-031-1/+0
| | | | | | Signed-off-by: Sjoerd Simons <sjoerd.simons@collabora.co.uk> svn path=/trunk/; revision=2385
* Switch to calling CallFactory to make callsSjoerd Simons2009-02-031-1/+5
| | | | | | Signed-off-by: Sjoerd Simons <sjoerd.simons@collabora.co.uk> svn path=/trunk/; revision=2382
* Renamed G_STR_EMPTY to EMP_STR_EMPTY.Jonny Lamb2009-01-231-2/+2
| | | | | | Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk> svn path=/trunk/; revision=2249
* Fix some errors made when rebasing on masterXavier Claessens2009-01-101-1/+1
| | | | svn path=/trunk/; revision=2211
* Use the new call utility function to start callsSjoerd Simons2009-01-101-1/+9
| | | | | | Signed-off-by: Sjoerd Simons <sjoerd.simons@collabora.co.uk> svn path=/trunk/; revision=2167
* Use the new dispatcher api to request text channelsSjoerd Simons2009-01-101-4/+3
| | | | | | Signed-off-by: Sjoerd Simons <sjoerd.simons@collabora.co.uk> svn path=/trunk/; revision=2131
* Port EmpathyContactManager to the new singleton policy.Xavier Claessens2009-01-091-1/+1
| | | | svn path=/trunk/; revision=2121
* Use gi18n-lib.h instead of gi18n.h for libraries.Xavier Claessens2008-12-121-1/+1
| | | | svn path=/trunk/; revision=1967
* Autocompletion on contact names for "new message" dialog box. Fixes bug ↵Xavier Claessens2008-12-081-4/+145
| | | | | | #552296 (Emmanuel Bretelle, Xavier Claessens). svn path=/trunk/; revision=1951
* Improve dispatcher. Fixes bug #465928.Xavier Claessens2008-05-181-2/+3
| | | | svn path=/trunk/; revision=1108
* Make use of tp-glib debug system.Xavier Claessens2008-05-011-3/+0
| | | | svn path=/trunk/; revision=1066
* Remove conditional build of VOIP.Xavier Claessens2008-04-241-4/+0
| | | | svn path=/trunk/; revision=1038
* Use empathy_file_lookup for glade files since some are in libempathy-gtk/ ↵Xavier Claessens2008-03-171-1/+5
| | | | | | and others in src/ svn path=/trunk/; revision=813
* Update collabora copyright to 2008Xavier Claessens2008-03-031-1/+1
| | | | svn path=/trunk/; revision=688
* Change new message dialog to new conversation and make possible to do voip call.Xavier Claessens2008-02-091-39/+27
| | | | svn path=/trunk/; revision=608
* Add convinience functions empathy_chat_with_contact() and ↵Xavier Claessens2008-01-021-12/+3
| | | | | | empathy_chat_with_contact_id() to start a chat with a contact. Make use of it when appropriate. svn path=/trunk/; revision=527
* Simplify empaty_window_present, empathy_window_iconify and ↵Xavier Claessens2007-12-201-8/+57
| | | | | | empathy_window_is_visible stuff svn path=/trunk/; revision=491
* Squashed commit of the following:Xavier Claessens2007-12-021-0/+136
commit a54ce7de2fc09f717f185fbc9b1d29e28cdcc2e7 Author: Xavier Claessens <xclaesse@gmail.com> Date: Sun Dec 2 14:41:27 2007 +0100 Implement New Message on status icon menu too. commit f98dae2e18348db82f1460d4f8fb6ff49dc5fbc2 Author: Xavier Claessens <zdra@zdra-laptop.(none)> Date: Sat Dec 1 00:49:56 2007 +0100 New message dialog svn path=/trunk/; revision=453