Menu

[r2000]: / trunk / Src / FmCodeImportDlg.dfm  Maximize  Restore  History

Download this file

243 lines (242 with data), 6.1 kB

inherited CodeImportDlg: TCodeImportDlg
  Caption = 'Import Wizard'
  ExplicitWidth = 565
  ExplicitHeight = 433
  PixelsPerInch = 96
  TextHeight = 13
  inherited pnlBody: TPanel
    Height = 321
    ExplicitHeight = 321
    inherited pcWizard: TPageControl
      Height = 288
      ActivePage = tsUpdate
      ExplicitHeight = 288
      object tsInfo: TTabSheet
        Caption = 'tsInfo'
        TabVisible = False
        object lblIntro: TLabel
          Left = 0
          Top = 8
          Width = 369
          Height = 227
          AutoSize = False
          Caption = 
            'This wizard helps you import snippets from a file into your user' +
            ' database.'#13#10#13#10'Click the Next button below to begin.'
          WordWrap = True
        end
      end
      object tsFile: TTabSheet
        Caption = 'tsFile'
        ImageIndex = 1
        TabVisible = False
        object lblFile: TLabel
          Left = 0
          Top = 8
          Width = 220
          Height = 13
          Caption = 'Open import &file: (click button to browse for file)'
          FocusControl = edFile
        end
        object lblLoadFile: TLabel
          Left = 0
          Top = 72
          Width = 172
          Height = 13
          Caption = 'Click the Next button to read the file.'
        end
        object edFile: TEdit
          Left = 0
          Top = 28
          Width = 332
          Height = 21
          TabOrder = 0
        end
        object btnBrowse: TButton
          Left = 338
          Top = 28
          Width = 27
          Height = 21
          Action = actBrowse
          Font.Charset = DEFAULT_CHARSET
          Font.Color = clWindowText
          Font.Height = -11
          Font.Name = 'MS Sans Serif'
          Font.Style = [fsBold]
          ParentFont = False
          TabOrder = 1
        end
      end
      object tsUserInfo: TTabSheet
        Caption = 'tsUserInfo'
        ImageIndex = 2
        TabVisible = False
        object lblName: TLabel
          Left = 0
          Top = 8
          Width = 31
          Height = 13
          Caption = 'Name:'
        end
        object lblEmail: TLabel
          Left = 0
          Top = 45
          Width = 28
          Height = 13
          Caption = 'Email:'
        end
        object lblComments: TLabel
          Left = 0
          Top = 85
          Width = 52
          Height = 13
          Caption = 'Comments:'
        end
        object edComments: TMemo
          Left = 72
          Top = 82
          Width = 297
          Height = 154
          ParentColor = True
          ReadOnly = True
          ScrollBars = ssVertical
          TabOrder = 2
        end
        object edName: TEdit
          Left = 72
          Top = 3
          Width = 297
          Height = 21
          ParentColor = True
          ReadOnly = True
          TabOrder = 0
        end
        object edEmail: TEdit
          Left = 72
          Top = 42
          Width = 297
          Height = 21
          ParentColor = True
          ReadOnly = True
          TabOrder = 1
        end
      end
      object tsUpdate: TTabSheet
        Caption = 'tsUpdate'
        ImageIndex = 3
        TabVisible = False
        object lblImportList: TLabel
          Left = 0
          Top = 53
          Width = 86
          Height = 13
          Caption = 'Imported &snippets:'
          FocusControl = lvImports
        end
        object lblSelectedSnippet: TLabel
          Left = 0
          Top = 217
          Width = 82
          Height = 13
          Caption = 'S&elected snippet:'
          FocusControl = edRename
        end
        object lblModifyInstructions: TLabel
          Left = 0
          Top = 8
          Width = 369
          Height = 40
          AutoSize = False
          Caption = 
            'The imported functions are listed below. Select, deselect and re' +
            'name as required then click the "Update" button to update the da' +
            'tabase. Use "Cancel" to abandon the import.'
          WordWrap = True
        end
        object lvImports: TListView
          Left = 0
          Top = 72
          Width = 369
          Height = 139
          Checkboxes = True
          Columns = <
            item
              Caption = 'Snippet Name'
              Width = 140
            end
            item
              Caption = 'Import Using Name'
              Width = 140
            end
            item
              Caption = 'Action'
              Width = 60
            end>
          ColumnClick = False
          GridLines = True
          HideSelection = False
          ReadOnly = True
          RowSelect = True
          SortType = stText
          TabOrder = 0
          ViewStyle = vsReport
          OnSelectItem = lvImportsSelectItem
          OnItemChecked = lvImportsItemChecked
        end
        object btnRename: TButton
          Left = 161
          Top = 236
          Width = 75
          Height = 25
          Action = actRename
          TabOrder = 1
        end
        object edRename: TEdit
          Left = 0
          Top = 238
          Width = 155
          Height = 21
          TabOrder = 2
        end
      end
      object tsFinish: TTabSheet
        Caption = 'tsFinish'
        ImageIndex = 5
        TabVisible = False
        object lblFinish: TLabel
          Left = 0
          Top = 8
          Width = 369
          Height = 33
          AutoSize = False
          Caption = 
            'The database has now been updated. The following snippets were i' +
            'mported:'
          WordWrap = True
        end
        object sbFinish: TScrollBox
          Left = 19
          Top = 31
          Width = 334
          Height = 212
          BorderStyle = bsNone
          TabOrder = 0
        end
      end
    end
  end
  object alMain: TActionList
    Left = 448
    Top = 208
    object actRename: TAction
      Caption = '&Rename...'
      OnExecute = actRenameExecute
      OnUpdate = actRenameUpdate
    end
    object actBrowse: TAction
      Caption = '...'
      Hint = 'Browse for import file'
      OnExecute = actBrowseExecute
    end
  end
end
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.