Mercurial > pidgin.yaz
annotate pidgin/plugins/perl/common/GtkFt.xs @ 16211:b54abfe11fc5
Rename a number of Perl functions which were munged at some point
(e.g., pidgindialog_whatever -> pidgin_dialog_whatever). Thanks,
Warren.
Fixes #167
committer: Ethan Blanton <elb@pidgin.im>
author | Warren Togami <wtogami> |
---|---|
date | Mon, 16 Apr 2007 21:31:57 +0000 |
parents | e622745f6f42 |
children | 8e54f40a60f3 |
rev | line source |
---|---|
15374
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
1 #include "gtkmodule.h" |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
2 |
15526
cb0750152bf6
Partial fix for pidgin perl support. Fixing fully is going to require a decision on splitting from some of the core perl support - more than I want to deal with right now.
Daniel Atallah <daniel.atallah@gmail.com>
parents:
15374
diff
changeset
|
3 MODULE = Pidgin::Xfer PACKAGE = Pidgin::Xfer PREFIX = pidgin_xfer_ |
15374
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
4 PROTOTYPES: ENABLE |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
5 |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
6 void |
15667
67ecb6a934a8
Fix compilation of the gtk perl plugin
Mark Doliner <mark@kingant.net>
parents:
15526
diff
changeset
|
7 pidgin_set_xfer_dialog(dialog) |
15526
cb0750152bf6
Partial fix for pidgin perl support. Fixing fully is going to require a decision on splitting from some of the core perl support - more than I want to deal with right now.
Daniel Atallah <daniel.atallah@gmail.com>
parents:
15374
diff
changeset
|
8 Pidgin::Xfer::Dialog dialog |
15374
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
9 |
15526
cb0750152bf6
Partial fix for pidgin perl support. Fixing fully is going to require a decision on splitting from some of the core perl support - more than I want to deal with right now.
Daniel Atallah <daniel.atallah@gmail.com>
parents:
15374
diff
changeset
|
10 Pidgin::Xfer::Dialog |
15667
67ecb6a934a8
Fix compilation of the gtk perl plugin
Mark Doliner <mark@kingant.net>
parents:
15526
diff
changeset
|
11 pidgin_get_xfer_dialog() |
15374
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
12 |
16211
b54abfe11fc5
Rename a number of Perl functions which were munged at some point
Warren Togami <wtogami>
parents:
15838
diff
changeset
|
13 MODULE = Pidgin::Xfer PACKAGE = Pidgin::Xfer::Dialog PREFIX = pidgin_xfer_dialog_ |
15374
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
14 PROTOTYPES: ENABLE |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
15 |
15526
cb0750152bf6
Partial fix for pidgin perl support. Fixing fully is going to require a decision on splitting from some of the core perl support - more than I want to deal with right now.
Daniel Atallah <daniel.atallah@gmail.com>
parents:
15374
diff
changeset
|
16 Pidgin::Xfer::Dialog |
16211
b54abfe11fc5
Rename a number of Perl functions which were munged at some point
Warren Togami <wtogami>
parents:
15838
diff
changeset
|
17 pidgin_xfer_dialog_new(class) |
15374
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
18 C_ARGS: /* void */ |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
19 |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
20 void |
16211
b54abfe11fc5
Rename a number of Perl functions which were munged at some point
Warren Togami <wtogami>
parents:
15838
diff
changeset
|
21 pidgin_xfer_dialog_destroy(dialog) |
15526
cb0750152bf6
Partial fix for pidgin perl support. Fixing fully is going to require a decision on splitting from some of the core perl support - more than I want to deal with right now.
Daniel Atallah <daniel.atallah@gmail.com>
parents:
15374
diff
changeset
|
22 Pidgin::Xfer::Dialog dialog |
15374
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
23 |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
24 void |
16211
b54abfe11fc5
Rename a number of Perl functions which were munged at some point
Warren Togami <wtogami>
parents:
15838
diff
changeset
|
25 pidgin_xfer_dialog_show(dialog = NULL) |
15526
cb0750152bf6
Partial fix for pidgin perl support. Fixing fully is going to require a decision on splitting from some of the core perl support - more than I want to deal with right now.
Daniel Atallah <daniel.atallah@gmail.com>
parents:
15374
diff
changeset
|
26 Pidgin::Xfer::Dialog dialog |
15374
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
27 |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
28 void |
16211
b54abfe11fc5
Rename a number of Perl functions which were munged at some point
Warren Togami <wtogami>
parents:
15838
diff
changeset
|
29 pidgin_xfer_dialog_hide(dialog) |
15526
cb0750152bf6
Partial fix for pidgin perl support. Fixing fully is going to require a decision on splitting from some of the core perl support - more than I want to deal with right now.
Daniel Atallah <daniel.atallah@gmail.com>
parents:
15374
diff
changeset
|
30 Pidgin::Xfer::Dialog dialog |
15374
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
31 |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
32 void |
16211
b54abfe11fc5
Rename a number of Perl functions which were munged at some point
Warren Togami <wtogami>
parents:
15838
diff
changeset
|
33 pidgin_xfer_dialog_add_xfer(dialog, xfer) |
15526
cb0750152bf6
Partial fix for pidgin perl support. Fixing fully is going to require a decision on splitting from some of the core perl support - more than I want to deal with right now.
Daniel Atallah <daniel.atallah@gmail.com>
parents:
15374
diff
changeset
|
34 Pidgin::Xfer::Dialog dialog |
15838
e622745f6f42
Pidgin perl fixes for s/gaim/purple/.
Daniel Atallah <daniel.atallah@gmail.com>
parents:
15667
diff
changeset
|
35 Purple::Xfer xfer |
15374
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
36 |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
37 void |
16211
b54abfe11fc5
Rename a number of Perl functions which were munged at some point
Warren Togami <wtogami>
parents:
15838
diff
changeset
|
38 pidgin_xfer_dialog_remove_xfer(dialog, xfer) |
15526
cb0750152bf6
Partial fix for pidgin perl support. Fixing fully is going to require a decision on splitting from some of the core perl support - more than I want to deal with right now.
Daniel Atallah <daniel.atallah@gmail.com>
parents:
15374
diff
changeset
|
39 Pidgin::Xfer::Dialog dialog |
15838
e622745f6f42
Pidgin perl fixes for s/gaim/purple/.
Daniel Atallah <daniel.atallah@gmail.com>
parents:
15667
diff
changeset
|
40 Purple::Xfer xfer |
15374
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
41 |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
42 void |
16211
b54abfe11fc5
Rename a number of Perl functions which were munged at some point
Warren Togami <wtogami>
parents:
15838
diff
changeset
|
43 pidgin_xfer_dialog_cancel_xfer(dialog, xfer) |
15526
cb0750152bf6
Partial fix for pidgin perl support. Fixing fully is going to require a decision on splitting from some of the core perl support - more than I want to deal with right now.
Daniel Atallah <daniel.atallah@gmail.com>
parents:
15374
diff
changeset
|
44 Pidgin::Xfer::Dialog dialog |
15838
e622745f6f42
Pidgin perl fixes for s/gaim/purple/.
Daniel Atallah <daniel.atallah@gmail.com>
parents:
15667
diff
changeset
|
45 Purple::Xfer xfer |
15374
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
46 |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
47 void |
16211
b54abfe11fc5
Rename a number of Perl functions which were munged at some point
Warren Togami <wtogami>
parents:
15838
diff
changeset
|
48 pidgin_xfer_dialog_update_xfer(dialog, xfer) |
15526
cb0750152bf6
Partial fix for pidgin perl support. Fixing fully is going to require a decision on splitting from some of the core perl support - more than I want to deal with right now.
Daniel Atallah <daniel.atallah@gmail.com>
parents:
15374
diff
changeset
|
49 Pidgin::Xfer::Dialog dialog |
15838
e622745f6f42
Pidgin perl fixes for s/gaim/purple/.
Daniel Atallah <daniel.atallah@gmail.com>
parents:
15667
diff
changeset
|
50 Purple::Xfer xfer |