Hiyas,
I am new to Google Gadgets and am trying to modify a gadget I
inherited. To do so, I need to add control types to the options
panel. I found the Window Classes and Control Types in the Gadget
API; however, there seems to be a window object that gets passed to
the plugin.onShowOptionsDlg function which allows the Google Window
Classes and Control Types to be added to it via a call to
window.AddControl(). Here is a sample:
===================================================
plugin.onShowOptionsDlg = showOptionsDlg;
/**
* ?????????????
*/
function showOptionsDlg(wnd){
wnd.AddControl(gddWndCtrlClassLabel,
gddWndCtrlTypeNone, "", strings.OPTION_LABEL_PIN, 10, 19, 120 ,22);
...
===================================================
I am trying to identify what this window (wnd) object is so I can look
up it's API and understand what arguments it accepts... can anyone
help?
Thanks.
Keith
--
You received this message because you are subscribed to the Google Groups
"Google Desktop Developer Group" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/google-desktop-developer?hl=en.