home *** CD-ROM | disk | FTP | other *** search
/ distrib.akp.su/Programming/Vb-6+Rus/ / distrib.akp.su.tar / distrib.akp.su / Programming / Vb-6+Rus / OS / JAUTOEXP.INI < prev   
INI File  |  1998-05-18  |  14KB  |  322 lines

  1. ; JAutoExp.Dat - templates for automatically expanding data
  2. ; Copyright(c) 1995 Microsoft Corporation. All Rights Reserved.
  3. ;---------------------------------------------------------------
  4. ;
  5. ; While debugging, Data Tips and items in the Watch and Variable
  6. ; windows are automatically expanded to show their most important
  7. ; elements. The expansion follows the format given by the rules
  8. ; in this file. You can add rules for your types or change the
  9. ; predefined rules.
  10. ;
  11. ; For good examples, read the rules in this file.
  12. ;
  13. ; An AutoExpand rule is a line with the name of a type, an equals 
  14. ; sign, and text with replaceable parts in angle brackets. The 
  15. ; part in angle brackets names a member of the type and an 
  16. ; optional Watch format specifier.
  17. ;
  18. ; AutoExpand rules use the following syntax. The equals sign (=), 
  19. ; angle brackets (<>), and comma are taken literally. Square
  20. ; brackets ([]) indicate optional items.
  21. ;
  22. ; type=[text]<member[,format]>...
  23. ;
  24. ; type      Name of the type.
  25. ;
  26. ; text      Any text.  Usually the name of the member to display, 
  27. ;           or a shorthand name for the member.
  28. ;
  29. ; member    Name of a member to display.
  30. ;
  31. ; format    Watch format specifier. One of the following:
  32. ;
  33. ;   Letter  Description                 Sample         Display
  34. ;   ------  --------------------------  ------------   -------------
  35. ;   d,i     Signed decimal integer      0xF000F065,d   -268373915
  36. ;   u       Unsigned decimal integer    0x0065,u       101
  37. ;   o       Unsigned octal integer      0xF065,o       0170145
  38. ;   x,X     Hexadecimal integer         61541,X        0X0000F065
  39. ;   l,h     long or short prefix for    00406042,hx    0x0c22
  40. ;             d, i, u, o, x, X
  41. ;   f       Signed floating-point       3./2.,f        1.500000
  42. ;   e       Signed scientific-notation  3./2.,e        1.500000e+000
  43. ;   g       Shorter of e and f          3./2.,g        1.5
  44. ;
  45. ; If there is no rule for a class, the base classes are checked for
  46. ; a matching rule.
  47. ;
  48. ;---------------------------------------------------------------
  49. [AutoExpand]
  50.  
  51. ; java.lang.*
  52. java.lang.Boolean =<value>
  53. java.lang.Character =<value>
  54. java.lang.Double =<value>
  55. java.lang.Float =<value>
  56. java.lang.Integer =<value>
  57. java.lang.Long =<value>
  58. java.lang.String =<value>, offset=<offset>, count=<count>
  59. java.lang.StringBuffer =value=<value>
  60.  
  61. java.lang.Throwable =detailMessage=<detailMessage>
  62. java.lang.Thread =name=<name>
  63. java.lang.ThreadGroup =name=<name>
  64. java.lang.Win32Process =handle=<handle>
  65.  
  66. ; java.util.*
  67. java.util.Hashtable =count=<count>, threshold=<threshold>, loadFactor=<loadFactor>
  68. java.util.HashtableEntry =hash=<hash>, key=<key>, value=<value>
  69. java.util.HashtableEnumerator =index=<index>
  70. java.util.Random =seed=<seed>
  71. java.util.StringTokenizer =currentPosition=<currentPosition>, str=<str>
  72. java.util.Vector =elementCount=<elementCount>, capacityIncrement=<capacityIncrement>
  73. java.util.VectorEnumerator =count=<count>, vector=<vector>
  74.  
  75. ; java.io.*
  76. java.io.BufferedInputStream =count=<count>, pos=<pos>, marklimit=<marklimit>, markpos=<markpos>
  77. java.io.BufferedOutputStream =count=<count>
  78. java.io.ByteArrayInputStream =count=<count>, pos=<pos>
  79. java.io.ByteArrayOutputStream =count=<count>
  80. java.io.DataOutputStream =written=<written>
  81. java.io.DataOutputStream =written=<written>
  82. java.io.File =path=<path>
  83. java.io.FileDescriptor =fd=<fd>
  84. java.io.FileInputStream =fd=<fd>
  85. java.io.FileOutputStream =fd=<fd>
  86. java.io.InterruptedIOException =bytesTransferred=<bytesTransferred>
  87. java.io.LineNumberInputStream =lineNumber=<lineNumber>, markLineNumber=<markLineNumber>, pushBack=<pushBack>
  88. java.io.PipedInputStream =closed=<closed>, in=<in>, out=<out>, readSide=<readSide>, writeSide=<writeSide>
  89. java.io.PipedOutputStream =sink=<sink>
  90. java.io.PrintStream =autoFlush=<autoFlush>, trouble=<trouble>
  91. java.io.PushbackInputStream =pushBack=<pushBack>
  92. java.io.RandomAccessFile =fd=<fd>
  93. java.io.StringBufferInputStream =count=<count>, pos=<pos>
  94.  
  95. ; java.net.*
  96. java.net.DatagramPacket =address=<address>, length=<length>, port=<port>
  97. java.net.DatagramSocket =fd=<fd>, localPort=<localPort>
  98. java.net.InetAddress =address=<address>, family=<family>, hostName=<hostName>
  99. java.net.ServerSocket =<impl>
  100. java.net.Socket =<impl>
  101. java.net.SocketImpl =fd=<fd>, address=<address>, port=<port>, localPort=<localPort>
  102. java.net.SocketInputStream =eof=<eof>, <impl>
  103. java.net.SocketOutputStream =<impl>
  104. java.net.URL =protocol=<protocol>, host=<host>, port=<port>, file=<file>, ref=<ref>
  105. java.net.URLConnection =connected=<connected>, url=<url>, doInput=<doInput>, doOutput=<doOutput>, allowUserInteraction=<allowUserInteraction>, useCaches=<useCaches>
  106.  
  107. ; java.awt.*
  108. java.awt.BorderLayout =hgap=<hgap>, vgap=<vgap>
  109. java.awt.Button =label=<label>
  110. java.awt.CardLayout =hgap=<hgap>, vgap=<vgap>
  111. java.awt.CheckBox =label=<label>, state=<state>
  112. java.awt.CheckBoxGroup =currentChoice=<currentChoice>
  113. java.awt.CheckBoxMenuItem =state=<state>
  114. java.awt.Choice =selectedIndex=<selectedIndex>
  115. java.awt.Color =value=<value>
  116. java.awt.Component =x=<x>, y=<y>, width=<width>, height=<height>, visible=<visible>, enabled=<enabled>, valid=<valid>
  117. ;java.awt.Container =ncomponents=<ncomponents>, <super>
  118. java.awt.Container =ncomponents=<ncomponents>
  119. ;java.awt.Dialog =resizable=<resizable>, modal=<modal>, title=<title>, <super>
  120. java.awt.Dialog =resizable=<resizable>, modal=<modal>, title=<title>
  121. java.awt.Dimension =width=<width>, height=<height>
  122. java.awt.FocusManager =focusRoot=<focusRoot>, focuesOwner=<focusOwner>
  123. ;java.awt.Frame =title=<title>, resizable=<resizable>, <super>
  124. java.awt.Frame =title=<title>, resizable=<resizable>
  125. java.awt.GridBagConstraints =gridx=<gridx>, gridy=<gridy>, gridwidth=<gridwidth>, gridheight=<gridheight>, weightx=<weightx>, weighty=<weighty>
  126. java.awt.GridBagLayout =defaultConstraints=<defaultConstraints>, layoutInfo=<layoutInfo>
  127. java.awt.GridBagInfo =width=<width>, height=<height>, startx=<startx>, starty=<starty>
  128. java.awt.GridLayout =hgap=<hgap>, vgap=<vgap>, rows=<rows>, cols=<cols>
  129. java.awt.Insets =top=<top>, left=<left>, bottom=<bottom>, right=<right>
  130. java.awt.Label =label=<label>, alignment=<alignment>
  131. ;java.awt.List =rows=<rows>, multipleSelections=<multipleSelections>, <super>
  132. java.awt.List =rows=<rows>, multipleSelections=<multipleSelections>
  133. java.awt.MenuItem =label=<label>, enabled=<enabled>
  134. ;java.awt.MenuBar =tearOff=<tearOff>, isHelpMenu=<isHelpMenu>, <super>
  135. java.awt.MenuBar =tearOff=<tearOff>, isHelpMenu=<isHelpMenu>
  136.  
  137. ;-------------------------------------------------------------------------------
  138. ;coms.ms.wfc.ui.*
  139. ;
  140. coms.ms.wfc.ui.Animation =filename=<filename>
  141. coms.ms.wfc.ui.AutoSizeEvent =newRectangle=<newRectangle>
  142. coms.ms.wfc.ui.Brush =color=<entry.color>, style=<entry.style,X>
  143. coms.ms.wfc.ui.Button =text=<text>, dialogResult=<dialogResult>
  144. coms.ms.wfc.ui.Checkbox =text=<text>, checkState=<checkState>
  145. coms.ms.wfc.ui.Color =value=<value,X>
  146. coms.ms.wfc.ui.ColumnHeader =text=<text>, width=<width>
  147. coms.ms.wfc.ui.ComboBox =text=<text>, itemCount=<itemCount>
  148. ;coms.ms.wfc.ui.ContextMenu = USE SUPER
  149. coms.ms.wfc.ui.Control =text=<text>, x=<x>, y=<y>, width=<width>, height=<height>
  150. coms.ms.wfc.ui.CreateEvent = hWnd=<hWnd>
  151. ;coms.ms.wfc.ui.CreateEventHandler = DELEGATE
  152. coms.ms.wfc.ui.CreateParams = caption=<caption>, style=<style,X>, exStyle=<exStyle,X>
  153. ;coms.ms.wfc.ui.Cursor = USE SUPER
  154. coms.ms.wfc.ui.DateTimeChangeEvent = time=<time>
  155. ;coms.ms.wfc.ui.DateTimeChangeEventHandler = DELEGATE
  156. coms.ms.wfc.ui.DateTimeFormatEvent = format=<format>, time=<time>, display=<display>
  157. ;coms.ms.wfc.ui.DateTimeFormatEventHandler = DELEGATE
  158. coms.ms.wfc.ui.DateTimeFormatQueryEvent = format=<format>, maxSize=<maxSize>
  159. ;coms.ms.wfc.ui.DateTimeFormatQueryEventHandler = DELEGATE
  160. coms.ms.wfc.ui.DateTimePicker = value=<value>
  161. coms.ms.wfc.ui.DateTimeUserStringEvent = userString=<userString>, time=<time>
  162. ;coms.ms.wfc.ui.DateTimeUserStringEventHandler = DELEGATE
  163. coms.ms.wfc.ui.DateTimeWmKeyDownEvent = virtualKey=<virtualKey>, format=<format>, time=<time>
  164. ;coms.ms.wfc.ui.DateTimeWmKeyDownEventHandler = DELEGATE
  165. ;coms.ms.wfc.ui.DialogResult = ENUM
  166. ;coms.ms.wfc.ui.DockEditor = DIALOG
  167. coms.ms.wfc.ui.DragEvent = data=<data>, effect=<effect,X>
  168. ;coms.ms.wfc.ui.DragEventHandler = DELEGATE
  169. coms.ms.wfc.ui.DrawItemEvent = graphics=<graphics>, rect=<rect>
  170. ;coms.ms.wfc.ui.DrawItemEventHandler = DELEGATE
  171. ;coms.ms.wfc.ui.DrawMode = ENUM
  172. ;coms.ms.wfc.ui.DTPGeneralPage = DIALOG
  173. coms.ms.wfc.ui.Edit = text=<text>
  174. coms.ms.wfc.ui.Font = name=<entry.name>, size=<entry.size>, units=<entry.units>
  175. coms.ms.wfc.ui.FontMetrics = name=<name>, height=<height>
  176. ;coms.ms.wfc.ui.FontDesignPage = DIALOG
  177. ;coms.ms.wfc.ui.FontDialog = DIALOG
  178. ;coms.ms.wfc.ui.FontFamily = ENUM
  179. ;coms.ms.wfc.ui.FontMetrics =ENUM
  180. ;coms.ms.wfc.ui.FontPitch = ENUM
  181. ;coms.ms.wfc.ui.FontType = ENUM
  182. ;coms.ms.wfc.ui.FontWeight = ENUM
  183. coms.ms.wfc.ui.Form = text=<text>
  184. ;coms.ms.wfc.ui.FormatText = ENUM
  185. ;coms.ms.wfc.ui.FormBorderStyle = ENUM
  186. ;coms.ms.wfc.ui.FormPaletteMode = ENUM
  187. ;coms.ms.wfc.ui.FormStartPosition = ENUM
  188. ;coms.ms.wfc.ui.FormWindowState = ENUM
  189. coms.ms.wfc.ui.GiveFeedbackEvent = effect=<effect>, useDefaultCursors=<useDefaultCursors>
  190. ;coms.ms.wfc.ui.GiveFeedbackEventHandler = DELEGATE
  191. coms.ms.wfc.ui.Graphics = dc=<dc>, font=<font>
  192. ;coms.ms.wfc.ui.GroupBox = USE SUPER
  193. ;coms.ms.wfc.ui.Help =
  194. coms.ms.wfc.ui.HelpEvent = component=<component>, mousePos=<mousePos>
  195. ;coms.ms.wfc.ui.HelpEventHandler =
  196. ;coms.ms.wfc.ui.HorizontalAlignment =
  197. ;coms.ms.wfc.ui.HScrollBar =
  198. ;coms.ms.wfc.ui.IButtonControl =
  199. ;coms.ms.wfc.ui.ICommandExecutor =
  200. ;coms.ms.wfc.ui.Icon =
  201. ;coms.ms.wfc.ui.IconArrange =
  202. ;coms.ms.wfc.ui.IHandleHook =
  203. ;coms.ms.wfc.ui.Image =
  204. ;coms.ms.wfc.ui.ImageButton =
  205. ;coms.ms.wfc.ui.ImageList =
  206. ;coms.ms.wfc.ui.ImageListDrawMode =
  207. ;coms.ms.wfc.ui.InputLangChangeEvent =
  208. ;coms.ms.wfc.ui.InputLangChangeEventHandler =
  209. ;coms.ms.wfc.ui.InputLangChangeRequestEvent =
  210. ;coms.ms.wfc.ui.InputLangChangeRequestEventHandler =
  211. ;coms.ms.wfc.ui.ItemCheckEvent =
  212. ;coms.ms.wfc.ui.ItemCheckEventHandler =
  213. ;coms.ms.wfc.ui.Key = ENUM
  214. coms.ms.wfc.ui.KeyEvent = keyData=<keyData>, keyChar=<keyChar>
  215. ;coms.ms.wfc.ui.KeyEventHandler = DELEGATE
  216. ;coms.ms.wfc.ui.Label = USE SUPER
  217. ;coms.ms.wfc.ui.LeftRightAlignment = ENUM
  218. coms.ms.wfc.ui.ListBox =text=<text>, x=<x>, y=<y>, width=<width>, height=<height>, itemCount=<itemCount>
  219. ;coms.ms.wfc.ui.ListItem =
  220. ;coms.ms.wfc.ui.ListView =
  221. ;coms.ms.wfc.ui.MainMenu =
  222. ;coms.ms.wfc.ui.Mask =
  223. ;coms.ms.wfc.ui.MaskedEdit =
  224. ;coms.ms.wfc.ui.MDIClient =
  225. ;coms.ms.wfc.ui.MDILayout =
  226. ;coms.ms.wfc.ui.MeasureItemEvent =
  227. ;coms.ms.wfc.ui.MeasureItemEventHandler =
  228. ;coms.ms.wfc.ui.Menu =
  229. ;coms.ms.wfc.ui.MenuGlyph =
  230. ;coms.ms.wfc.ui.MenuItem =
  231. ;coms.ms.wfc.ui.MenuMerge =
  232. ;coms.ms.wfc.ui.MessageBox =
  233. ;coms.ms.wfc.ui.Metafile =
  234. ;coms.ms.wfc.ui.MouseEvent =
  235. ;coms.ms.wfc.ui.MouseEventHandler =
  236. ;coms.ms.wfc.ui.OpenFileDialog =
  237. ;coms.ms.wfc.ui.Orientation =
  238. ;coms.ms.wfc.ui.PaintEvent =
  239. ;coms.ms.wfc.ui.PaintEventHandler =
  240. ;coms.ms.wfc.ui.Palette =
  241. ;coms.ms.wfc.ui.Panel =
  242. ;coms.ms.wfc.ui.Pen =
  243. ;coms.ms.wfc.ui.PictureBox =
  244. coms.ms.wfc.ui.Point =x=<x>, y=<y>
  245. ;coms.ms.wfc.ui.PolyFillMode =
  246. ;coms.ms.wfc.ui.PositionInfo =
  247. ;coms.ms.wfc.ui.ProgressBar =
  248. ;coms.ms.wfc.ui.QueryContinueDragEvent =
  249. ;coms.ms.wfc.ui.QueryContinueDragEventHandler =
  250. ;coms.ms.wfc.ui.RadioButton =
  251. ;coms.ms.wfc.ui.RasterOp =
  252. ;coms.ms.wfc.ui.Rebar =
  253. ;coms.ms.wfc.ui.RebarBand =
  254. coms.ms.wfc.ui.Rectangle =x=<x>, y=<y>, width=<width>, height=<height>
  255. ;coms.ms.wfc.ui.Region =
  256. ;coms.ms.wfc.ui.ReSizeRestriction =
  257. ;coms.ms.wfc.ui.RichEdit =
  258. ;coms.ms.wfc.ui.SaveFileDialog =
  259. ;coms.ms.wfc.ui.Screen =
  260. ;coms.ms.wfc.ui.ScrollBar =
  261. ;coms.ms.wfc.ui.ScrollBars =
  262. ;coms.ms.wfc.ui.ScrollButton =
  263. ;coms.ms.wfc.ui.ScrollEvent =
  264. ;coms.ms.wfc.ui.ScrollEventHandler =
  265. ;coms.ms.wfc.ui.SelectionStyle =
  266. ;coms.ms.wfc.ui.Shortcut =
  267. ;coms.ms.wfc.ui.SizeMode =
  268. ;coms.ms.wfc.ui.SortingEnum =
  269. ;coms.ms.wfc.ui.Splitter =
  270. ;coms.ms.wfc.ui.SplitterEvent =
  271. ;coms.ms.wfc.ui.SplitterEventHandler =
  272. ;coms.ms.wfc.ui.StaticImage =
  273. ;coms.ms.wfc.ui.StatusBar =
  274. ;coms.ms.wfc.ui.StatusBarMode =
  275. ;coms.ms.wfc.ui.StatusBarPanel =
  276. ;coms.ms.wfc.ui.StatusBarPanelAutoSize =
  277. ;coms.ms.wfc.ui.StatusBarPanelBorderStyle =
  278. ;coms.ms.wfc.ui.StatusBarPanelClickEvent =
  279. ;coms.ms.wfc.ui.StatusBarPanelClickEventHandler =
  280. ;coms.ms.wfc.ui.StatusBarPanelDesignPage =
  281. ;coms.ms.wfc.ui.StatusBarPanelStyle =
  282. ;coms.ms.wfc.ui.TabControl =
  283. ;coms.ms.wfc.ui.TabDrawStyle =
  284. ;coms.ms.wfc.ui.TabPage =
  285. ;coms.ms.wfc.ui.TabStrip =
  286. ;coms.ms.wfc.ui.TabStripGeneral =
  287. ;coms.ms.wfc.ui.TabStyle =
  288. ;coms.ms.wfc.ui.TextFormat =
  289. ;coms.ms.wfc.ui.TickStyle =
  290. ;coms.ms.wfc.ui.ToolBar =
  291. ;coms.ms.wfc.ui.ToolBarAppearance =
  292. ;coms.ms.wfc.ui.ToolBarBorderStyle =
  293. ;coms.ms.wfc.ui.ToolBarButton =
  294. ;coms.ms.wfc.ui.ToolBarButtonClickEvent =
  295. ;coms.ms.wfc.ui.ToolBarButtonClickEventHandler =
  296. ;coms.ms.wfc.ui.ToolBarButtonDesignPage =
  297. ;coms.ms.wfc.ui.ToolBarButtonStyle =
  298. ;coms.ms.wfc.ui.ToolBarStandardImages =
  299. ;coms.ms.wfc.ui.ToolTip =
  300. ;coms.ms.wfc.ui.ToolTipRegion =
  301. ;coms.ms.wfc.ui.TrackBar =
  302. ;coms.ms.wfc.ui.TreeNode =
  303. ;coms.ms.wfc.ui.TreeView =
  304. ;coms.ms.wfc.ui.TreeViewCancelEvent =
  305. ;coms.ms.wfc.ui.TreeViewCancelEventHandler =
  306. ;coms.ms.wfc.ui.TreeViewEvent =
  307. ;coms.ms.wfc.ui.TreeViewEventHandler =
  308. ;coms.ms.wfc.ui.UpDown =
  309. ;coms.ms.wfc.ui.UserControl =
  310. ;coms.ms.wfc.ui.ValidationErrorEvent =
  311. ;coms.ms.wfc.ui.ValidationErrorEventHandler =
  312. ;coms.ms.wfc.ui.ViewEnum =
  313. ;coms.ms.wfc.ui.VScrollBar =
  314. ;coms.ms.wfc.ui.WhatsThisHelp =
  315.  
  316. ;-------------------------------------------------------------------------------
  317. ;coms.ms.wfc.app.*
  318. ;
  319. coms.ms.wfc.app.Locale = lcid=<lcid>
  320. coms.ms.wfc.app.TimeInfo = <month>/<day>/<year> <hour>:<minute>:<second>.<millis>
  321. coms.ms.wfc.app.Message = hWnd=<hWnd,X>, msg=<msg,X>, wParam=<wParam,X>, lParam=<lParam,X>
  322.