home *** CD-ROM | disk | FTP | other *** search
/ PC World 2005 April / PCWorld_2005-04_cd.bin / software / temacd / sonique / s2beta_103_install.exe / 24_file < prev    next >
Text (UTF-16)  |  2004-03-02  |  15KB  |  209 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="OnSizeChange">
  61. Called when the window is resized. - Usage: Window.OnSizeChange();
  62.                     </item>
  63.  
  64.                     <item name="OnDockSlave">
  65. Called when the window is docked as a slave. - Usage: Window.OnDockSlave(dockpoint);
  66.        dockpoint       The name of the dockpoint we docked on
  67.                     </item>
  68.  
  69.                     <item name="OnDockMaster">
  70. Called when the window is docked as a master. - Usage: Window.OnDockMaster(dockpoint);
  71.        dockpoint       The name of the dockpoint we docked on
  72.                     </item>
  73.  
  74.                     <item name="OnUndockSlave">
  75. Called when the window is undocked as a slave. - Usage: Window.OnUndockSlave(dockpoint);
  76.        dockpoint       The name of the dockpoint we undocked from
  77.                     </item>
  78.  
  79.                     <item name="OnUndockMaster">
  80. Called when the window is undocked as a master. - Usage: Window.OnUndockMaster(dockpoint);
  81.        dockpoint       The name of the dockpoint we undocked from
  82.                     </item>
  83.  
  84.                     <item name="OnLeftButtonUp">
  85. Called when the left mouse button is released in this window. - Usage: Window.OnLeftButtonUp();
  86.                     </item>
  87.  
  88.                     <item name="OnRightButtonUp">
  89. Called when the right mouse button is released in this window. - Usage: Window.OnRightButtonUp();
  90.                     </item>
  91.  
  92.                     <item name="OnMiddleButtonUp">
  93. Called when the middle mouse button is released in this window. - Usage: Window.OnMiddleButtonUp();
  94.                     </item>
  95.  
  96.                     <item name="OnLeftButtonDown">
  97. Called when the left mouse button is pressed in this window. - Usage: Window.OnLeftButtonDown();
  98.                     </item>
  99.  
  100.                     <item name="OnRightButtonDown">
  101. Called when the right mouse button is pressed in this window. - Usage: Window.OnRightButtonDown();
  102.                     </item>
  103.  
  104.                     <item name="OnMiddleButtonDown">
  105. Called when the middle mouse button is pressed in this window. - Usage: Window.OnMiddleButtonDown();
  106.                     </item>
  107.  
  108.                     <item name="OnDropFiles">
  109. Called when files are dropped. - Usage: Window.OnDropFiles();
  110.                     </item>
  111.  
  112.                     <item name="OnActivate">
  113. Called when the window is activated (in focus). - Usage: Window.OnActivate();
  114.                     </item>
  115.  
  116.                     <item name="OnDeactivate">
  117. Called when another window gets activated (putting this window out of focus). - Usage: Window.OnDeactivate();
  118.                     </item>
  119.  
  120.                     <item name="OnAlwaysOnTopChange">
  121. Called when the window changes its always-on-top state. - Usage: Window.OnAlwaysOnTopChange(bOnTop);
  122.        bOnTop          true if always-on-top is enabled, false otherwise
  123.                     </item>
  124.  
  125.                     <item name="OnScreenChange">
  126. Called when the screen format changes. - Usage: Window.OnScreenChange();
  127.                     </item>
  128.                 </section>
  129.  
  130.                 <section name="spinbutton">
  131.                     <item name="OnPosQueryChange">
  132. Called to check whether the control's knob position may be changed. - Usage: Spinner.OnPosQueryChange();
  133.        Return value:   true to allow change, false to disallow it
  134.                     </item>
  135.  
  136.                     <item name="OnPosChange">
  137. Called when this control's knob position is changed. - Usage: Spinner.OnPosChange(int, real);
  138.        int             The new int position of the spinner
  139.        real            The new real position of the spinner
  140.                     </item>
  141.  
  142.                     <item name="OnPosFinalized">
  143. 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();
  144.                     </item>
  145.                 </section>
  146.  
  147.                 <section name="slider">
  148.                     <item name="OnPosQueryChange">
  149. Called to check whether the control's slider position may be changed. - Usage: Slider.OnPosQueryChange();
  150.        Return value:   true to allow change, false to disallow it
  151.                     </item>
  152.  
  153.                     <item name="OnPosChange">
  154. Called when this control's slider position is changed. - Usage: Slider.OnPosChange(position);
  155.        position        The new position, in an array {int, real}
  156.                     </item>
  157.  
  158.                     <item name="OnPosFinalized">
  159. 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();
  160.                     </item>
  161.  
  162.                     <item name="OnHoverPosChange">
  163. Called when the mouse hovers over the slider, so that the hint may be updated. - Usage: Slider.OnHoverPosChange(position);
  164.        position        The position, in an array {int, real},the spinner would go to if the user clicked
  165.                     </item>
  166.                 </section>
  167.  
  168.                 <section name="picker">
  169.                     <item name="OnItemSelected">
  170. Called when an item is selected. - Usage: Picker.OnItemSelected(index);
  171.        index           Which item was selected
  172.                     </item>
  173.                 </section>
  174.  
  175.                 <section name="selectionlist">
  176.                     <item name="OnItemSelected">
  177. Called when an item is selected. - Usage: List.OnItemSelected(index);
  178.        index           Which item was selected
  179.                     </item>
  180.                 </section>
  181.  
  182.                 <section name="EditControl">
  183.                     <item name="OnEditSend">
  184. Called when return is pressed in an edit window. - Usage: (null).OnEditSend();
  185.                     </item>
  186.                 </section>
  187.  
  188.                 <section name="framewin">
  189.                     <item name="OnSkinChange">
  190. Called when the current skin changes. - Usage: FrameWindow.OnSkinChange();
  191.                     </item>
  192.                 </section>
  193.  
  194.                 <section name="playlistwin">
  195.                     <item name="OnTrackDoubleClick">
  196. This is called when an item is doubleclicked. - Usage: PlaylistWindow.OnTrackDoubleClick();
  197.                     </item>
  198.                 </section>
  199.  
  200.                 <section name="viswin">
  201.                     <item name="OnVisualChanged">
  202. This is called when the window's current Visual is changed. - Usage: VisualWindow.OnVisualChanged();
  203.                     </item>
  204.                 </section>
  205.             </section>
  206.         </language>
  207.     </module>
  208. </translation>
  209.