home *** CD-ROM | disk | FTP | other *** search
/ Joystick Magazine 2002 October / JOY141_CD2.iso / Data / Sharewares / Audio / s2alpha_install_020828.exe / 1d_file < prev    next >
Text (UTF-16)  |  2002-08-28  |  12KB  |  166 lines

  1. <translation>
  2.     <module name="mml">
  3.         <language name="English">
  4.             <section name="help">
  5.                 <section name="window">
  6.                     <item name="OnInit">
  7. Called after the window is created. - Usage: Window.OnInit();
  8.                     </item>
  9.  
  10.                     <item name="OnClick">
  11. Called when the window is clicked on. - Usage: Window.OnClick();
  12.                     </item>
  13.  
  14.                     <item name="OnDoubleClick">
  15. Called when the window is doubleclicked. - Usage: Window.OnDoubleClick();
  16.                     </item>
  17.  
  18.                     <item name="OnMouseOver">
  19. Called when the mouse is moved over the window. - Usage: Window.OnMouseOver();
  20.                     </item>
  21.  
  22.                     <item name="OnMouseExit">
  23. Called when the mouse is moved off of the window. - Usage: Window.OnMouseExit();
  24.                     </item>
  25.  
  26.                     <item name="OnMouseTopOver">
  27. Called when the mouse is moved directly over the window (With no other windows in between). - Usage: Window.OnMouseTopOver();
  28.                     </item>
  29.  
  30.                     <item name="OnMouseTopExit">
  31. Called when the mouse is no longer directly over the window (eg, maybe another window is above it). - Usage: Window.OnMouseTopExit();
  32.                     </item>
  33.  
  34.                     <item name="OnDestroy">
  35. Called before the window is destroyed. - Usage: Window.OnDestroy();
  36.                     </item>
  37.  
  38.                     <item name="OnIntro">
  39. Called when the intro animation is requested. - Usage: Window.OnIntro(time);
  40.        time            How long the animation should take, in milliseconds.
  41.                     </item>
  42.  
  43.                     <item name="OnExtro">
  44. Called when the extro animation is requested. - Usage: Window.OnExtro(time);
  45.        time            How long the animation should take, in milliseconds.
  46.                     </item>
  47.  
  48.                     <item name="OnEnable">
  49. Called when the window is enabled. - Usage: Window.OnEnable();
  50.                     </item>
  51.  
  52.                     <item name="OnDisable">
  53. Called when the window is disabled. - Usage: Window.OnDisable();
  54.                     </item>
  55.  
  56.                     <item name="OnLocationChange">
  57. Called when the window is moved. - Usage: Window.OnLocationChange();
  58.                     </item>
  59.  
  60.                     <item name="OnDockSlave">
  61. Called when the window is docked as a slave. - Usage: Window.OnDockSlave(dockpoint);
  62.        dockpoint       The name of the dockpoint we docked on
  63.                     </item>
  64.  
  65.                     <item name="OnDockMaster">
  66. Called when the window is docked as a master. - Usage: Window.OnDockMaster(dockpoint);
  67.        dockpoint       The name of the dockpoint we docked on
  68.                     </item>
  69.  
  70.                     <item name="OnUndockSlave">
  71. Called when the window is undocked as a slave. - Usage: Window.OnUndockSlave(dockpoint);
  72.        dockpoint       The name of the dockpoint we undocked from
  73.                     </item>
  74.  
  75.                     <item name="OnUndockMaster">
  76. Called when the window is undocked as a master. - Usage: Window.OnUndockMaster(dockpoint);
  77.        dockpoint       The name of the dockpoint we undocked from
  78.                     </item>
  79.  
  80.                     <item name="OnLeftButtonUp">
  81. Called when the left mouse button is released in this window. - Usage: Window.OnLeftButtonUp();
  82.                     </item>
  83.  
  84.                     <item name="OnRightButtonUp">
  85. Called when the right mouse button is released in this window. - Usage: Window.OnRightButtonUp();
  86.                     </item>
  87.  
  88.                     <item name="OnMiddleButtonUp">
  89. Called when the middle mouse button is released in this window. - Usage: Window.OnMiddleButtonUp();
  90.                     </item>
  91.  
  92.                     <item name="OnLeftButtonDown">
  93. Called when the left mouse button is pressed in this window. - Usage: Window.OnLeftButtonDown();
  94.                     </item>
  95.  
  96.                     <item name="OnRightButtonDown">
  97. Called when the right mouse button is pressed in this window. - Usage: Window.OnRightButtonDown();
  98.                     </item>
  99.  
  100.                     <item name="OnMiddleButtonDown">
  101. Called when the middle mouse button is pressed in this window. - Usage: Window.OnMiddleButtonDown();
  102.                     </item>
  103.                 </section>
  104.  
  105.                 <section name="spinbutton">
  106.                     <item name="OnPosQueryChange">
  107. Called to check whether the control's knob position may be changed. - Usage: Spinner.OnPosQueryChange();
  108.        Return value:   true to allow change, false to disallow it
  109.                     </item>
  110.  
  111.                     <item name="OnPosChange">
  112. Called when this control's knob position is changed. - Usage: Spinner.OnPosChange(int, real);
  113.        int             The new int position of the spinner
  114.        real            The new real position of the spinner
  115.                     </item>
  116.  
  117.                     <item name="OnPosFinalized">
  118. Called when this control's knob position is done being fiddled with (eg, when the user lets go of the mouse button). - Usage: Spinner.OnPosFinalized();
  119.                     </item>
  120.                 </section>
  121.  
  122.                 <section name="slider">
  123.                     <item name="OnPosQueryChange">
  124. Called to check whether the control's slider position may be changed. - Usage: Slider.OnPosQueryChange();
  125.        Return value:   true to allow change, false to disallow it
  126.                     </item>
  127.  
  128.                     <item name="OnPosChange">
  129. Called when this control's slider position is changed. - Usage: Slider.OnPosChange(position);
  130.        position        The new position, in an array {int, real}
  131.                     </item>
  132.  
  133.                     <item name="OnPosFinalized">
  134. Called when this control's slider position is done being fiddled with (eg, when the user lets go of the mouse button). - Usage: Slider.OnPosFinalized();
  135.                     </item>
  136.  
  137.                     <item name="OnHoverPosChange">
  138. Called when the mouse hovers over the slider, so that the hint may be updated. - Usage: Slider.OnHoverPosChange(position);
  139.        position        The position, in an array {int, real},the spinner would go to if the user clicked
  140.                     </item>
  141.                 </section>
  142.  
  143.                 <section name="picker">
  144.                     <item name="OnItemSelected">
  145. Called when an item is selected. - Usage: Picker.OnItemSelected(index);
  146.        index           Which item was selected
  147.                     </item>
  148.                 </section>
  149.  
  150.                 <section name="selectionlist">
  151.                     <item name="OnItemSelected">
  152. Called when an item is selected. - Usage: List.OnItemSelected(index);
  153.        index           Which item was selected
  154.                     </item>
  155.                 </section>
  156.  
  157.                 <section name="EditControl">
  158.                     <item name="OnEditSend">
  159. Called when return is pressed in an edit window. - Usage: (null).OnEditSend();
  160.                     </item>
  161.                 </section>
  162.             </section>
  163.         </language>
  164.     </module>
  165. </translation>
  166.