Mercurial > pidgin
annotate doc/PERL-HOWTO.dox @ 11694:ffc7d932178a
[gaim-migrate @ 13980]
It doesn't look like Gaim itself actually depends on this?
committer: Tailor Script <tailor@pidgin.im>
author | Mark Doliner <mark@kingant.net> |
---|---|
date | Tue, 18 Oct 2005 04:42:59 +0000 |
parents | 9563b768e8e2 |
children | 11d14efe7be2 |
rev | line source |
---|---|
6598 | 1 /** @page perl-howto Perl Scripting HOWTO |
2 | |
11278 | 3 @section Introduction |
4 Gaim Perl Plugins are setup very similarly to their C counterparts. Most of the API calls are implemented and are divided into pacakges. There are some significant differences between the Perl and C API. Much like the C API, the best place to seek guidances is the source located in the plugins/perl/common directory. The tutorial that follows will be example based and attempt to touch on the salient features of the embedded perl interpreter. It is also important to note that some of the C API is missing in Gaim's perl API. | |
10408 | 5 |
11501
9563b768e8e2
[gaim-migrate @ 13746]
Richard Laager <rlaager@wiktel.com>
parents:
11377
diff
changeset
|
6 It is possible to get Gtk2-Perl to work with Gaim's perl API, however you must not load the module with @c use but with @c require. If you are uninterested in using Gtk with your perl plugins than this still has bearing on you if you would like to use certain perl modules that are dynamically loaded. By always using @c require instead of @c use the problem is avoided. |
6602
76683fe3c96d
[gaim-migrate @ 7126]
Christian Hammond <chipx86@chipx86.com>
parents:
6598
diff
changeset
|
7 |
11278 | 8 @section first-script Writing your first script |
6602
76683fe3c96d
[gaim-migrate @ 7126]
Christian Hammond <chipx86@chipx86.com>
parents:
6598
diff
changeset
|
9 |
11278 | 10 Let us start with a simple example of a Gaim perl plugin. The following code sample is a complete plugin that can be copied and used as is. |
6602
76683fe3c96d
[gaim-migrate @ 7126]
Christian Hammond <chipx86@chipx86.com>
parents:
6598
diff
changeset
|
11 |
11278 | 12 @code |
6602
76683fe3c96d
[gaim-migrate @ 7126]
Christian Hammond <chipx86@chipx86.com>
parents:
6598
diff
changeset
|
13 use Gaim; |
6598 | 14 |
6602
76683fe3c96d
[gaim-migrate @ 7126]
Christian Hammond <chipx86@chipx86.com>
parents:
6598
diff
changeset
|
15 %PLUGIN_INFO = ( |
11278 | 16 perl_api_version => 2, |
17 name => "Perl Test Plugin", | |
18 version => "0.1", | |
19 summary => "Test plugin for the Perl interpreter.", | |
20 description => "Your description here", | |
21 author => "John H. Kelm <johnhkelm\@gmail.com", | |
22 url => "http://gaim.sourceforge.net/", | |
6598 | 23 |
11278 | 24 load => "plugin_load", |
25 unload => "plugin_unload" | |
7182
65acffe70a6d
[gaim-migrate @ 7750]
Christian Hammond <chipx86@chipx86.com>
parents:
6720
diff
changeset
|
26 ); |
6598 | 27 |
6602
76683fe3c96d
[gaim-migrate @ 7126]
Christian Hammond <chipx86@chipx86.com>
parents:
6598
diff
changeset
|
28 sub plugin_init { |
11278 | 29 return %PLUGIN_INFO; |
6602
76683fe3c96d
[gaim-migrate @ 7126]
Christian Hammond <chipx86@chipx86.com>
parents:
6598
diff
changeset
|
30 } |
6598 | 31 |
6602
76683fe3c96d
[gaim-migrate @ 7126]
Christian Hammond <chipx86@chipx86.com>
parents:
6598
diff
changeset
|
32 sub plugin_load { |
11278 | 33 my $plugin = shift; |
34 Gaim::debug_info("plugin_load()", "Test Plugin Loaded."); | |
6602
76683fe3c96d
[gaim-migrate @ 7126]
Christian Hammond <chipx86@chipx86.com>
parents:
6598
diff
changeset
|
35 } |
6598 | 36 |
6602
76683fe3c96d
[gaim-migrate @ 7126]
Christian Hammond <chipx86@chipx86.com>
parents:
6598
diff
changeset
|
37 sub plugin_unload { |
11278 | 38 my $plugin = shift; |
39 Gaim::debug_info("plugin_unload()", "Test Plugin Unloaded."); | |
6602
76683fe3c96d
[gaim-migrate @ 7126]
Christian Hammond <chipx86@chipx86.com>
parents:
6598
diff
changeset
|
40 } |
11278 | 41 @endcode |
42 | |
43 It is necessary to load the Gaim perl package with the line @code use Gaim; @endcode which will make all the Gaim perl API available to the script. The @c \%PLUGIN_INFO has contains all the information that will be displayed in the Plugin frame of the Preferences dialog. In addition to information needed to describe the plugin to the user, information about how the plugin is to be handled is present. The keys @c load and @c unload specify and action to take when the plugin is loaded and when it is unloaded from the Preferences dialog respectively. There are other key values that may be present in the @c \%PLUGIN_INFO hash that will be covered in the following sections. | |
44 | |
45 The Perl subroutine @c plugin_init is executed when the plugin is probed by the plugin subsystem. What this means is as soon as Gaim is started, this subroutine is run once, regardless of whether the plugin is loaded or not. The other two subroutines present are those defined by the @c \%PLUGIN_INFO hash and take the plugin handle as an argument. When the plugin is loaded and subsequently unloaded it will print a message to the debug window using the @c Gaim::debug_info() Gaim perl API call. | |
46 | |
47 The last step is to save the script with a .pl file extention in your ~/.gaim/plugins directory. After restarting gaim the plugin "Perl Test Plugin" should now appear under "Tools->Preferences->Plugins". To view the messages make sure you run Gaim from the console with the '-d' flag or open the Debug Window from inside Gaim under "Help". When you enable the checkbox next the plugin you should see a message appear in the Debug Window (or console) and when you disable the checkbox you should see another message appear. You have now created the framework that will allow you to create almost any kind of Gaim plugin you can imagine. | |
48 | |
49 @section account-api Account and Account Option Functions | |
50 | |
51 The Account API is in the @c Gaim::Account:: and @c Gaim::Accounts:: packages and both are nearly identical to their C counterparts @c gaim_account_ and @c gaim_accounts_. The Account Option API is in the package @c Gaim::Account::Option and is identical to its C implementation @c gaim_account_option . | |
52 | |
53 The Account* APIs allow for scripts to create, remove, and edit accounts of the type GaimAccount. (Note: Gaim type have no real meaning in perl scripts other than the types of the arguments of the perl subroutines need to be of the expected type.) This section will not go into detail about the @c Gaim::Account::Option package for its use in building protocol plugins which are outside the scope of this document. However, most of the API calls for the @c Gaim::Account::Option package should function as expected so if there is a need to access any of the Account Options the function calls necessary are avaialbe in the Gaim perl API. | |
54 | |
55 To reduce redundant code the following code examples are going to use the template shown in the previous section. To highlight some of the more useful features of the Account API we will be replacing the @c plugin_load perl subroutine. For testing purposes we will display output on the command line by using perl @c print commands. | |
56 | |
57 @code | |
58 sub plugin_load { | |
59 $plugin = shift; | |
60 | |
61 # Testing was done using Oscar, but this should work regardless of the protocol chosen | |
62 my $protocol = "prpl-oscar"; | |
63 | |
64 # Create a new Account | |
65 print "Testing: Gaim::Account::new()..."; | |
66 $account = Gaim::Account::new("TEST_NAME", $protocol); | |
67 if ($account) { print "ok.\n"; } else { print "fail.\n"; } | |
68 | |
69 # Add a new Account | |
70 print "Testing: Gaim::Account::add()..."; | |
71 Gaim::Accounts::add($account); | |
72 print "pending find...\n"; | |
6598 | 73 |
11278 | 74 # Find the account we just added to verify its existence |
75 print "Testing: Gaim::Accounts::find()..."; | |
76 $account = Gaim::Accounts::find("TEST_NAME", $protocol); | |
77 if ($account) { print "ok.\n"; } else { print "fail.\n"; } | |
6598 | 78 |
11278 | 79 # Return the username |
80 print "Testing: Gaim::Account::get_username()..."; | |
81 $user_name = Gaim::Account::get_username($account); | |
82 if ($user_name) { print $user_name . "...ok.\n"; } else { print "fail.\n"; } | |
83 | |
84 # Verify if the user is connected | |
85 print "Testing: Gaim::Account::is_connected()"; | |
86 $user_connected = Gaim::Account::is_connected($account); | |
87 if (!($user_connected)) { print "...not connected...ok..\n"; } else { print "...connected...ok.\n"; } | |
88 | |
89 # The status mechanism is how users are Connected, set Away, Disconnected (status set to Offline), etc | |
90 # $status is now a Gaim::Status perl type. | |
91 print "Testing: Gaim::Accounts::get_active_status()..."; | |
92 $status = Gaim::Account::get_active_status($account); | |
93 if ($status) { print "ok.\n"; } else { print "fail.\n"; } | |
94 | |
95 # It follows that to connect a user you mest set the account status to "available" | |
96 # similarly we can disconnect a user by setting the account status to "offline" | |
97 $account = Gaim::Accounts::find("TEST_NAME", $protocol); | |
98 print "Testing: Gaim::Accounts::connect()...pending...\n"; | |
99 | |
100 Gaim::Account::set_status($account, "available", TRUE); | |
101 Gaim::Account::connect($account); | |
102 } | |
103 @endcode | |
104 | |
105 For the most part the code listed above is explained by the comments, however there are a few other points to make. The variables above are all specialized Perl types that contain pointers to the actual Gaim types. They can be reasigned at will just like any other variable in Perl. The only way to edit the values of a Gaim type from within perl are through accessor methods such as @c Gaim::Account::get_username(). For arguments that you would make @c NULL in C should be set to @c undef in Perl. | |
106 | |
107 @section buddylist-api Buddylist, Group and Chat API | |
108 | |
109 The BuddList, Group and Chat APIs are very similar and whatever is shown for the @c Gaim::BuddlyList API should carry over to @c Gaim::Chat and @c Gaim::Group. Note that there is a @c Gaim::Find pacakge that was created to keep the naming consistent with how these functions are named in the C API. | |
110 | |
111 @code | |
112 sub plugin_load { | |
113 my $plugin = shift; | |
114 my $protocol = "prpl-oscar"; | |
115 | |
116 # This is how we get an account to use in the following tests. You should replace the username | |
117 # with an existent user | |
118 $account = Gaim::Accounts::find("USERNAME", $protocol); | |
6598 | 119 |
11278 | 120 # Testing a find function: Note Gaim::Find not Gaim::Buddy:find! |
121 # Furthermore, this should work the same for chats and groups | |
122 print "Testing: Gaim::Find::buddy()..."; | |
123 $buddy = Gaim::Find::buddy($account, "BUDDYNAME"); | |
124 if ($buddy) { print "ok.\n"; } else { print "fail.\n"; } | |
125 | |
126 # If you should need the handle for some reason, here is how you do it | |
127 print "Testing: Gaim::BuddyList::get_handle()..."; | |
128 $handle = Gaim::BuddyList::get_handle(); | |
129 if ($handle) { print "ok.\n"; } else { print "fail.\n"; } | |
130 | |
131 # This gets the Gaim::BuddyList and references it by $blist | |
132 print "Testing: Gaim::BuddyList::get_blist()..."; | |
133 $blist = Gaim::BuddyList::get_blist(); | |
134 if ($blist) { print "ok.\n"; } else { print "fail.\n"; } | |
135 | |
136 # This is how you would add a buddy named "NEWNAME" with the alias "ALIAS" | |
137 print "Testing: Gaim::Buddy::new..."; | |
138 $buddy = Gaim::Buddy::new($account, "NEWNAME", "ALIAS"); | |
139 if ($buddy) { print "ok.\n"; } else { print "fail.\n"; } | |
140 | |
141 # Here we add the new buddy '$buddy' to the group "GROUP" | |
142 # so first we must find the group | |
143 print "Testing: Gaim::Find::group..."; | |
144 $group = Gaim::Find::group("GROUP"); | |
145 if ($group) { print "ok.\n"; } else { print "fail.\n"; } | |
146 | |
147 # To add the buddy we need to have the buddy, contact, group and node for insertion. | |
148 # For this example we can let contact be undef and set the insertion node as the group | |
149 print "Testing: Gaim::BuddyList::add_buddy..."; | |
150 Gaim::BuddyList::add_buddy($buddy, undef, $group, $group); | |
151 if ($buddy) { print "ok.\n"; } else { print "fail.\n"; } | |
6598 | 152 |
11278 | 153 # The example that follows gives an indiction of how an API call that returns a list is handled. |
154 # In this case the buddies of the account found earlier are retrieved and put in an array '@buddy_array' | |
155 # Further down an accessor method is used, 'get_name()' -- see source for details on the full set of methods | |
156 print "Testing: Gaim::Find::buddies...\n"; | |
157 @buddy_array = Gaim::Find::buddies($account, "USERNAME"); | |
158 if (@buddy_array) { | |
159 print "Buddies in list (" . @buddy_array . "): \n"; | |
160 foreach $bud (@buddy_array) { | |
161 print Gaim::Buddy::get_name($bud) . "\n"; | |
162 } | |
163 } | |
164 } | |
165 @endcode | |
166 | |
167 The BuddyList API allows for plugins to edit buddies in the list, find the buddies on a given account, set alias, and manipulate the structer as needed. It is also contains the methods for accessing @c Gaim::Group and @c Gaim::Chat types. | |
168 | |
169 @section conn-api Connection API | |
170 | |
171 The @c Gaim::Connection API is one of the many packages that will not be covered in depth in this tutorial. They are more useful to protocol plugin developers. However, the entire @c gaim_connection_ API has corresponding, functioning perl subroutines. | |
172 | |
173 @section conv-api Conversation API | |
174 | |
175 The Gaim perl API for @c gaim_conversation_ and @c gaim_conv_window_ allow plugins to interact with open conversations, create new conversations, and modify conversations at will. The following example again replaces the @c plugin_load subroutine. In the example script, a new window is created, displayed and a new conversation instant message is created. The @c Gaim::Conv::Chat package handles the @c gaim_conv_chat_ portion of the API very similarly to the examples that follow. | |
176 | |
177 @code | |
178 sub plugin_load { | |
179 my $plugin = shift; | |
180 my $protocol = "prpl-oscar"; | |
181 | |
182 $account = Gaim::Accounts::find("USERNAME", $protocol); | |
183 | |
184 # First we create two new conversations. | |
185 print "Testing Gaim::Conv::new()..."; | |
186 $conv1 = Gaim::Conv::new(1, $account, "Test Conv. 1"); | |
187 if ($conv1) { print "ok.\n"; } else { print "fail.\n"; } | |
188 | |
189 print "Testing Gaim::Conv::new()..."; | |
190 $conv2 = Gaim::Conv::new(1, $account, "Test Conv. 2"); | |
191 if ($conv2) { print "ok.\n"; } else { print "fail.\n"; } | |
192 | |
193 # Second we create a window to display the conversations in. | |
194 # Note that the package here is Gaim::Conv::Window | |
195 print "Testing Gaim::Conv::Window::new()...\n"; | |
196 $win = Gaim::Conv::Window::new(); | |
197 | |
198 # The third thing to do is to add the two conversations to the windows. | |
199 # The subroutine add_conversation() returns the number of conversations present in the window. | |
200 print "Testing Gaim::Conv::Window::add_conversation()..."; | |
201 $conv_count = Gaim::Conv::Window::add_conversation($win, $conv1); | |
202 if ($conv_count) { print "ok..." . $conv_count . " conversations...\n"; } else { print "fail.\n"; } | |
6598 | 203 |
11278 | 204 print "Testing Gaim::Conv::Window::add_conversation()..."; |
205 $conv_count = Gaim::Conv::Window::add_conversation($win, $conv2); | |
206 if ($conv_count) { print "ok..." . $conv_count . " conversations...\n"; } else { print "fail.\n"; } | |
207 | |
208 # Now the window is displayed to the user. | |
209 print "Testing Gaim::Conv::Window::show()...\n"; | |
210 Gaim::Conv::Window::show($win); | |
211 | |
212 # Use Gaim::Conv::get_im_data to get a handle for the conversation | |
213 print "Testing Gaim::Conv::get_im_data()...\n"; | |
214 $im = Gaim::Conv::get_im_data($conv1); | |
215 if ($im) { print "ok.\n"; } else { print "fail.\n"; } | |
216 | |
217 # Here we send messages to the conversation | |
218 print "Testing Gaim::Conv::IM::send()...\n"; | |
219 Gaim::Conv::IM::send($im, "Message Test."); | |
220 | |
221 print "Testing Gaim::Conv::IM::write()...\n"; | |
222 Gaim::Conv::IM::write($im, "SENDER", "<b>Message</b> Test.", 0, 0); | |
223 } | |
224 @endcode | |
225 | |
226 The next block of code shows how a script can close a known conversation window @c $win. | |
227 | |
228 @code | |
229 print "Testing Gaim::Conv::Window::get_conversation_count()...\n"; | |
230 $conv_count = Gaim::Conv::Window::get_conversation_count($win); | |
231 if ($conv_count > 0) { | |
232 print "Testing Gaim::Conv::Window::destroy()...\n"; | |
233 Gaim::Conv::Window::destroy($win); | |
234 } | |
235 @endcode | |
236 | |
237 @section plugin-pref-api Plugin Preference and Gtk Preference API | |
238 | |
239 The plugin preference API allows the plugin to display options in a preference pane that the user can change to manipulate the behaviour of the particular perl plugin. The method used for creating the pane in C does not allow a direct mapping into perl. Therefore perl plugin writers must be aware that there will be significant differences in how they create plugin preference panes. | |
240 | |
241 To first create a standard plugin preference tab we need to add some key/value pairs to the @c \%PLUGIN_INFO hash. The first line contains the perl subroutine that must be provided and will return a @c Gaim::Pref::Frame. | |
6598 | 242 |
11278 | 243 @code |
244 %PLUGIN_INFO = { | |
245 ..., | |
246 prefs_info => "prefs_info_cb" | |
247 }; | |
248 @endcode | |
249 | |
250 The perl subroutine @c prefs_info_cb will be called to create the tab for the perl plugin in the Preferences dialog. An example of this function will explain the details of creating a preference frame. However, it is necessary to first create the preferences from @c plugin_load as follows. | |
251 | |
252 @code | |
253 sub plugin_load { | |
254 my $plugin = shift; | |
255 | |
256 # Here we are adding a set of preferences | |
257 # The second argument is the default value for the preference. | |
258 Gaim::Prefs::add_none("/plugins/core/perl_test"); | |
259 Gaim::Prefs::add_bool("/plugins/core/perl_test/bool", 1); | |
260 Gaim::Prefs::add_string("/plugins/core/perl_test/choice", "ch1"); | |
261 Gaim::Prefs::add_string("/plugins/core/perl_test/text", "Foobar"); | |
262 } | |
263 @endcode | |
264 | |
265 Now we can add these preferences from inside our function specified in @c \%PLUGIN_INFO . | |
6598 | 266 |
11278 | 267 @code |
268 sub prefs_info_cb { | |
269 # The first step is to initialize the Gaim::Pref::Frame that will be returned | |
270 $frame = Gaim::Pref::frame_new(); | |
271 | |
272 # Create a new boolean option with a label "Boolean Label" and then add it to the frame | |
273 $ppref = Gaim::Pref::new_with_label("Boolean Label"); | |
274 Gaim::Pref::frame_add($frame, $ppref); | |
275 | |
276 $ppref = Gaim::Pref::new_with_name_and_label("/plugins/core/perl_test/bool", "Boolean Preference"); | |
277 Gaim::Pref::frame_add($frame, $ppref); | |
278 | |
279 # Create a set of choices. To do so we must set the type to 1 which is the numerical equivelant of | |
280 # the GaimPrefType for choice. | |
281 $ppref = Gaim::Pref::new_with_name_and_label("/plugins/core/perl_test/choice", "Choice Preference"); | |
282 Gaim::Pref::set_type($ppref, 1); | |
283 Gaim::Pref::add_choice($ppref, "ch0", $frame); | |
284 # The following will be the default value as set from plugin_load | |
285 Gaim::Pref::add_choice($ppref, "ch1", $frame); | |
286 Gaim::Pref::frame_add($frame, $ppref); | |
287 | |
288 # Create a text box. The default value will be "Foobar" as set by plugin_load | |
289 $ppref = Gaim::Pref::new_with_name_and_label("/plugins/core/perl_test/text", "Text Box Preference"); | |
290 Gaim::Pref::set_max_length($ppref, 16); | |
291 Gaim::Pref::frame_add($frame, $ppref); | |
6598 | 292 |
11278 | 293 return $frame; |
294 } | |
295 @endcode | |
296 | |
11377 | 297 Using the Gtk2-Perl module for Perl it is possible to create tailored @c GtkFrame elements and display them in a preference window. Note that Gtk2-Perl must be loaded with @c require and not @c use . The first step is to create the proper key/value pairs in the @c \%PLUGIN_INFO hash noting that the @c prefs_info key is no longer valid. Instead the keys @c GTK_UI and @c gtk_prefs_info must be set as follows. |
11278 | 298 |
299 @code | |
300 %PLUGIN_INFO = { | |
301 ..., | |
302 # Used to differentiate between a regular and a Gtk preference frame | |
303 GTK_UI => TRUE, | |
304 gtk_prefs_info => "gtk_prefs_info_cb", | |
305 } | |
306 @endcode | |
307 | |
308 To finish this example @c gtk_prefs_info_cb needs to be defined. To introduce some of the flexibility of using Gtk2-Perl the example also includes a button and a callback for the button. Explaining Gtk2-Perl is beyond the scope of this tutorial and more info can be found at the project's website <a href="http://gtk2-perl.sourceforge.net/">http://gtk2-perl.sourceforge.net/</a>. | |
6598 | 309 |
11278 | 310 @code |
311 # A simple call back that prints out whatever value it is given as an argument. | |
312 sub button_cb { | |
313 my $widget = shift; | |
314 my $data = shift; | |
315 print "Clicked button with message: " . $data . "\n"; | |
316 } | |
317 | |
318 sub gtk_prefs_info_cb { | |
11377 | 319 # Create a button that prints a message to the console and places it in the frame. |
320 use Glib; | |
321 require Gtk2; | |
11278 | 322 |
11377 | 323 $frame = Gtk2::Frame->new(\'Gtk Test Frame\'); |
324 $button = Gtk2::Button->new(\'Print Message\'); | |
11278 | 325 |
11377 | 326 $frame->set_border_width(10); |
327 $button->set_border_width(150); | |
328 $button->signal_connect("clicked" => \&button_cb, "Message Text"); | |
329 $frame->add($button); | |
11278 | 330 |
11377 | 331 $button->show(); |
332 $frame->show(); | |
333 | |
11278 | 334 return $frame; |
335 } | |
336 @endcode | |
6598 | 337 |
11278 | 338 @section request-api Request Dialog Box API |
339 | |
340 The @c Gaim::Request package allows for plugins to have interactive dialog boxes without the need for creating them in Gtk creating a seperation between the user interfaace and the plugin. The portion of the Request API available to perl scripts is listed below followed by an example illustrating their use. | |
341 | |
342 These arguments are the same for each of the three request types: | |
343 @arg @em handle - The plugin handle. | |
344 @arg @em title - String title for the dialog. | |
345 @arg @em primary - The first sub-heading. | |
346 @arg @em secondary - The second sub-heading. | |
347 @arg @em ok_text - The Text for the OK button. | |
348 @arg @em ok_cb - The string name of the perl subroutine to call when the OK button is clicked. | |
349 @arg @em cancel_text - The text for the Cancel button. | |
350 @arg @em cancel_cb - The string name of the perl subroutine to call when the Cancel button is clicked. | |
351 @arg @em default_value - Default text string to display in the input box. | |
352 @arg @em multiline - Boolean where true indicates multiple line input boxes are allowed. | |
353 @arg @em masked - Boolean indicating if the user can edit the text. | |
354 @arg @em hint - See source for more information - can be left blank. | |
355 @arg @em filename - String defualt file name value. | |
356 @arg @em savedialog - Boolean where true indicates use as a save file dialog and false indicates an open file dialog. | |
6598 | 357 |
11278 | 358 @code |
359 # Create a simple text input box | |
360 Gaim::Request::input(handle, title, primary, secondary, default_value, multiline, masked, hint, ok_text, ok_cb, cancel_text, cancel_cb); | |
361 | |
362 # Propt user to select a file | |
363 Gaim::Request::file(handle, title, filename, savedialog, ok_cb, cancel_cb); | |
364 | |
365 # Create a unique input dialog as shown in the following example | |
366 Gaim::Request::fields(handle, title, primary, secondary, fields, ok_text, ok_cb, cancel_text, cancel_cb); | |
367 @endcode | |
368 | |
369 What follows is an example of a @c Gaim::Request::fields() dialog box with two callbacks for an OK button and a Cancel Button. | |
370 | |
371 @code | |
372 sub ok_cb_test{ | |
373 # The $fields is passed to the callback function when the button is clicked. | |
374 # To get the values they must be extracted from $fields by name. | |
375 $fields = shift; | |
376 $account = Gaim::Request::fields_get_account($fields, "acct_test"); | |
377 $int = Gaim::Request::fields_get_integer($fields, "int_test"); | |
378 $choice = Gaim::Request::fields_get_choice($fields, "ch_test"); | |
379 } | |
380 | |
381 sub cancel_cb_test{ | |
382 # Cancel does nothing but is symmetric to the ok_cb_test | |
6602
76683fe3c96d
[gaim-migrate @ 7126]
Christian Hammond <chipx86@chipx86.com>
parents:
6598
diff
changeset
|
383 } |
6598 | 384 |
6602
76683fe3c96d
[gaim-migrate @ 7126]
Christian Hammond <chipx86@chipx86.com>
parents:
6598
diff
changeset
|
385 sub plugin_load { |
11278 | 386 my $plugin = shift; |
6598 | 387 |
11278 | 388 # Create a group to pool together mutltiple fields. |
389 $group = Gaim::Request::field_group_new("Group Name"); | |
390 | |
391 # Each fields is created with Gaim::Request::*_new(), is made viewable with Gaim::Request::field_*_set_show_all() | |
392 # and is then added to the group with Gaim::Request::field_group_add_field() | |
6598 | 393 |
11278 | 394 # Add an account drop down list showing all active accounts |
395 $field = Gaim::Request::field_account_new("acct_test", "Account Text", undef); | |
396 Gaim::Request::field_account_set_show_all($field, 0); | |
397 Gaim::Request::field_group_add_field($group, $field); | |
6598 | 398 |
11278 | 399 # Add an integer input box |
400 $field = Gaim::Request::field_int_new("int_test", "Integer Text", 33); | |
401 Gaim::Request::field_group_add_field($group, $field); | |
6598 | 402 |
11278 | 403 # Add a list of choices |
404 $field = Gaim::Request::field_choice_new("ch_test", "Choice Text", 1); | |
405 Gaim::Request::field_choice_add($field, "Choice 0"); | |
406 Gaim::Request::field_choice_add($field, "Choice 1"); | |
407 Gaim::Request::field_choice_add($field, "Choice 2"); | |
6598 | 408 |
11278 | 409 Gaim::Request::field_group_add_field($group, $field); |
410 | |
411 # Create a Gaim::Request and add the group that was just created. | |
412 $request = Gaim::Request::fields_new(); | |
413 Gaim::Request::fields_add_group($request, $group); | |
6598 | 414 |
11278 | 415 # Display the dialog box with the input fields added earlier with the appropriate titles. |
416 Gaim::Request::fields( | |
417 $plugin, | |
418 "Request Title!", | |
419 "Primary Title", | |
420 "Secondary Title", | |
421 $request, | |
422 "Ok Text", "ok_cb_test", | |
423 "Cancel Text", "cancel_cb_test"); | |
424 } | |
425 @endcode | |
6598 | 426 |
11278 | 427 @section timeout-cb Misc: Plugin Actions, Timeouts and Callbacks |
6598 | 428 |
11278 | 429 This section of the manual covers some of the more important features that can be added to Gaim perl Plugins. Plugin actions are callback functions that are accessible to the user from the Gaim main window under "Tools->Plugin Actions". Timeouts allow a plugin to exectue a perl subroutine after a given period of time. Note that timeouts only occur once, so if the timeout must occur periodically just add a new timeout at the end of the timeout callback function. Callbacks are functions that are called when an event occurs such as a buddy signing-on or a message being received. These three tools will be discussed in the following three examples. |
430 | |
431 The Plugin Action requires the @c \%PLUGIN_INFO hash to have two key/value pairs added and a callback perl subroutine defined. Note the difference between the C API that allows for a GList of actions--only one plugin action is allowed in Gaim perl plugins. | |
6598 | 432 |
11278 | 433 @code |
434 %PLUGIN_INFO = { | |
435 ..., | |
436 # The callback subroutine that is called when "Tools->Plugin Action->Plugin Action Label" is selected | |
437 plugin_action => "plugin_action_cb", | |
438 plugin_action_label => "Plugin Action Label" | |
439 } | |
6598 | 440 |
11278 | 441 sub plugin_action_cb { |
442 # Note the function receives the plugin handle as its argument | |
443 $plugin = shift; | |
444 print "Plugin Action Selected.\n"; | |
445 } | |
446 @endcode | |
6598 | 447 |
11278 | 448 Timeouts allow a perl subroutine to be exectued after a specified time. They only occur once, so as stated earlier the timeout must be reregistered after every time it is called. |
449 | |
450 @code | |
451 sub timeout_cb { | |
452 my $plugin = shift; | |
453 print "Timeout occured."; | |
454 | |
455 # Reschedule timeout | |
456 Gaim::timeout_add($plugin, 10, \&timeout_cb, $plugin); | |
6602
76683fe3c96d
[gaim-migrate @ 7126]
Christian Hammond <chipx86@chipx86.com>
parents:
6598
diff
changeset
|
457 } |
6603
21084026030b
[gaim-migrate @ 7127]
Christian Hammond <chipx86@chipx86.com>
parents:
6602
diff
changeset
|
458 |
6602
76683fe3c96d
[gaim-migrate @ 7126]
Christian Hammond <chipx86@chipx86.com>
parents:
6598
diff
changeset
|
459 sub plugin_load { |
11278 | 460 $plugin = shift; |
461 | |
462 # Schedule a timeout for ten seconds from now | |
463 Gaim::timeout_add($plugin, 10, \&timeout_cb, $plugin); | |
464 } | |
465 @endcode | |
6598 | 466 |
11278 | 467 Callbacks are handled by creating a perl subroutine to serve as the callback and then attaching the callback to a signal. To use callbacks it is necessary to first obtain the plugin handle with the @c Gaim::Plugin::get_handle() subroutine to pass as an argument for the callback. |
468 | |
469 @code | |
470 sub signal_cb { | |
471 # The handle and the user data come in as arguments | |
472 my ($handle, $data) = @_; | |
473 print "User just connected."; | |
6602
76683fe3c96d
[gaim-migrate @ 7126]
Christian Hammond <chipx86@chipx86.com>
parents:
6598
diff
changeset
|
474 } |
6598 | 475 |
11278 | 476 sub plugin_load { |
477 $plugin = shift; | |
478 | |
479 # User data to be given as an argument to the callback perl subroutine. | |
480 $data = ""; | |
6598 | 481 |
11278 | 482 # A pointer to the actual plugin handle needed by the callback function |
483 $plugin_handle = Gaim::Accounts::get_handle(); | |
6598 | 484 |
11278 | 485 # Connect the perl subroutine 'signal_cb' to the event 'account-connecting' |
486 Gaim::signal_connect($plugin_handle, "account-connecting", $plugin, \&signal_cb, $data); | |
487 } | |
488 @endcode | |
489 | |
490 @section Resources | |
491 @see API Documentation | |
6602
76683fe3c96d
[gaim-migrate @ 7126]
Christian Hammond <chipx86@chipx86.com>
parents:
6598
diff
changeset
|
492 |
6598 | 493 */ |