annotate pidgin/plugins/perl/common/GtkLog.xs @ 20621:5265fed9b93a

Thanks to Sean, I know that Gtk::Window is perlese for GtkWindow *
author Gabriel Schulhof <nix@go-nix.ca>
date Sun, 23 Sep 2007 00:56:54 +0000
parents 78ef8bd992f9
children ced0666ab950
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
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::Log PACKAGE = Pidgin::Log PREFIX = pidgin_log_
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
15838
e622745f6f42 Pidgin perl fixes for s/gaim/purple/.
Daniel Atallah <daniel.atallah@gmail.com>
parents: 15526
diff changeset
6 Purple::Handle
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
7 pidgin_log_get_handle()
15374
5fe8042783c1 Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff changeset
8
5fe8042783c1 Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff changeset
9 void
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_log_show(type, screenname, account)
15838
e622745f6f42 Pidgin perl fixes for s/gaim/purple/.
Daniel Atallah <daniel.atallah@gmail.com>
parents: 15526
diff changeset
11 Purple::LogType type
15374
5fe8042783c1 Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff changeset
12 const char * screenname
15838
e622745f6f42 Pidgin perl fixes for s/gaim/purple/.
Daniel Atallah <daniel.atallah@gmail.com>
parents: 15526
diff changeset
13 Purple::Account account
20615
78ef8bd992f9 Re-worked gtklog functions and perl bindings
Gabriel Schulhof <nix@go-nix.ca>
parents: 19961
diff changeset
14
78ef8bd992f9 Re-worked gtklog functions and perl bindings
Gabriel Schulhof <nix@go-nix.ca>
parents: 19961
diff changeset
15 void
78ef8bd992f9 Re-worked gtklog functions and perl bindings
Gabriel Schulhof <nix@go-nix.ca>
parents: 19961
diff changeset
16 pidgin_log_show_with_parent(parent, type, screenname, account)
20621
5265fed9b93a Thanks to Sean, I know that Gtk::Window is perlese for GtkWindow *
Gabriel Schulhof <nix@go-nix.ca>
parents: 20615
diff changeset
17 Gtk::Window parent
20615
78ef8bd992f9 Re-worked gtklog functions and perl bindings
Gabriel Schulhof <nix@go-nix.ca>
parents: 19961
diff changeset
18 Purple::LogType type
78ef8bd992f9 Re-worked gtklog functions and perl bindings
Gabriel Schulhof <nix@go-nix.ca>
parents: 19961
diff changeset
19 const char * screenname
78ef8bd992f9 Re-worked gtklog functions and perl bindings
Gabriel Schulhof <nix@go-nix.ca>
parents: 19961
diff changeset
20 Purple::Account account
15374
5fe8042783c1 Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff changeset
21
5fe8042783c1 Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff changeset
22 void
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
23 pidgin_log_show_contact(contact)
15838
e622745f6f42 Pidgin perl fixes for s/gaim/purple/.
Daniel Atallah <daniel.atallah@gmail.com>
parents: 15526
diff changeset
24 Purple::BuddyList::Contact contact
20615
78ef8bd992f9 Re-worked gtklog functions and perl bindings
Gabriel Schulhof <nix@go-nix.ca>
parents: 19961
diff changeset
25
78ef8bd992f9 Re-worked gtklog functions and perl bindings
Gabriel Schulhof <nix@go-nix.ca>
parents: 19961
diff changeset
26 void
78ef8bd992f9 Re-worked gtklog functions and perl bindings
Gabriel Schulhof <nix@go-nix.ca>
parents: 19961
diff changeset
27 pidgin_log_show_contact_with_parent(parent, contact)
20621
5265fed9b93a Thanks to Sean, I know that Gtk::Window is perlese for GtkWindow *
Gabriel Schulhof <nix@go-nix.ca>
parents: 20615
diff changeset
28 Gtk::Window parent
20615
78ef8bd992f9 Re-worked gtklog functions and perl bindings
Gabriel Schulhof <nix@go-nix.ca>
parents: 19961
diff changeset
29 Purple::BuddyList::Contact contact
15374
5fe8042783c1 Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff changeset
30
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
31 MODULE = Pidgin::Log PACKAGE = Pidgin::SysLog PREFIX = pidgin_syslog_
15374
5fe8042783c1 Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff changeset
32 PROTOTYPES: ENABLE
5fe8042783c1 Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff changeset
33
5fe8042783c1 Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff changeset
34 void
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
35 pidgin_syslog_show()
20615
78ef8bd992f9 Re-worked gtklog functions and perl bindings
Gabriel Schulhof <nix@go-nix.ca>
parents: 19961
diff changeset
36
78ef8bd992f9 Re-worked gtklog functions and perl bindings
Gabriel Schulhof <nix@go-nix.ca>
parents: 19961
diff changeset
37 void
78ef8bd992f9 Re-worked gtklog functions and perl bindings
Gabriel Schulhof <nix@go-nix.ca>
parents: 19961
diff changeset
38 pidgin_syslog_show_with_parent(parent)
20621
5265fed9b93a Thanks to Sean, I know that Gtk::Window is perlese for GtkWindow *
Gabriel Schulhof <nix@go-nix.ca>
parents: 20615
diff changeset
39 Gtk::Window parent