Subversion Repositories jumper

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 daniel-mar 1
object HistoryForm: THistoryForm
2
  Left = 192
3
  Top = 103
4
  BorderIcons = [biSystemMenu, biMinimize]
5
  BorderStyle = bsSingle
6
  Caption = 'Jump History'
7
  ClientHeight = 353
8
  ClientWidth = 281
9
  Color = clBtnFace
10
  Font.Charset = DEFAULT_CHARSET
11
  Font.Color = clWindowText
12
  Font.Height = -11
13
  Font.Name = 'MS Sans Serif'
14
  Font.Style = []
15
  OldCreateOrder = False
16
  Position = poMainFormCenter
17
  PixelsPerInch = 96
18
  TextHeight = 13
19
  object JumpMemo: TMemo
20
    Left = 8
21
    Top = 8
22
    Width = 265
23
    Height = 305
24
    TabStop = False
25
    Color = clBtnFace
26
    Font.Charset = ANSI_CHARSET
27
    Font.Color = clWindowText
28
    Font.Height = -13
29
    Font.Name = 'Courier New'
30
    Font.Style = []
31
    ParentFont = False
32
    ReadOnly = True
33
    ScrollBars = ssVertical
34
    TabOrder = 2
35
  end
36
  object SaveBtn: TButton
37
    Left = 8
38
    Top = 320
39
    Width = 105
40
    Height = 25
41
    Caption = 'Save to file'
42
    TabOrder = 1
43
    OnClick = SaveBtnClick
44
  end
45
  object CloseBtn: TButton
46
    Left = 168
47
    Top = 320
48
    Width = 105
49
    Height = 25
50
    Cancel = True
51
    Caption = 'Close'
52
    Default = True
53
    TabOrder = 0
54
    OnClick = CloseBtnClick
55
  end
56
  object JumpSaveDialog: TSaveDialog
57
    DefaultExt = '*.txt'
58
    Filter = 'Text files (*.txt)|*.txt|All files (*.*)|*.*'
59
    Options = [ofOverwritePrompt, ofHideReadOnly, ofPathMustExist, ofEnableSizing]
60
    Left = 16
61
    Top = 16
62
  end
63
end