home *** CD-ROM | disk | FTP | other *** search
/ Computer Shopper 186 / DPCS0803.ISO / Café / Dev-C++ / devcpp4980.exe / $INSTDIR / devcpp.exe / 0 / RCDATA / TNEWCLASSFORM / TNEWCLASSFORM.txt
Encoding:
Text File  |  2003-05-15  |  5.5 KB  |  284 lines

  1. object NewClassForm: TNewClassForm
  2.   Left = 241
  3.   Top = 70
  4.   BorderStyle = bsDialog
  5.   Caption = 'New class'
  6.   ClientHeight = 470
  7.   ClientWidth = 369
  8.   Color = clBtnFace
  9.   Font.Charset = DEFAULT_CHARSET
  10.   Font.Color = clWindowText
  11.   Font.Height = -11
  12.   Font.Name = 'MS Sans Serif'
  13.   Font.Style = []
  14.   OldCreateOrder = False
  15.   Position = poOwnerFormCenter
  16.   OnClose = FormClose
  17.   OnShow = FormShow
  18.   PixelsPerInch = 96
  19.   TextHeight = 13
  20.   object Label1: TLabel
  21.     Left = 8
  22.     Top = 12
  23.     Width = 57
  24.     Height = 13
  25.     Caption = 'Class name:'
  26.   end
  27.   object Label4: TLabel
  28.     Left = 8
  29.     Top = 188
  30.     Width = 116
  31.     Height = 13
  32.     Caption = 'Implementation filename:'
  33.   end
  34.   object Label5: TLabel
  35.     Left = 8
  36.     Top = 216
  37.     Width = 80
  38.     Height = 13
  39.     Caption = 'Header filename:'
  40.   end
  41.   object btnBrowseCpp: TSpeedButton
  42.     Left = 338
  43.     Top = 184
  44.     Width = 23
  45.     Height = 22
  46.     Caption = '...'
  47.     OnClick = btnBrowseCppClick
  48.   end
  49.   object btnBrowseH: TSpeedButton
  50.     Left = 338
  51.     Top = 212
  52.     Width = 23
  53.     Height = 22
  54.     Caption = '...'
  55.     OnClick = btnBrowseCppClick
  56.   end
  57.   object Label9: TLabel
  58.     Left = 8
  59.     Top = 36
  60.     Width = 53
  61.     Height = 13
  62.     Caption = 'Arguments:'
  63.   end
  64.   object txtName: TEdit
  65.     Left = 88
  66.     Top = 8
  67.     Width = 273
  68.     Height = 21
  69.     TabOrder = 0
  70.     Text = 'txtName'
  71.     OnChange = txtNameChange
  72.     OnKeyPress = txtNameKeyPress
  73.   end
  74.   object GroupBox1: TGroupBox
  75.     Left = 8
  76.     Top = 84
  77.     Width = 353
  78.     Height = 93
  79.     Caption = 'Inheritance'
  80.     TabOrder = 3
  81.     object Label2: TLabel
  82.       Left = 16
  83.       Top = 20
  84.       Width = 70
  85.       Height = 13
  86.       Caption = 'Access scope:'
  87.     end
  88.     object Label3: TLabel
  89.       Left = 16
  90.       Top = 44
  91.       Width = 82
  92.       Height = 13
  93.       Caption = 'Inherit from class:'
  94.     end
  95.     object Label6: TLabel
  96.       Left = 16
  97.       Top = 68
  98.       Width = 80
  99.       Height = 13
  100.       Caption = 'Header filename:'
  101.     end
  102.     object cmbClass: TComboBox
  103.       Left = 124
  104.       Top = 40
  105.       Width = 221
  106.       Height = 21
  107.       ItemHeight = 13
  108.       TabOrder = 1
  109.       Text = 'cmbClass'
  110.       OnChange = cmbClassChange
  111.     end
  112.     object cmbScope: TComboBox
  113.       Left = 124
  114.       Top = 16
  115.       Width = 221
  116.       Height = 21
  117.       Style = csDropDownList
  118.       ItemHeight = 13
  119.       ItemIndex = 2
  120.       TabOrder = 0
  121.       Text = 'public'
  122.       Items.Strings = (
  123.         'private'
  124.         'protected'
  125.         'public'
  126.         'published')
  127.     end
  128.     object txtIncFile: TEdit
  129.       Left = 124
  130.       Top = 64
  131.       Width = 221
  132.       Height = 21
  133.       TabOrder = 2
  134.       Text = 'txtIncFile'
  135.     end
  136.   end
  137.   object txtCppFile: TEdit
  138.     Left = 132
  139.     Top = 184
  140.     Width = 205
  141.     Height = 21
  142.     TabOrder = 4
  143.     Text = 'txtCppFile'
  144.     OnChange = txtCppFileChange
  145.   end
  146.   object txtHFile: TEdit
  147.     Left = 132
  148.     Top = 212
  149.     Width = 205
  150.     Height = 21
  151.     TabOrder = 5
  152.     Text = 'txtHFile'
  153.     OnChange = txtCppFileChange
  154.   end
  155.   object chkAddToProject: TCheckBox
  156.     Left = 8
  157.     Top = 244
  158.     Width = 353
  159.     Height = 17
  160.     Caption = 'Add to current project'
  161.     TabOrder = 6
  162.   end
  163.   object btnCreate: TButton
  164.     Left = 105
  165.     Top = 436
  166.     Width = 75
  167.     Height = 25
  168.     Caption = 'Create'
  169.     Default = True
  170.     ModalResult = 1
  171.     TabOrder = 8
  172.     OnClick = btnCreateClick
  173.   end
  174.   object btnCancel: TButton
  175.     Left = 189
  176.     Top = 436
  177.     Width = 75
  178.     Height = 25
  179.     Cancel = True
  180.     Caption = 'Cancel'
  181.     ModalResult = 2
  182.     TabOrder = 9
  183.   end
  184.   object chkInherit: TCheckBox
  185.     Left = 8
  186.     Top = 60
  187.     Width = 353
  188.     Height = 17
  189.     Caption = 'Inherit from another class'
  190.     TabOrder = 2
  191.     OnClick = chkInheritClick
  192.   end
  193.   object GroupBox2: TGroupBox
  194.     Left = 8
  195.     Top = 272
  196.     Width = 357
  197.     Height = 153
  198.     Caption = 'Comment'
  199.     TabOrder = 7
  200.     object Label7: TLabel
  201.       Left = 8
  202.       Top = 20
  203.       Width = 56
  204.       Height = 13
  205.       Caption = 'Description:'
  206.     end
  207.     object Label8: TLabel
  208.       Left = 8
  209.       Top = 128
  210.       Width = 26
  211.       Height = 13
  212.       Caption = 'Style:'
  213.     end
  214.     object memDescr: TMemo
  215.       Left = 16
  216.       Top = 36
  217.       Width = 333
  218.       Height = 81
  219.       Lines.Strings = (
  220.         'memDescr')
  221.       ScrollBars = ssBoth
  222.       TabOrder = 0
  223.       OnChange = memDescrChange
  224.     end
  225.     object cmbComment: TComboBox
  226.       Left = 40
  227.       Top = 124
  228.       Width = 217
  229.       Height = 21
  230.       Style = csDropDownList
  231.       ItemHeight = 13
  232.       ItemIndex = 0
  233.       TabOrder = 1
  234.       Text = '/** doxygen style comment */'
  235.       Items.Strings = (
  236.         '/** doxygen style comment */'
  237.         '/* C style comment */'
  238.         '// C++ style comment')
  239.     end
  240.   end
  241.   object txtArgs: TEdit
  242.     Left = 88
  243.     Top = 32
  244.     Width = 273
  245.     Height = 21
  246.     TabOrder = 1
  247.     Text = 'txtArgs'
  248.   end
  249.   object SaveDialog1: TSaveDialog
  250.     Left = 300
  251.     Top = 184
  252.   end
  253.   object XPMenu: TXPMenu
  254.     DimLevel = 30
  255.     GrayLevel = 10
  256.     Font.Charset = ANSI_CHARSET
  257.     Font.Color = clMenuText
  258.     Font.Height = -11
  259.     Font.Name = 'Microsoft Sans Serif'
  260.     Font.Style = []
  261.     Color = clBtnFace
  262.     DrawMenuBar = False
  263.     IconBackColor = clBtnFace
  264.     MenuBarColor = clBtnFace
  265.     SelectColor = clHighlight
  266.     SelectBorderColor = clHighlight
  267.     SelectFontColor = clMenuText
  268.     DisabledColor = clInactiveCaption
  269.     SeparatorColor = clBtnFace
  270.     CheckedColor = clHighlight
  271.     IconWidth = 24
  272.     DrawSelect = True
  273.     UseSystemColors = True
  274.     UseDimColor = False
  275.     OverrideOwnerDraw = False
  276.     Gradient = False
  277.     FlatMenu = False
  278.     AutoDetect = True
  279.     Active = False
  280.     Left = 136
  281.     Top = 56
  282.   end
  283. end
  284.