~ubuntu-branches/ubuntu/karmic/ibus/karmic-updates

« back to all changes in this revision

Viewing changes to src/ibusconnection.c

  • Committer: Bazaar Package Importer
  • Author(s): LI Daobing
  • Date: 2009-07-23 20:22:09 UTC
  • mfrom: (1.1.4 upstream) (6.1.7 sid)
  • Revision ID: james.westby@ubuntu.com-20090723202209-bmgqa80g1umg8l2p
Tags: 1.2.0.20090723-1
new upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
 * Boston, MA 02111-1307, USA.
19
19
 */
20
20
#include <stdarg.h>
 
21
#include "ibusmainloop.h"
21
22
#include "ibusmessage.h"
22
23
#include "ibusconnection.h"
23
24
#include "ibusinternal.h"
125
126
     * Emitted when sending an ibus-message.
126
127
     * Implement the member function ibus_message() in extended class to receive this signal.
127
128
     *
128
 
     * <note><para>@user_data is not actually a valid parameter. It is displayed because of GtkDoc bug.</para></note>
 
129
     * <note><para>Argument @user_data is ignored in this function.</para></note>
129
130
     *
130
131
     * Returns: TRUE if succeed; FALSE otherwise.
131
132
     */
147
148
     * Emitted when sending an ibus-message.
148
149
     * Implement the member function ibus_message() in extended class to receive this signal.
149
150
     *
150
 
     * <note><para>@user_data is not actually a valid parameter. It is displayed because of GtkDoc bug.</para></note>
 
151
     * <note><para>Argument @user_data is ignored in this function.</para></note>
151
152
     *
152
153
     * Returns: TRUE if succeed; FALSE otherwise.
153
154
     */
169
170
     * Emitted when sending an ibus-signal.
170
171
     * Implement the member function ibus_signal() function in extended class to receive this signal.
171
172
     *
172
 
     * <note><para>@user_data is not actually a valid parameter. It is displayed because of GtkDoc bug.</para></note>
 
173
     * <note><para>Argument @user_data is ignored in this function.</para></note>
173
174
     *
174
175
     * Returns: TRUE if succeed; FALSE otherwise.
175
176
     */
191
192
     * Emitted when an ibus-message is sent.
192
193
     * Implement the member function ibus_message_sent() function in extended class to receive this signal.
193
194
     *
194
 
     * <note><para>@user_data is not actually a valid parameter. It is displayed because of GtkDoc bug.</para></note>
 
195
     * <note><para>Argument @user_data is ignored in this function.</para></note>
195
196
     */
196
197
    connection_signals[IBUS_MESSAGE_SENT] =
197
198
        g_signal_new (I_("ibus-message-sent"),
210
211
     * Emitted when an ibus-message is disconnected.
211
212
     * Implement the member function disconnected() function in extended class to receive this signal.
212
213
     *
213
 
     * <note><para>@user_data is not actually a valid parameter. It is displayed because of GtkDoc bug.</para></note>
 
214
     * <note><para>Argument @user_data is ignored in this function.</para></note>
214
215
     *
215
216
     */
216
217
    connection_signals[DISCONNECTED] =