home *** CD-ROM | disk | FTP | other *** search
/ PC World 2002 September / PCWorld_2002-09_cd.bin / Software / Topware / winamp / wa3install-mad.exe / Lib / std.mi < prev   
Text File  |  2002-06-24  |  51KB  |  2,055 lines

  1. //----------------------------------------------------------------------------------------------------------------
  2. // std.mi
  3. //
  4. // standard definitions for internal objects
  5. //----------------------------------------------------------------------------------------------------------------
  6.  
  7. #ifndef true
  8. #define true 1
  9. #endif
  10. #ifndef false
  11. #define false 0
  12. #endif
  13.  
  14.  
  15. // GUIDS
  16. extern class @{51654971-0D87-4a51-91E3-A6B53235F3E7}@ @{00000000-0000-0000-0000-000000000000}@ Object;
  17. extern class @{D6F50F64-93FA-49b7-93F1-BA66EFAE3E98}@ Object _predecl System;
  18. extern class @{E90DC47B-840D-4ae7-B02C-040BD275F7FC}@ Object Container;
  19. extern class @{00C074A0-FEA2-49a0-BE8D-FABBDB161640}@ Object Wac;
  20. extern class @{B2023AB5-434D-4ba1-BEAE-59637503F3C6}@ Object &List;
  21. extern class @{38603665-461B-42a7-AA75-D83F6667BF73}@ Object ⤅
  22. extern class @{F4787AF4-B2BB-4ef7-9CFB-E74BA9BEA88D}@ Object &PopupMenu;
  23. extern class @{3A370C02-3CBF-439f-84F1-86885BCF1E36}@ Object &Region;
  24. extern class @{5D0C5BB6-7DE1-4b1f-A70F-8D1659941941}@ Object &Timer;
  25. extern class @{4EE3E199-C636-4bec-97CD-78BC9C8628B0}@ Object &GuiObject;
  26. extern class @{45BE95E5-2072-4191-935C-BB5FF9F117FD}@ GuiObject &Group;
  27. extern class @{60906D4E-537E-482e-B004-CC9461885672}@ Group &Layout;
  28. extern class @{403ABCC0-6F22-4bd6-8BA4-10C829932547}@ GuiObject &Component;
  29. extern class @{97AA3E4D-F4D0-4fa8-817B-0AF22A454983}@ GuiObject &ComponentBucket;
  30. extern class @{64E4BBFA-81F4-49d9-B0C0-A85B2EC3BCFD}@ GuiObject &Edit;
  31. extern class @{62B65E3F-375E-408d-8DEA-76814AB91B77}@ GuiObject &Slider;
  32. extern class @{CE4F97BE-77B0-4e19-9956-D49833C96C27}@ GuiObject &Vis;
  33. extern class @{A8C2200D-51EB-4b2a-BA7F-5D4BC65D4C71}@ GuiObject &Browser;
  34. extern class @{8D1EBA38-489E-483e-B960-8D1F43C5C405}@ GuiObject &EqVis;
  35. extern class @{0F08C940-AF39-4b23-80F3-B8C48F7EBB59}@ GuiObject &Status;
  36. extern class @{EFAA8672-310E-41fa-B7DC-85A9525BCB4B}@ GuiObject &Text;
  37. extern class @{7DFD3244-3751-4e7c-BF40-82AE5F3ADC33}@ GuiObject &Title;
  38. extern class @{5AB9FA15-9A7D-4557-ABC8-6557A6C67CA9}@ GuiObject &Layer;
  39. extern class @{698EDDCD-8F1E-4fec-9B12-F944F909FF45}@ GuiObject &Button;
  40. extern class @{6B64CD27-5A26-4c4b-8C59-E6A70CF6493A}@ Layer &AnimatedLayer;
  41. extern class @{B4DCCFFF-81FE-4bcc-961B-720FD5BE0FFF}@ Button &ToggleButton;
  42. extern class @{01E28CE1-B059-11d5-979F-E4DE6F51760A}@ GuiObject &GroupList;
  43. extern class @{80F0F8BD-1BA5-42a6-A093-3236A00C8D4A}@ Group &CfgGroup;
  44. extern class @{CDCB785D-81F2-4253-8F05-61B872283CFA}@ GuiObject &QueryList;
  45. extern class @{9B2E341B-6C98-40fa-8B85-0C1B6EE89405}@ GuiObject &MouseRedir;
  46. extern class @{36D59B71-03FD-4af8-9795-0502B7DB267A}@ GuiObject &DropDownList;
  47. extern class @{7FD5F210-ACC4-48df-A6A0-5451576CDC76}@ GuiObject &LayoutStatus;
  48.  
  49.  
  50.  
  51. // class tree member functions & events
  52.  
  53. //*****************************************************************************
  54. // Object CLASS
  55. //*****************************************************************************
  56. /**
  57.  Object Class.
  58.  
  59.  @short    This is the base class from which all other classes inherit.
  60.  @author   Nullsoft Inc.
  61.  @ver  1.0
  62. */
  63.  
  64. /**
  65.  getClassName()
  66.  
  67.  Returns the class name for the object.
  68.  
  69.  @ret The class name.
  70. */
  71. extern String Object.getClassName();
  72.  
  73. /**
  74.  getId()
  75.  
  76. */
  77. extern String Object.getId();
  78.  
  79. /**
  80.  onNotify()
  81.  
  82.  @ret
  83.  @param  command
  84.  @param  param
  85.  @param  a
  86.  @param  b
  87. */
  88. extern Int Object.onNotify(String command, String param, int a, int b);
  89.  
  90. //*****************************************************************************
  91. // System CLASS
  92. //*****************************************************************************
  93. /**
  94.  System Class.
  95.  
  96.  @short    The system class are basic system functions accessible to all.
  97.  @author   Nullsoft Inc.
  98.  @ver  1.0
  99. */
  100.  
  101. /**
  102.  onScriptLoaded()
  103.  
  104.  Hookable. Event happens when script has just finished being loaded.
  105.  No params.
  106. */
  107. extern System.onScriptLoaded();
  108.  
  109. /**
  110.  onScriptUnloading()
  111.  
  112.  Hookable. Event happens when script is going to be unloaded.
  113.  No params.
  114. */
  115. extern System.onScriptUnloading();
  116.  
  117. /**
  118.  onQuit()
  119.  
  120.  Hookable. Event happens when the user quits the application.
  121.  No params.
  122. */
  123. extern System.onQuit();
  124.  
  125. /**
  126.  onSetXuiParam(String param, String value)
  127.  
  128.  Hookable. Event happens when the script is in a group implementing
  129.  an xuiobject and a parameter has not been recognized by the group or
  130.  the embedded object.
  131.  
  132.  No params.
  133. */
  134. extern System.onSetXuiParam(String param, String value);
  135.  
  136. /**
  137.  onKeyDown()
  138.  
  139.  Hookable. Event happens when the user presses a key on the keyboard.
  140.  
  141.  @param  key   The key that was pressed.
  142. */
  143. extern System.onKeyDown(String key);
  144.  
  145. /**
  146.  onCreateLayout()
  147.  
  148.  Hookable. Event happens when a layout is created.
  149.  
  150.  @param  _layout   The layout that was just created.
  151. */
  152. extern System.onCreateLayout(Layout _layout);
  153.  
  154. /**
  155.  onShowLayout()
  156.  
  157.  Hookable. Event happens when a layout is about to be shown.
  158.  This even only happens if the layout was previously hidden.
  159.  
  160.  @param  _layout   The layout that's about to be shown.
  161. */
  162. extern System.onShowLayout(Layout _layout);
  163.  
  164. /**
  165.  onHideLayout()
  166.  
  167.  Hookable.
  168.  
  169.  @param  _layout   The layout that's about to be hidden.
  170. */
  171. extern System.onHideLayout(Layout _layout);
  172.  
  173. /**
  174.  onStop()
  175.  
  176.  Hookable. Event happens when Winamp3 stops playing a file.
  177.  No params.
  178. */
  179. extern System.onStop();
  180.  
  181. /**
  182.  onPlay()
  183.  
  184.  Hookable. Event happens when Winamp3 starts playing a file.
  185.  No params.
  186. */
  187. extern System.onPlay();
  188.  
  189. /**
  190.  onPause()
  191.  
  192.  Hookable. Event happens when Winamp3 pauses playback.
  193.  No params.
  194. */
  195. extern System.onPause();
  196.  
  197. /**
  198.  onResume()
  199.  
  200.  Hookable. Event happens when Winamp3 resumes playback.
  201.  Event only happens when the song was previously set in a paused state.
  202.  No params.
  203. */
  204. extern System.onResume();
  205.  
  206. /**
  207.  onTitleChange()
  208.  
  209.  Hookable. Event happens when the song title changes.
  210. */
  211. extern System.onTitleChange(String newtitle);
  212.  
  213. extern System.onTitle2Change(String newtitle2);
  214. extern System.onInfoChange(String info);
  215. extern System.onStatusMsg(String msg);
  216.  
  217. /**
  218.  onEqBandChanged()
  219.  
  220.  Hookable. Event happens when an equalizer band changes values.
  221.  The bands are numbered from 0 to 9 (0 being 60Hz and 9 being 16kHz)
  222.  and their values range from -127 to +127.
  223.  
  224.  @param  band      The frequency band that has changed.
  225.  @param  newvalue  The new value of the frequency band.
  226. */
  227. extern System.onEqBandChanged(int band, int newvalue);
  228.  
  229. /**
  230.  onEqPreampChanged()
  231.  
  232.  Hookable. Event happens when the equalizer pre-amp has changed
  233.  values. Range of the value is from -127 to +127.
  234.  
  235.  @param  newvalue  The new pre-amp value.
  236. */
  237. extern System.onEqPreampChanged(int newvalue);
  238.  
  239. /**
  240.  onEqChanged()
  241.  
  242.  Hookable. Event happens when the EQ is switched on or off.
  243.  0 means the EQ was turned off. 1 means it was turned on.
  244.  You might want to use true and false to verify this, it's a bit
  245.  more elegant. :)
  246.  
  247.  @param  newstatus   The new status of the EQ.
  248. */
  249. extern System.onEqChanged(int newstatus);
  250.  
  251. /**
  252.  onVolumeChanged()
  253.  
  254.  Hookable. Event happens when the volume was changed.
  255.  The range of the volume is from 0 to 255.
  256.  
  257.  @param  newvol    The new volume value.
  258. */
  259. extern System.onVolumeChanged(int newvol);
  260.  
  261. /**
  262.  onSeek()
  263.  
  264.  Hookable. Event happens when the user seeks
  265.  to a position in the track.
  266.  
  267.  @param  newpos    The seekers new position.
  268. */
  269. extern System.onSeek(int newpos);
  270.  
  271. /**
  272.  getContainer()
  273.  
  274.  @ret                 The requested container.
  275.  @param  container_id    The containers identifier string.
  276. */
  277. extern Container System.getContainer(String container_id);
  278.  
  279. /**
  280.  newDynamicContainer()
  281.  
  282.  @ret                 The new container.
  283.  @param  container_id    The identifier for the container you want to create.
  284. */
  285. extern Container System.newDynamicContainer(String container_id);
  286.  
  287. /**
  288.  newGroup()
  289.  
  290.  @ret             The new group.
  291.  @param  group_id    The identifier for the group you want to create.
  292. */
  293. extern Group System.newGroup(String group_id);
  294.  
  295. extern Layout System.newGroupAsLayout(String group_id);
  296.  
  297. /**
  298.  getNumContainers()
  299.  
  300.  Get the number of containers currently created.
  301.  
  302.  @ret The number of containers.
  303. */
  304. extern Int System.getNumContainers();
  305.  
  306. /**
  307.  enumContainer()
  308.  
  309.  Returns the name of the container associated with it's number.
  310.  Use getNumContainers() to fetch the number of containers present.
  311.  The containers are numbered from 0 to the value returned by getNumContainers().
  312.  
  313.  @ret       The name of the specified container.
  314.  @param  num   The container's number for which you want to know the name.
  315. */  
  316. extern Container System.enumContainer(Int num);
  317.  
  318. /**
  319.  getWac()
  320.  
  321.  Gets the reference to the wac identified by the guid sent.
  322.  
  323.  @ret The requested WAC.
  324.  @param  wac_guid  The WAC's GUID.
  325. */
  326. extern Wac System.getWac(String wac_guid);
  327.  
  328. /**
  329.  messageBox()
  330.  
  331.  Creates a message box.
  332.  The flag paramater lets you set the style of the message box.
  333.  Just use the OR bitwise operator to set the style you want.
  334.  Here's a list of the flags you can use:
  335.  
  336.  MSGBOX_OK         Adds an OK button.      (1)
  337.  MSGBOX_CANCEL     Adds a CANCEL button.   (2)
  338.  MSGBOX_YES        Adds a YES button.      (4)
  339.  MSGBOX_NO         Adds a NO button.       (8)
  340.  MSGBOX_ALL        Adds ALL buttons.       (16)
  341.  MSGBOX_NEXT       Adds a NEXT button.     (32)
  342.  MSGBOX_PREVIOUS   Adds a PREVIOUS button. (64)
  343.  
  344.  Note that the notanymore_id parameter stores the users answer in the 
  345.  configuration file with the entry name specified by it's value.
  346.  
  347.  @ret   The value of the button that was pressed (example: if OK is pressed, 1 is returned).
  348.  @param    message         The message you want to display.
  349.  @param    msgtitle        The title of the message box.
  350.  @param    flag            The message box style you want.
  351.  @param    notanymore_id   Configuration item name in which to store the users answer.
  352. */
  353. extern Int System.messageBox(String message, String msgtitle, Int flag, String notanymore_id);
  354.  
  355. /**
  356.  getPlayItemString()
  357.  
  358.  @ret The name of what is playing.
  359. */
  360. extern String System.getPlayItemString();
  361.  
  362. /**
  363.  getPlayItemLength()
  364.  
  365.  Get the length of the track currently playing, in milliseconds.
  366.  
  367.  @ret Length of the track, in seconds.
  368. */
  369. extern Int System.getPlayItemLength();
  370.  
  371. /**
  372.  getPlayItemMetaDataString()
  373.  
  374.  Get metadata for the track currently playing. The metadata field names that
  375.  are available are the following:
  376.  
  377.  **ADD LIST**
  378.  
  379.  @ret                 The requested metadata.
  380.  @param  metadataname    The name of the metadata field you want to read.
  381. */
  382. extern String System.getPlayItemMetaDataString(String metadataname);
  383.  
  384. /**
  385.  playFile()
  386.  
  387.  Play the requested file. Path and filename are required
  388.  with proper extension (example: playFile("c:\music\mp3\file.mp3"); ).
  389.  It also works with URL's (example: playFile("http://myshoutcast.com:8000"); ).
  390.  
  391.  @param  playitem  The path and filename to play.
  392. */
  393. extern System.playFile(String playitem);
  394.  
  395. /**
  396.  getLeftVuMeter()
  397.  
  398.  Get the value of the left vu meter.
  399.  Range is from 0 to 255. Linear.
  400.  
  401.  @ret The value of the left vu meter.
  402. */
  403. extern Int System.getLeftVuMeter();
  404.  
  405. /**
  406.  getRightVuMeter()
  407.  
  408.  Get the value of the right vu meter.
  409.  Range is from 0 to 255. Linear.
  410.  
  411.  @ret The value of the left vu meter.
  412. */
  413. extern Int System.getRightVuMeter();
  414.  
  415. /**
  416.  getVolume()
  417.  
  418.  Get the current volume. Range is from 0 to 255.
  419.  
  420.  @ret The current volume.
  421. */
  422. extern Int System.getVolume();
  423.  
  424. /**
  425.  setVolume()
  426.  
  427.  Set the volume to the desired value.
  428.  Range is from 0 to 255.
  429.  
  430.  @param vol  The desired volume value.
  431. */
  432. extern System.setVolume(Int vol);
  433.  
  434. /**
  435.  play()
  436.  
  437.  Trigger the play event.
  438. */
  439. extern System.play();
  440.  
  441. /**
  442.  stop()
  443.  
  444.  Trigger the stop event.
  445. */
  446. extern System.stop();
  447.  
  448. /**
  449.  pause()
  450.  
  451.  Trigger the pause event.
  452. */
  453. extern System.pause();
  454.  
  455. /**
  456.  next()
  457.  
  458.  Trigger the next event.
  459. */
  460. extern System.next();
  461.  
  462. /**
  463.  previous()
  464.  
  465.  Trigger the previous event.
  466. */
  467. extern System.previous();
  468.  
  469. /**
  470.  eject()
  471.  
  472.  Trigger the eject event.
  473. */
  474. extern System.eject();
  475.  
  476. /**
  477.  seekTo()
  478.  
  479.  Seek to the desired position in the track. Range is from
  480.  0 to SONG LENGTH (in milliseconds).
  481. */
  482. extern System.seekTo(Int pos);
  483.  
  484. /**
  485.  getPosition()
  486.  
  487.  Get the current position in the track currently playing,
  488.  in milliseconds.
  489.  
  490.  @ret The current position in the track.
  491. */
  492. extern Int System.getPosition();
  493.  
  494. /**
  495.  setEqBand()
  496.  
  497.  Sets the requested equalizer band to the specified value.
  498.  The bands are numbered from 0 (60Hz) to 9 (16kHz) and
  499.  each range from -127 to +127.
  500.  
  501.  @param  band  The EQ band to set.
  502.  @param  value The desired value for the specified band.
  503. */
  504. extern System.setEqBand(int band, Int value);
  505.  
  506. /**
  507.  setEqPreamp()
  508.  
  509.  Set the equalizer pre-amp to the desired value.
  510.  Range is from -127 to +127 (0 means no preamp).
  511.  
  512.  @param  value The desired value for the pre-amp.
  513. */
  514. extern System.setEqPreamp(Int value);
  515.  
  516. /**
  517.  Set the equalizer to the desired state. On or off.
  518.  0 is off, 1 is on.
  519.  
  520.  @param  onoff The desired state for the eq.
  521. */
  522. extern System.setEq(Int onoff);
  523.  
  524. /**
  525.  getEqBand()
  526.  
  527.  Get the value of an equalizer band. The bands
  528.  are numbered from 0 (60Hz) to 9 (16kHz). The return
  529.  value range is from -127 to +127.
  530.  
  531.  @ret       The value of the band.
  532.  @param  band  The eq band number you want to get.
  533. */
  534. extern Int System.getEqBand(int band);
  535.  
  536. /**
  537.  getEqPreamp()
  538.  
  539.  Get the equalizer preamp value. The value range is
  540.  from -127 to +127 (0 means no preamp).
  541.  
  542.  @ret The preamp's current value.
  543. */
  544. extern int System.getEqPreamp();
  545.  
  546. /**
  547.  getEq()
  548.  
  549.  Get the equalizer state. 0 for off, 1 for on.
  550.  Remember to compare return value to true and false.
  551.  
  552.  @ret The EQ's state.
  553. */
  554. extern int System.getEq();
  555.  
  556. /**
  557.  getMousePosX()
  558.  
  559.  This returns the X position of the mouse in the screen,
  560.  using the screen coordinate system.
  561.  
  562.  @ret The mouse's current X pos.
  563. */
  564. extern int System.getMousePosX();
  565.  
  566. /**
  567.  getMousePosY()
  568.  
  569.  This returns the Y position of the mouse in the screen,
  570.  using the screen coordinate system.
  571.  
  572.  @ret The mouse's current Y pos.
  573. */
  574. extern int System.getMousePosY();
  575.  
  576. /**
  577.  integerToString()
  578.  
  579.  Get the string representation of an integer.
  580.  
  581.  @ret         The string equivalent of the integer.
  582.  @param  value   The integer to change into a string.
  583. */
  584. extern String System.integerToString(Int value);
  585.  
  586. /**
  587.  StringToInteger()
  588.  
  589.  Get the integer representation of a string.
  590.  
  591.  @ret     The integer equivalent of the string.
  592.  @param  str The string to change into an integer.
  593. */
  594. extern Int System.StringToInteger(String str);
  595.  
  596. /**
  597.  floatToString()
  598.  
  599.  Get the string representation of a floating point number.
  600.  
  601.  @ret         The string representation of the float number.
  602.  @param  value   The float to convert.
  603.  @param  ndigits Number of digits after the decimal point you want.
  604. */
  605. extern String System.floatToString(float value, int ndigits);
  606.  
  607. /**
  608.  stringToFloat()
  609.  
  610.  Get the floating point representation of a string.
  611.  
  612.  @ret     The float representation of the string.
  613.  @param  str The string to convert.
  614. */
  615. extern Float System.stringToFloat(String str);
  616.  
  617. /**
  618.  integerToLongTime()
  619.  
  620.  Convert a time in seconds to a HH:MM:SS value.
  621.  
  622.  @ret       The string representation of the time (HH:MM:SS).
  623.  @param  value Timestamp to use.
  624. */
  625. extern String System.integerToLongTime(Int value);
  626.  
  627. /**
  628.  integerToTime()
  629.  
  630.  Convert a time in seconds to a MM:SS value.
  631.  
  632.  @ret       The string representation of the time (MM:SS).
  633.  @param  value Timestamp to use.
  634. */
  635. extern String System.integerToTime(Int value);
  636.  
  637. /**
  638.  strmid()
  639.  
  640.  Get a substring from a string.
  641.  
  642.  @ret       The substring.
  643.  @param  str   The string.
  644.  @param  start The start position.
  645.  @param  len   The length of the string to extract, from start position.
  646. */
  647. extern String System.strmid(String str, Int start, Int len);
  648.  
  649. /**
  650.  strleft()
  651.  
  652.  Get a substring from a string, starting from the left.
  653.  
  654.  @ret         The substring.
  655.  @param  str     The string.
  656.  @param  nchars  The length of the string to extract, from the left.
  657. */
  658. extern String System.Strleft(string str, int nchars);
  659.  
  660. /**
  661.  strright()
  662.  
  663.  Get a substring from a string, starting from the right. Since
  664.  the start point is the right of the string (or the end). It will
  665.  extract the string starting from the END going towards the BEGINNING.
  666.  
  667.  @ret         The substring.
  668.  @param  str     The string.
  669.  @param  nchars  The length of the string to extract, from the right.
  670. */
  671. extern string System.strright(string str, int nchars);
  672.  
  673. /**
  674.  strsearch()
  675.  
  676.  Search a string for any occurance of substring. If the substring was
  677.  found in the string, it will return the position of the substring in
  678.  the string searched. If the substring is not found, the return value
  679.  is -1.
  680.  
  681.  @ret         Position at which the substring was found.
  682.  @param  str     The string to search in.
  683.  @param  substr  The substring to find.
  684. */
  685. extern int System.strsearch(string str, string substr);
  686.  
  687. /**
  688.  strlen()
  689.  
  690.  Returns the length of the string.
  691.  
  692.  @ret     The length of the string.
  693.  @param  str The string.
  694. */
  695. extern int System.strlen(string str);
  696.  
  697. /**
  698.  strupper()
  699.  
  700.  Convert a string to all uppercase.
  701.  
  702.  @ret     The uppercase string.
  703.  @param  str The string to uppercase.
  704. */
  705. extern string System.strupper(string str);
  706.  
  707. /**
  708.  strlower()
  709.  
  710.  Convert a string to all lowercase.
  711.  
  712.  @ret     The lowercase string.
  713.  @param  str The string to lowercase.
  714. */
  715. extern string System.strlower(string str);
  716.  
  717. /**
  718.  urlEncode()
  719.  
  720.  URL Encode a string. Characters that are NOT encoded
  721.  are: All letters, All digits, underscore (_), dash (-) and 
  722.  period (.).
  723.  
  724.  @ret       The URL encoded string.
  725.  @param  url   The string to URL encode.
  726. */
  727. extern string System.urlEncode(string url);
  728.  
  729. /**
  730.  removePath()
  731.  
  732.  Remove the path from a fullpath. (example:
  733.  c:\music\mp3\test.mp3 -> test.mp3)
  734.  Also works on URL's.
  735.  
  736.  @ret    The filename with the path removed.
  737.  @param str The fullpath of a file.
  738. */
  739. extern string System.removePath(string str);
  740.  
  741. /**
  742.  getToken()
  743.  
  744.  Retreive a token from a list of tokens seperated by separator.
  745.  The index starts at 0, not 1, so be careful.
  746.  Here's a short example:
  747.    getToken("1,2,3,4,5", ",", 3);
  748.  Would return, 3. If the token you ask for doesn't exist, an 
  749.  empty string is returned.
  750.  
  751.  @ret             The token requested.
  752.  @param  str         The tokenenized string.
  753.  @param  separator   The separator to use.
  754.  @param  tokennum    The token to retreive.
  755. */
  756. extern string System.getToken(string str, string separator, int tokennum);
  757.  
  758. /**
  759.  sin()
  760.  
  761.  Takes an angle in radians and returns the ratio of two sides of a right triangle. 
  762.  The ratio is the length of the side opposite the angle divided by the length 
  763.  of the hypotenuse. The result range is from -1 to 1.
  764.  
  765.  Converting from degrees to radians can be done by multiplying degrees by PI/180.
  766.  
  767.  @ret       The sine value of the angle.
  768.  @param  value The angle for which you want to know the sine value.
  769. */
  770. extern double System.sin(double value);
  771.  
  772. /**
  773.  cos()
  774.  
  775.  Takes an angle in radians and returns the ratio of the two sides of a right triangle.
  776.  The ratio is the length of the side adjacent to the angle divided by the length of the
  777.  hypotenuse. The result is range is from -1 to 1.
  778.  
  779.  @ret       The cosine value of the angle.
  780.  @param  value The angle for which you want to know the cosine value.
  781. */
  782. extern double System.cos(double value);
  783.  
  784. /**
  785.  tan()
  786.  
  787.  Takes an angle in radians and returns the ratio between two sides of a right triangle.
  788.  The ratio is sin(x) divided by cos(x).
  789.  
  790.  @ret       The tangent value of the angle.
  791.  @param  value The angle for which you want to know the tangent value.
  792. */
  793. extern double System.tan(double value);
  794.  
  795. /**
  796.  asin()
  797.  
  798.  Takes a sine value ranging from -1 to 1 and returns the angle in radians.
  799.  The return value ranges from -PI/2 to +PI/2.
  800.  
  801.  @ret       The angle in radians.
  802.  @param  value The sine value for which you want to know the angle.
  803. */
  804. extern double System.asin(double value);
  805.  
  806. /**
  807.  acos()
  808.  
  809.  Takes a cosine value ranging from -1 to 1 and returns the angle in radians.
  810.  The return value ranges from -PI/2 to +PI/2.
  811.  
  812.  @ret       The angle in radians.
  813.  @param  value The cosine value for which you want to know the angle.
  814. */
  815. extern double System.acos(double value);
  816.  
  817. /**
  818.  atan()
  819.  
  820.  Takes an angle in radians and returns the ration between two sides of a right triangle.
  821.  The ratio is cos(x) divided by sin(x).
  822.  
  823.  @ret     The arc tangent value of the angle.
  824. */
  825. extern double System.atan(double value);
  826.  
  827. /**
  828.   atan2()
  829.   
  830.   @ret The arctangent of y/x.
  831. */
  832. extern double System.atan2(double y, double x);
  833.   
  834.  
  835. /**
  836.  pow()
  837.  
  838.  Elevate a number to the N'th power.
  839.  
  840.  @ret         The number
  841.  @param  value   The number you want to elevate to the N power.
  842.  @param  pvalue  The power to which you want to elevate the number.
  843. */
  844. extern double System.pow(double value, double pvalue);
  845.  
  846. /**
  847.  sqr()
  848.  
  849.  Get the square of a number.
  850.  
  851.  @ret       The number, squared.
  852.  @param  value The number for which you want the square value.
  853. */
  854. extern double System.sqr(double value);
  855.  
  856. /**
  857.  sqrt()
  858.  
  859.  Get the square root of a number.
  860.  
  861.  @ret       The square root of the number.
  862.  @param  value The number for which you want the square root value.
  863. */
  864. extern double System.sqrt(double value);
  865.  
  866. /**
  867.  random()
  868.  
  869.  Get a randomely generated number. The random number will not
  870.  be bigger than the max value indicated. Smallest value is 0.
  871.  
  872.  @ret     The random number.
  873.  @param  max The maximum value of the random number to return.
  874. */
  875. extern int System.random(int max);
  876.  
  877. /**
  878.  setPrivateString()
  879.  
  880.  Create a private config entry for your script, of String type.
  881.  
  882.  @param  section   The section for the entry.
  883.  @param  item      The item name for the entry.
  884.  @param  value     The value of the entry.
  885. */
  886. extern System.setPrivateString(string section, string item, string value);
  887.  
  888. /**
  889.  setPrivateInt()
  890.  
  891.  Create a private config entry for your script, of Int type.
  892.  
  893.  @param  section   The section for the entry.
  894.  @param  item      The item name for the entry.
  895.  @param  value     The value of the entry.
  896. */
  897. extern System.setPrivateInt(string section, string item, int value);
  898.  
  899. /**
  900.  getPrivateString()
  901.  
  902.  Read a private config entry of String type. Returns
  903.  the specified default value if the section and item isn't
  904.  found.  
  905.  
  906.  @ret           The value of the config entry.
  907.  @param  section   The section from which to read the entry.
  908.  @param  item      The name of the item to read.
  909.  @param  defvalue  The default value to return if no item is found.
  910. */
  911. extern String System.getPrivateString(String section, String item, String defvalue);
  912.  
  913. /**
  914.  getPrivateInt()
  915.  
  916.  Read a private config entry of Integer type. Returns
  917.  the specified default value if the section and item isn't
  918.  found.  
  919.  
  920.  @ret           The value of the config entry.
  921.  @param  section   The section from which to read the entry.
  922.  @param  item      The name of the item to read.
  923.  @param  defvalue  The defautl value to return if no item is found.
  924. */
  925. extern Int System.getPrivateInt(String section, String item, Int defvalue);
  926.  
  927. /**
  928.  setPublicString()
  929.  
  930.  Create a public config entry for your script, of String type.
  931.  
  932.  @param  item  The item name for the entry.
  933.  @param  value The value of the entry.
  934. */
  935. extern System.setPublicString(String item, String value);
  936.  
  937. /**
  938.  setPublicInt()
  939.  
  940.  Create a public config entry for your script, of Int type.
  941.  
  942.  @param  item  The item name of the entry.
  943.  @param  value The value of the entry.
  944. */
  945. extern System.setPublicInt(String item, Int value);
  946.  
  947. /**
  948.  getPublicString()
  949.  
  950.  Read a public config entry of String type. Returns 
  951.  the specified default value if the item isn't found.
  952.  
  953.  @ret           The value of the config entry.
  954.  @param  item      The item name to read.
  955.  @param  defvalue  The default value to return if no item is found.
  956. */
  957. extern String System.getPublicString(String item, String defvalue);
  958.  
  959. /**
  960.  getPublicInt()
  961.  
  962.  Read a public config entry of Integer type. Returns
  963.  the specified default value if the item isn't found.
  964.  
  965.  @ret           The value of the config entry.
  966.  @param  item      The item name to read.
  967.  @param  defvalue  The default value to return if no item is found.
  968. */
  969. extern Int System.getPublicInt(String item, Int defvalue);
  970.  
  971. /**
  972.  getParam()
  973.  
  974.  Get the parameters with which the script is called.
  975.  This is the 'param="..."' attribute in the <script ...>
  976.  skin XML tag.
  977.  
  978.  @ret The parameter for the script.
  979. */
  980. extern String System.getParam();
  981.  
  982. /**
  983.  getScriptGroup()
  984.  
  985.  Get the group in which the script is instantiated. Returns
  986.  Null if it's not instantiated in a group.
  987.  
  988.  @ret 
  989. */
  990. extern Group System.getScriptGroup();
  991.  
  992. /**
  993.  getViewPortWidth()
  994.  
  995.  Get the user's screen width in pixels.
  996.  
  997.  @ret The width of the user's screen.
  998. */
  999. extern Int System.getViewportWidth();
  1000.  
  1001. /**
  1002.  getViewPortHeight()
  1003.  
  1004.  Get the user's screen height in pixels.
  1005.  
  1006.  @ret The height of the user's screen.
  1007. */
  1008. extern Int System.getViewportHeight();
  1009.  
  1010. extern Int System.getViewportLeft();
  1011. extern Int System.getViewportTop();
  1012.  
  1013. /**
  1014.  debugString()
  1015.  
  1016.  Send a debug message to the Wasabi Console.
  1017.  The severity ranges from 0 (not serious) to 9 (very serious).
  1018.  
  1019.  @param  str       The debug message.
  1020.  @param  severity  The severity of the error.
  1021. */
  1022. extern System.debugString(String str, Int severity);
  1023.  
  1024. /**
  1025.  ddeSend()
  1026.  
  1027.  Send a DDE message to an application. The minimum
  1028.  interval between messages is specified in milliseconds.
  1029.  Here's an example:
  1030.  
  1031.  ddeSend("mIRC", "/msg #channel I'm using Winamp3", 300);
  1032.  
  1033.  @param  application   The DDE server name of the application.
  1034.  @param  command       The command to send.
  1035.  @param  mininterval   The minimum interval to respect between messages (in ms).
  1036. */
  1037. extern System.ddeSend(String application, String command, Int mininterval);
  1038.  
  1039. /**
  1040.  onLookForComponent()
  1041.  
  1042.  Hookable. Event happens when the component with the
  1043.  specified GUID is going to be shown. Don't forget
  1044.  to return the component when you're done doing what
  1045.  you want to do (example: animate something).
  1046.  
  1047.  @ret       The component requested.
  1048.  @param  guid  The requested components GUID.
  1049.  
  1050. */
  1051. extern Component System.onLookForComponent(String guid);
  1052.  
  1053. /**
  1054.  getCurAppLeft()
  1055.  
  1056.  Get the applications current left coordinate in the screen,
  1057.  using the screen coordinate system.
  1058.  
  1059.  @ret The left coordinate of the application.
  1060. */
  1061. extern Int System.getCurAppLeft();
  1062.  
  1063. /**
  1064.  getCurAppTop()
  1065.  
  1066.  Get the applications current top coordinate in the screen,
  1067.  using the screen coordinate system.
  1068.  
  1069.  @ret The top coordinate of the application.
  1070. */
  1071. extern Int System.getCurAppTop();
  1072.  
  1073. /**
  1074.  getCurAppWidth()
  1075.  
  1076.  Get the applications current window width, in pixels.
  1077.  
  1078.  @ret The width of the application window.
  1079. */
  1080. extern Int System.getCurAppWidth();
  1081.  
  1082. /**
  1083.  getCurAppHeight()
  1084.  
  1085.  Get the applications current window height, in pixels.
  1086.  
  1087.  @ret The height of the application window.
  1088. */
  1089. extern Int System.getCurAppHeight();
  1090.  
  1091. /**
  1092.  isAppActive()
  1093.  
  1094.  Get the current status of the application. If it's active,
  1095.  it means the application has focus. True is active, false is
  1096.  inactive.
  1097.  
  1098.  @ret The application's status.
  1099. */
  1100. extern Boolean System.isAppActive();
  1101.  
  1102. /**
  1103.  getSkinName()
  1104.  
  1105.  Get the skin name for the loaded skin.
  1106.  
  1107.  @ret The skin's name.
  1108. */
  1109. extern String System.getSkinName();
  1110.  
  1111. /**
  1112.  getMainBrowser()
  1113.  
  1114.  Get a reference to the main browser object.
  1115.  This is the browser object that's defined with
  1116.  mainmb="1" in the skin XML.
  1117.  
  1118.  @ret A reference to the main browser object.
  1119. */
  1120. extern Browser System.getMainBrowser();
  1121. extern System.popMainBrowser();
  1122. extern System.navigateUrl(String url); 
  1123.  
  1124. /**
  1125.  isObjectValid()
  1126.  
  1127.  Verifies if an object is valid. You can also verify
  1128.  this using the Null object. True means the object is valid,
  1129.  false means it isn't.
  1130.  
  1131.  @ret   The validity of the object.
  1132.  @param  o The object you want to verify.
  1133. */
  1134. extern Boolean System.isObjectValid(Object o);
  1135.  
  1136. /**
  1137.  integer()
  1138.  
  1139.  Takes a Double and returns the closest integer representation.
  1140.  
  1141.  @ret   The integer representation of the double.
  1142.  @param  d The double for which you want an integer representation.
  1143. */
  1144. extern Int System.integer(Double d);
  1145.  
  1146. /**
  1147.  getTimeOfDay()
  1148.  
  1149.  Read the current time of the day. Returns a number that's
  1150.  the number of milliseconds since the start of the day (0:00).
  1151.  
  1152.  @ret The number of milliseconds since midnight.
  1153. */
  1154. extern Int System.getTimeOfDay();
  1155.  
  1156. /**
  1157.  setMenuTransparency()
  1158.  
  1159.  Set the menu's transparency value (alpha blending). Ranges 
  1160.  from 0 to 255. 0 being totally transparent and 255 being 
  1161.  totally opaque.
  1162.  
  1163.  @param alphavalue   The transparency value to set.
  1164. */
  1165. extern System.setMenuTransparency(int alphavalue);
  1166.  
  1167. extern Boolean System.onGetCancelComponent(String guid, boolean goingvisible);
  1168.  
  1169. #define STATUS_PAUSED -1
  1170. #define STATUS_STOPPED 0
  1171. #define STATUS_PLAYING 1
  1172.  
  1173. /**
  1174.  getStatus()
  1175.  
  1176.  returns the status of the main player core.
  1177.  
  1178.  @ret STATUS_PAUSED (-1) if paused, STATUS_STOPPED (0) if stopped, STATUS_PLAYING (1) if playing.
  1179. */
  1180. extern Int System.getStatus();
  1181.  
  1182. #define VK_SHIFT   16
  1183. #define VK_CONTROL 17
  1184. #define VK_ALT     18
  1185.  
  1186. /**
  1187.  Int isKeyDown(int vk_code)
  1188.  
  1189.  Checks if a virtual key (like VK_CONTROL, VK_SHIFT, VK_ALT) is pressed.
  1190.  
  1191.  @ret 1 if key is pressed, 0 if not.
  1192. */
  1193.  
  1194. extern Int System.isKeyDown(int vk_code);
  1195.  
  1196. /**
  1197.  setClipboardText(String text)
  1198.  
  1199.  Sets the given text to the clipboard.
  1200. */
  1201.  
  1202. extern System.setClipboardText(String _text);
  1203.  
  1204. /**
  1205.  String Chr(Int charnum)
  1206.  
  1207.  Returns a string the ascii char.
  1208. */
  1209.  
  1210. extern String System.Chr(Int charnum);
  1211.  
  1212.  
  1213. //*****************************************************************************
  1214. // Container CLASS
  1215. //*****************************************************************************
  1216. /**
  1217.  Container Class.
  1218.  
  1219.  @short    The container class enables you to control current containers and also create them.
  1220.  @author   Nullsoft Inc.
  1221.  @ver  1.0
  1222. */
  1223.  
  1224. /**
  1225.  onSwitchToLayout()
  1226.  
  1227.  Hookable. Event happens when a container is going to switch 
  1228.  from the currently active layout to another layout (newlayout).
  1229.  
  1230.  @param newlayout  The new layout that will be used.
  1231. */
  1232. extern Container.onSwitchToLayout(Layout newlayout);
  1233.  
  1234. /**
  1235.  onHideLayout()
  1236.  
  1237.  Hookable. Event happens when a container is about to hide
  1238.  the currently active layout (_layout).
  1239.  
  1240.  @param  _layout The layout that's going to be hidden.
  1241. */
  1242. extern Container.onHideLayout(Layout _layout);
  1243.  
  1244. /**
  1245.  onShowLayout()
  1246.  
  1247.  Hookable. Event happens when a container is about to
  1248.  show a layout (_layout).
  1249.  
  1250.  @param  _layout The layout about to be shown
  1251. */
  1252. extern Container.onShowLayout(Layout _layout);
  1253.  
  1254. /**
  1255.  getLayout()
  1256.  
  1257.  Get the layout associated with the an id.
  1258.  This corresponds to the "id=..." attribute in
  1259.  the XML tag <layout .. />.
  1260.  
  1261.  @ret             The layout associated with the id.
  1262.  @param  layout_id   The id of the layout you wish to retrieve.
  1263. */
  1264. extern Layout Container.getLayout(String layout_id);
  1265.  
  1266. /**
  1267.  getNumLayouts()
  1268.  
  1269.  Get the number of layouts contained in the
  1270.  container.
  1271.  
  1272.  @ret       The number of layouts.
  1273. */
  1274. extern Int Container.getNumLayouts();
  1275.  
  1276. /**
  1277.  enumLayout()
  1278.  
  1279.  Get the layout by it's index number.
  1280.  Range is from 0 to the value returned 
  1281.  by getNumLayouts() - 1.
  1282.  
  1283.  @ret       The layout.
  1284.  @param  num   The index number of the layout you want.
  1285. */
  1286. extern Layout Container.enumLayout(Int num);
  1287.  
  1288. /**
  1289.  switchToLayout()
  1290.  
  1291.  Switch to a perticular layout by using the
  1292.  desired layout's id. This corresponds to the
  1293.  "id=..." attribute in the XML tag <layout .. />.
  1294.  
  1295.  @param  layout_id   The id of the layout to which you want to switch.
  1296. */
  1297. extern Container.switchToLayout(Layout layout_id);
  1298.  
  1299. /**
  1300.  show()
  1301.  
  1302.  Trigger the show event.
  1303. */
  1304. extern Container.show();
  1305.  
  1306. /**
  1307.  hide()
  1308.  
  1309.  Trigger the hide event.
  1310. */
  1311. extern Container.hide();
  1312.  
  1313. /**
  1314.  toggle()
  1315.  
  1316.  Toggle the containers state between Shown / Hidden.
  1317. */
  1318. extern Container.toggle();
  1319.  
  1320. /**
  1321.  isDynamic()
  1322.  
  1323.  Tells you if the current container is a dynamic 
  1324.  container or not. Values are true (1) for dynamic
  1325.  false (0) for static.
  1326.  
  1327.  @ret The container type (dynamic or static).
  1328. */
  1329. extern Int Container.isDynamic();
  1330.  
  1331. extern Container.setName(String name);
  1332.  
  1333. //*****************************************************************************
  1334. // WAC CLASS
  1335. //*****************************************************************************
  1336. /**
  1337.  WAC Class.
  1338.  
  1339.  @short    .
  1340.  @author   Nullsoft Inc.
  1341.  @ver  1.0
  1342. */
  1343.  
  1344. /**
  1345.  getGuid()
  1346.  
  1347.  Get the GUID of the WAC.
  1348.  
  1349.  @ret The GUID of the WAC.
  1350. */
  1351. extern String Wac.getGuid();
  1352.  
  1353. /**
  1354.  getName()
  1355.  
  1356.  Get the name of the WAC.
  1357.  
  1358.  @ret The name of the WAC.
  1359. */
  1360. extern String Wac.getName();
  1361.  
  1362. /**
  1363.  sendCommand()
  1364.  
  1365.  
  1366. */
  1367. extern Int Wac.sendCommand(String cmd, Int param1, Int param2, String param3);
  1368.  
  1369. /**
  1370.  show()
  1371.  
  1372.  Trigger the show event.
  1373. */
  1374. extern Wac.show();
  1375.  
  1376. /**
  1377.  hide()
  1378.  
  1379.  Trigger the hide event.
  1380. */
  1381. extern Wac.hide();
  1382.  
  1383. /**
  1384.  isVisible()
  1385.  
  1386.  
  1387. */
  1388. extern Boolean Wac.isVisible();
  1389.  
  1390. /**
  1391.  onNotify()
  1392.  
  1393.  
  1394. */
  1395. extern Wac.onNotify(String notifstr, Int a, Int b);
  1396.  
  1397. /**
  1398.  onShow()
  1399.  
  1400.  Hookable. The event happens when the WAC is about
  1401.  to be shown.
  1402. */
  1403. extern Wac.onShow();
  1404.  
  1405. /**
  1406.  onHide()
  1407.  
  1408.  Hookable. The event happens when the WAC is about
  1409.  to be hidden.
  1410. */
  1411. extern Wac.onHide();
  1412.  
  1413. /**
  1414.  setStatusBar()
  1415.  
  1416.  Set the status bars visibility.
  1417.  Sending true will make the status bar 
  1418.  visible while sending false will hide
  1419.  it.
  1420.  
  1421.  @param  onoff   The status bars visibility.
  1422. */
  1423. extern Wac.setStatusBar(Boolean onoff);
  1424.  
  1425. /**
  1426.  getStatusBar()
  1427.  
  1428.  Get the status bars visibility. True means
  1429.  it's visible, false means it's hidden.
  1430.  
  1431.  @ret The status bars visibility.
  1432. */
  1433. extern Boolean Wac.getStatusBar();
  1434.  
  1435. //*****************************************************************************
  1436. // GUIOBJECT CLASS
  1437. //*****************************************************************************
  1438. /**
  1439.  GuiObject Class.
  1440.  
  1441.  @short    .
  1442.  @author   Nullsoft Inc.
  1443.  @ver  1.0
  1444. */
  1445.  
  1446. /**
  1447.  show()
  1448.  
  1449.  Trigger the show event.
  1450. */
  1451. extern GuiObject.show();
  1452.  
  1453. /**
  1454.  hide()
  1455.  
  1456.  Trigger the hide event.
  1457. */ 
  1458. extern GuiObject.hide();
  1459.  
  1460. /**
  1461.  isVisible()
  1462.  
  1463.  Get the visibility status of the object.
  1464.  False means it's hidden, true means it's
  1465.  visible.
  1466.  
  1467.  @ret The visibility status of the object.
  1468. */
  1469. extern int GuiObject.isVisible();
  1470.  
  1471. /**
  1472.  onSetVisible()
  1473.  
  1474.  Hookable. Event happens when the visibility
  1475.  status of the object is changed from visible to
  1476.  hidden or vice-versa.
  1477.  
  1478.  @param  onoff   The objects visibility status.
  1479. */
  1480. extern GuiObject.onSetVisible(Boolean onoff);
  1481.  
  1482. /**
  1483.  setAlpha()
  1484.  
  1485.  Set the alphablending value of the object.
  1486.  Value ranges from 0 (fully transparent) to 
  1487.  255 (fully opaque).
  1488.  
  1489.  @param  alpha   The alpha value.
  1490. */
  1491. extern GuiObject.setAlpha(int alpha);
  1492.  
  1493. /**
  1494.  getAlpha()
  1495.  
  1496.  Get the current alphablending value of
  1497.  the object. Value ranges from 0 (fully
  1498.  transparent) to 255 (fully opaque).
  1499.  
  1500.  @ret The alpha value.
  1501. */
  1502. extern int GuiObject.getAlpha();
  1503.  
  1504. /**
  1505.  onLeftButtonUp()
  1506.  
  1507.  Hookable. Event happens when the left mouse
  1508.  button was previously down and is now up.
  1509.  
  1510.  @param  x   The X position in the screen where the cursor was when the event was triggered.
  1511.  @param  y   The Y position in the screen where the cursor was when the event was triggered.
  1512. */
  1513. extern GuiObject.onLeftButtonUp(int x, int y);
  1514.  
  1515. /**
  1516.  onLeftButtonDown()
  1517.  
  1518.  Hookable. Event happens when the left mouse button
  1519.  is pressed.
  1520.  
  1521.  @param  x   The X position in the screen where the cursor was when the event was triggered.
  1522.  @param  y   The Y position in the screen where the cursor was when the event was triggered.
  1523. */
  1524. extern GuiObject.onLeftButtonDown(int x, int y);
  1525.  
  1526. /**
  1527.  onRightButtonUp()
  1528.  
  1529.  Hookable. Event happens when the right mouse button
  1530.  was previously down and is now up.
  1531.  
  1532.  @param  x   The X position in the screen where the cursor was when the event was triggered.
  1533.  @param  y   The Y position in the screen where the cursor was when the event was triggered.
  1534. */
  1535. extern GuiObject.onRightButtonUp(int x, int y);
  1536.  
  1537. /**
  1538.  onRightButtonDown()
  1539.  
  1540.  Hookable. Event happens when the right mouse button
  1541.  is pressed.
  1542.  
  1543.  @param  x   The X position in the screen where the cursor was when the event was triggered.
  1544.  @param  y   The Y position in the screen where the cursor was when the event was triggered.
  1545. */
  1546. extern GuiObject.onRightButtonDown(int x, int y);
  1547.  
  1548. /**
  1549.  onRightButtonDlbClk()
  1550.  
  1551.  Hookable. Event happens when the right mouse button
  1552.  is double clicked.
  1553.  
  1554.  @param  x   The X position in the screen where the cursor was when the event was triggered.
  1555.  @param  y   The Y position in the screen where the cursor was when the event was triggered.
  1556. */
  1557. extern GuiObject.onRightButtonDblClk(int x, int y);
  1558.  
  1559. /**
  1560.  onLeftButtonDlbClk()
  1561.  
  1562.  Hookable. Event happens when the left mouse button
  1563.  is double clicked.
  1564.  
  1565.  @param  x   The X position in the screen where the cursor was when the event was triggered.
  1566.  @param  y   The Y position in the screen where the cursor was when the event was triggered.
  1567. */
  1568. extern GuiObject.onLeftButtonDblClk(int x, int y);
  1569.  
  1570. /**
  1571.  onMouseMove()
  1572.  
  1573.  Hookable. Event happens when the mouse is moved.
  1574.  
  1575.  @param  x   The new X screen position of the mouse.
  1576.  @param  y   The new Y screen position of the mouse.
  1577. */
  1578. extern GuiObject.onMouseMove(int x, int y);
  1579.  
  1580. /**
  1581.  onEnterArea()
  1582.  
  1583.  Hookable. Event happens when the mouse
  1584.  enters the objects area.
  1585. */
  1586. extern GuiObject.onEnterArea();
  1587.  
  1588. /**
  1589.  onLeaveArea()
  1590.  
  1591.  Hookable. Event happens when the mouse
  1592.  leaves the objects area.
  1593. */
  1594. extern GuiObject.onLeaveArea();
  1595.  
  1596. /**
  1597.  setEnabled()
  1598. */
  1599. extern GuiObject.setEnabled(boolean onoff);
  1600.  
  1601. /**
  1602.  getEnabled()
  1603. */
  1604. extern boolean GuiObject.getEnabled();
  1605.  
  1606. /**
  1607.  onEnabled()
  1608. */
  1609. extern GuiObject.onEnable(boolean onoff);
  1610.  
  1611. /**
  1612.  resize()
  1613.  
  1614.  Resize the object to the desired size and position.
  1615.  
  1616.  @param  x   The X position where to anchor the object before resize.
  1617.  @param  y   The Y position where to anchor the object before resize.
  1618.  @param  w   The width you wish the object to have.
  1619.  @param  h   The height you wish the object to have.
  1620. */
  1621. extern GuiObject.resize(int x, int y, int w, int h);
  1622.  
  1623. /**
  1624.  onResize()
  1625.  
  1626.  Hookable. Event happens when the object is about
  1627.  to be resized.
  1628.  
  1629.  @param  x   The X position where the object will be anchored.
  1630.  @param  y   The Y position where the object will be anchored.
  1631.  @param  w   The width the object will have.
  1632.  @param  h   The height the object will have.
  1633. */
  1634. extern GuiObject.onResize(int x, int y, int w, int h);
  1635.  
  1636. /**
  1637.  isMouseOver()
  1638.  
  1639. */
  1640. extern boolean GuiObject.isMouseOver(int x, int y);
  1641.  
  1642. /**
  1643.  getLeft()
  1644.  
  1645.  Get the X position, in the screen, of the 
  1646.  left edge of the object.
  1647.  
  1648.  @ret The left edge's position (in screen coordinates).
  1649. */
  1650. extern int GuiObject.getLeft();
  1651.  
  1652. /**
  1653.  getTop()
  1654.  
  1655.  Get the Y position, in the screen, of the
  1656.  top edge of the object.
  1657.  
  1658.  @ret The top edge's position (in screen coordinates).
  1659. */
  1660. extern int GuiObject.getTop();
  1661.  
  1662. /**
  1663.  getWidth()
  1664.  
  1665.  Get the width of the object, in pixels.
  1666.  
  1667.  @ret The width of the object.
  1668. */
  1669. extern int GuiObject.getWidth();
  1670.  
  1671. /**
  1672.  getHeight()
  1673.  
  1674.  Get the height of the object, in pixels.
  1675.  
  1676.  @ret The height of the object.
  1677. */
  1678. extern int GuiObject.getHeight();
  1679.  
  1680. /**
  1681.  setTargetX()
  1682.  
  1683.  Set a target X position, in the screen, for
  1684.  the object.
  1685.  
  1686.  @param  x   The target X position of the object.
  1687. */
  1688. extern GuiObject.setTargetX(int x);
  1689.  
  1690. /**
  1691.  setTargetY()
  1692.  
  1693.  Set a target Y position, in the screen, for
  1694.  the object.
  1695.  
  1696.  @param  y   The target Y position of the object.
  1697. */
  1698. extern GuiObject.setTargetY(int y);
  1699.  
  1700. /**
  1701.  setTargetW()
  1702.  
  1703.  Set a target width, in pixels, for the object.
  1704.  
  1705.  @param  w   The target width of the object.
  1706. */
  1707. extern GuiObject.setTargetW(int w);
  1708.  
  1709. /**
  1710.  setTargetH()
  1711.  
  1712.  Set a target height, in pixels, for the object.
  1713.  
  1714.  @param  h   The target height of the object.
  1715. */
  1716. extern GuiObject.setTargetH(int r);
  1717.  
  1718. /**
  1719.  setTargetA()
  1720.  
  1721.  Set a target alphablending value for the object.
  1722.  The value range is from 0 (totally transparent)
  1723.  to 255 (totally opaque).
  1724.  
  1725.  @param  alpha   The target alpha value.
  1726. */
  1727. extern GuiObject.setTargetA(int alpha);
  1728.  
  1729. /**
  1730.  setTargetSpeed()
  1731.  
  1732.  The amount of time in which you wish to arrive at
  1733.  the target(s) previously set, in seconds.
  1734.  
  1735.  @param  insecond    The number of seconds in which to reach the target.
  1736. */
  1737. extern GuiObject.setTargetSpeed(float insecond);
  1738.  
  1739. /**
  1740.  gotoTarget()
  1741.  
  1742.  Begin transition to previously set target.
  1743. */
  1744. extern GuiObject.gotoTarget();
  1745.  
  1746. /**
  1747.  onTargetReached()
  1748.  
  1749.  Hookable. Event happens when the object has reached
  1750.  it's previously set target.
  1751. */
  1752. extern GuiObject.onTargetReached();
  1753.  
  1754. extern GuiObject.cancelTarget();
  1755. /**
  1756.  isGoingToTarget() 
  1757.  
  1758. */
  1759. extern boolean GuiObject.isGoingToTarget();
  1760. extern GuiObject.setXmlParam(String param, String value);
  1761. extern GuiObject.init(Group parent);
  1762. extern GuiObject.bringToFront();
  1763. extern GuiObject.bringToBack();
  1764. extern GuiObject.bringAbove(GuiObject guiobj);
  1765. extern GuiObject.bringBelow(GuiObject guiobj);
  1766. extern Int GuiObject.getGuiX();
  1767. extern Int GuiObject.getGuiY();
  1768. extern Int GuiObject.getGuiW();
  1769. extern Int GuiObject.getGuiH();
  1770. extern Int GuiObject.getGuiRelatX();
  1771. extern Int GuiObject.getGuiRelatY();
  1772. extern Int GuiObject.getGuiRelatW();
  1773. extern Int GuiObject.getGuiRelatH();
  1774. extern Boolean GuiObject.isActive();
  1775. extern Group GuiObject.getParent();
  1776. extern Layout GuiObject.getParentLayout();
  1777. extern int GuiObject.runModal();
  1778. extern GuiObject.endModal(int retcode);
  1779. extern GuiObject GuiObject.findObject(String id);
  1780. extern String GuiObject.getName();
  1781. extern int GuiObject.clientToScreenX(int x);
  1782. extern int GuiObject.clientToScreenY(int y);
  1783. extern int GuiObject.screenToClientX(int x);
  1784. extern int GuiObject.screenToClientY(int y);
  1785. extern int GuiObject.getAutoWidth();
  1786. extern int GuiObject.getAutoHeight();
  1787.  
  1788.  
  1789.   // Group
  1790.  
  1791. extern GuiObject Group.getObject(String object_id);
  1792. extern Int Group.getNumObjects();
  1793. extern GuiObject Group.enumObject(Int num);
  1794. extern Group.onCreateObject(GuiObject newobj);
  1795. extern Int Group.getMousePosX();
  1796. extern Int Group.getMousePosY();
  1797. extern Boolean Group.isLayout();
  1798.  
  1799.  
  1800.   // Layout
  1801.  
  1802. extern Layout.onDock();
  1803. extern Layout.onUndock();
  1804. extern Layout.onScale(Double newscalevalue);
  1805. extern Double Layout.getScale();
  1806. extern Layout.setScale(Double scalevalue);
  1807. extern Layout.setDesktopAlpha(Boolean onoff);
  1808. extern Container Layout.getContainer();
  1809. extern Layout.center();
  1810.  
  1811.   // List
  1812.  
  1813. extern List.addItem(Any _object);
  1814. extern List.removeItem(int pos);
  1815. extern Any List.enumItem(int pos);
  1816. extern Int List.findItem(Any _object);
  1817. extern int List.getNumItems();
  1818. extern List.removeAll();
  1819.  
  1820.   // Map
  1821.  
  1822. extern Int Map.getValue(int x, int y);
  1823. extern Boolean Map.inRegion(int x, int y);
  1824. extern Map.loadMap(String bitmapid);
  1825. extern Int Map.getWidth();
  1826. extern Int Map.getHeight();
  1827. extern Region Map.getRegion();
  1828.  
  1829.   // PopupMenu
  1830.  
  1831. extern PopupMenu.addSubMenu(PopupMenu submenu, String submenutext);
  1832. extern PopupMenu.addCommand(String cmdtxt, Int cmd_id, Boolean checked, Boolean disabled);
  1833. extern PopupMenu.addSeparator();
  1834. extern Int PopupMenu.popAtXY(int x, int y);
  1835. extern Int PopupMenu.popAtMouse();
  1836. extern Int PopupMenu.getNumCommands();
  1837. extern PopupMenu.checkCommand(int cmd_id, boolean check);
  1838. extern PopupMenu.disableCommand(int cmd_id, boolean disable);
  1839.  
  1840.   // Region
  1841.  
  1842. extern Region.add(Region reg);
  1843. extern Region.sub(Region reg);
  1844. extern Region.offset(int x, int y);
  1845. extern Region.stretch(double r);
  1846. extern Region.copy(Region reg);
  1847. extern Region.loadFromMap(Map regionmap, Int threshold, Boolean reversed);
  1848. extern Region.loadFromBitmap(String bitmapid);
  1849. extern Int Region.getBoundingBoxX();
  1850. extern Int Region.getBoundingBoxY();
  1851. extern Int Region.getBoundingBoxW();
  1852. extern Int Region.getBoundingBoxH();
  1853.  
  1854.   // Timer
  1855.  
  1856. extern Timer.onTimer();
  1857. extern Timer.setDelay(int millisec);
  1858. extern Int Timer.getDelay();
  1859. extern Timer.start();
  1860. extern Timer.stop();
  1861. extern Timer.isRunning();
  1862.  
  1863.   // Component
  1864.  
  1865. extern Component.onGetWac(Wac wacobj);
  1866. extern Component.onGiveUpWac(Wac wacobj);
  1867. extern String Component.getGuid();
  1868. extern Wac Component.getWac();
  1869. extern Component.setRegionFromMap(Map regionmap, Int threshold, Boolean reverse);
  1870. extern Component.setRegion(Region reg);
  1871. extern Component.setAcceptWac(Boolean onoff);
  1872.  
  1873.   // Edit
  1874.  
  1875. extern Edit.onEnter();
  1876. extern Edit.onAbort();
  1877. extern Edit.onIdleEditUpdate();
  1878. extern Edit.onEditUpdate();
  1879. extern Edit.setText(String txt);
  1880. extern Edit.setAutoEnter(boolean onoff);
  1881. extern String Edit.getText();
  1882.  
  1883.   // Slider
  1884.  
  1885. extern Slider.onSetPosition(int newpos);
  1886. extern Slider.onPostedPosition(int newpos);
  1887. extern Slider.onSetFinalPosition(int pos);
  1888. extern Slider.setPosition(int pos);
  1889. extern Int Slider.getPosition();
  1890. extern Slider.lock(); // locks descendant core collbacks
  1891. extern Slider.unlock(); // unloads them
  1892.  
  1893.  
  1894.   // Vis
  1895.  
  1896. extern Vis.onFrame();
  1897. extern Vis.setRealtime(Boolean onoff);
  1898. extern Boolean Vis.getRealtime();
  1899. extern Int Vis.getMode();
  1900. extern Vis.setMode(Int mode);
  1901. extern Vis.nextMode();
  1902.  
  1903.   // Browser
  1904.  
  1905. extern Browser.navigateUrl(String url);
  1906. extern Browser.back();
  1907. extern Browser.forward();
  1908. extern Browser.stop();
  1909. extern Browser.refresh();
  1910. extern Browser.home();
  1911. extern Browser.setTargetName(String targetname);
  1912. extern Boolean Browser.onBeforeNavigate(String url, Int flags, String targetframename); // return TRUE to cancel navigation
  1913. extern Browser.onDocumentComplete(String url);
  1914.  
  1915.  
  1916.   // Text
  1917.  
  1918. extern Text.setText(String txt);
  1919. extern String Text.getText();
  1920. extern int Text.getTextWidth();
  1921. extern Text.onTextChanged(String newtxt);
  1922.  
  1923.   // Layer
  1924.  
  1925. extern Layer.onBeginResize(int x, int y, int w, int h);
  1926. extern Layer.onEndResize(int x, int y, int w, int h);
  1927. extern Layer.fx_onInit();
  1928. extern Layer.fx_onFrame();
  1929. extern Double Layer.fx_onGetPixelR(double r, double d, double x, double y);
  1930. extern Double Layer.fx_onGetPixelD(double r, double d, double x, double y);
  1931. extern Double Layer.fx_onGetPixelX(double r, double d, double x, double y);
  1932. extern Double Layer.fx_onGetPixelY(double r, double d, double x, double y);
  1933. extern Double Layer.fx_onGetPixelA(double r, double d, double x, double y);
  1934. extern Layer.setRegionFromMap(Map regionmap, int threshold, boolean reverse);
  1935. extern Layer.setRegion(Region reg);
  1936. extern Layer.fx_setEnabled(boolean onoff);
  1937. extern Boolean Layer.fx_getEnabled();
  1938. extern Layer.fx_setWrap(Boolean onoff);
  1939. extern Boolean Layer.fx_getWrap();
  1940. extern Layer.fx_setRect(Boolean onoff);
  1941. extern Boolean Layer.fx_getRect();
  1942. extern Layer.fx_setBgFx(Boolean onoff);
  1943. extern Boolean Layer.fx_getBgFx();
  1944. extern Layer.fx_setClear(Boolean onoff);
  1945. extern Boolean Layer.fx_getClear();
  1946. extern Layer.fx_setSpeed(Int msperframe);
  1947. extern Int Layer.fx_getSpeed();
  1948. extern Layer.fx_setRealtime(Boolean onoff);
  1949. extern Boolean Layer.fx_getRealtime();
  1950. extern Layer.fx_setLocalized(Boolean onoff);
  1951. extern Boolean Layer.fx_getLocalized();
  1952. extern Layer.fx_setBilinear(Boolean onoff);
  1953. extern Boolean Layer.fx_getBilinear();
  1954. extern Layer.fx_setAlphaMode(Boolean onoff);
  1955. extern Boolean Layer.fx_getAlphaMode();
  1956. extern Layer.fx_setGridSize(Int x, Int y);
  1957. extern Layer.fx_update();
  1958. extern Layer.fx_restart();
  1959.  
  1960.   // Button
  1961.  
  1962. extern Button.onActivate(int activated);
  1963. extern Button.onLeftClick();
  1964. extern Button.onRightClick();
  1965. extern Button.setActivated(Boolean onoff);
  1966. extern Button.setActivatedNoCallback(Boolean onoff);
  1967. extern Boolean Button.getActivated();
  1968. extern Button.leftClick();
  1969. extern Button.rightClick();
  1970.  
  1971.   // AnimatedLayer
  1972.  
  1973. extern AnimatedLayer.onPlay();
  1974. extern AnimatedLayer.onPause();
  1975. extern AnimatedLayer.onResume();
  1976. extern AnimatedLayer.onStop();
  1977. extern AnimatedLayer.onFrame(Int framenum);
  1978. extern AnimatedLayer.setSpeed(Int msperframe);
  1979. extern AnimatedLayer.gotoFrame(int framenum);
  1980. extern AnimatedLayer.setStartFrame(Int framenum);
  1981. extern AnimatedLayer.setEndFrame(int framenum);
  1982. extern AnimatedLayer.setAutoReplay(Boolean onoff);
  1983. extern AnimatedLayer.play();
  1984. extern AnimatedLayer.stop();
  1985. extern AnimatedLayer.pause();
  1986. extern Boolean AnimatedLayer.isPlaying();
  1987. extern Boolean AnimatedLayer.isPaused();
  1988. extern Boolean AnimatedLayer.isStopped();
  1989. extern Int AnimatedLayer.getStartFrame();
  1990. extern Int AnimatedLayer.getEndFrame();
  1991. extern Int AnimatedLayer.getLength();
  1992. extern Int AnimatedLayer.getDirection();
  1993. extern Boolean AnimatedLayer.getAutoReplay();
  1994. extern Int AnimatedLayer.getCurFrame();
  1995. extern AnimatedLayer.setRealtime(Boolean onoff);
  1996.  
  1997.   // ToggleButton
  1998.  
  1999. extern ToggleButton.onToggle(Boolean);
  2000.  
  2001.   // GroupList
  2002.  
  2003. extern Group GroupList.instantiate(String group_id, int num_groups);
  2004. extern Int GroupList.getNumItems();
  2005. extern Group GroupList.enumItem(int num);
  2006. extern GroupList.removeAll();
  2007. extern GroupList.scrollToPercent(Int percent);
  2008.  
  2009.   // CfgGroup
  2010.  
  2011. extern Int CfgGroup.cfgGetInt();
  2012. extern CfgGroup.cfgSetInt(Int intvalue);
  2013. extern String CfgGroup.cfgGetString();
  2014. extern Int CfgGroup.cfgGetFloat();
  2015. extern CfgGroup.cfgSetFloat(Float floatvalue);
  2016. extern CfgGroup.cfgSetString(String strvalue);
  2017. extern CfgGroup.onCfgChanged();
  2018. extern String CfgGroup.cfgGetGuid();
  2019. extern String CfgGroup.cfgGetName();
  2020.  
  2021.   // QueryList
  2022.  
  2023. extern Int QueryList.openTable(String table_guid);
  2024. extern Int QueryList.openSubtable(String column);
  2025. extern Int QueryList.runQuery(String query);
  2026. extern QueryList.hideAllColumns();
  2027. extern QueryList.setColumnVisible(String collumn, Boolean onoff);
  2028. extern QueryList.playSelection();
  2029. extern String QueryList.getPlayItem(int pos);
  2030. extern String QueryList.getItemText(int pos, int subpos);
  2031. extern QueryList.onItemSelect(int pos, Int onoff);
  2032. extern QueryList.setTopItem(String topitemtext);
  2033. extern QueryList.selectItem(Int pos, Int onoff);
  2034. extern Boolean QueryList.isItemSelected(Int pos);
  2035. extern Int QueryList.getNumItems();
  2036. extern QueryList.deselectAll();
  2037.  
  2038.   // MouseRedir
  2039.  
  2040. extern MouseRedir.setRedirection(GuiObject o);
  2041. extern GuiObject MouseRedir.getRedirection();
  2042. extern MouseRedir.setRegionFromMap(Map regionmap, Int threshold, Boolean reverse);
  2043. extern MouseRedir.setRegion(Region reg);
  2044.  
  2045.   // DropDownList
  2046.  
  2047. extern String DropDownList.getItemSelected();
  2048.  
  2049.   // LayoutStatus
  2050.  
  2051. extern LayoutStatus.callme(String str);
  2052.  
  2053. .CODE
  2054.  
  2055.