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 HighScoreForm: THighScoreForm
2
  Left = 258
3
  Top = 131
4
  BorderIcons = [biSystemMenu, biMinimize]
5
  BorderStyle = bsSingle
6
  Caption = 'High scores'
7
  ClientHeight = 305
8
  ClientWidth = 441
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 PageControl: TPageControl
20
    Left = 8
21
    Top = 8
22
    Width = 425
23
    Height = 249
24
    ActivePage = PPMTab
25
    TabOrder = 1
26
    object PPMTab: TTabSheet
27
      Caption = 'Highest Points per Minute'
28
      ImageIndex = 3
29
      object PPMList: TListView
30
        Left = 8
31
        Top = 8
32
        Width = 401
33
        Height = 201
34
        Columns = <
35
          item
36
            Caption = 'Name'
37
            Width = 123
38
          end
39
          item
40
            Caption = 'Date'
41
            Width = 123
42
          end
43
          item
44
            Caption = 'Points per Minute'
45
            Width = 123
46
          end>
47
        ColumnClick = False
48
        ReadOnly = True
49
        RowSelect = True
50
        TabOrder = 0
51
        TabStop = False
52
        ViewStyle = vsReport
53
        OnCompare = CompareAsc
54
      end
55
    end
56
    object RemainingTab: TTabSheet
57
      Caption = 'Lowest remaining stones'
58
      object RemainingList: TListView
59
        Left = 8
60
        Top = 8
61
        Width = 401
62
        Height = 201
63
        Columns = <
64
          item
65
            Caption = 'Name'
66
            Width = 123
67
          end
68
          item
69
            Caption = 'Date'
70
            Width = 123
71
          end
72
          item
73
            Caption = 'Remaining stones'
74
            Width = 123
75
          end>
76
        ColumnClick = False
77
        ReadOnly = True
78
        RowSelect = True
79
        TabOrder = 0
80
        TabStop = False
81
        ViewStyle = vsReport
82
        OnCompare = CompareDesc
83
      end
84
    end
85
    object TimeTab: TTabSheet
86
      Caption = 'Shortest time'
87
      ImageIndex = 1
88
      object TimeList: TListView
89
        Left = 8
90
        Top = 8
91
        Width = 401
92
        Height = 201
93
        Columns = <
94
          item
95
            Caption = 'Name'
96
            Width = 123
97
          end
98
          item
99
            Caption = 'Date'
100
            Width = 123
101
          end
102
          item
103
            Caption = 'Time [Seconds]'
104
            Width = 123
105
          end>
106
        ColumnClick = False
107
        ReadOnly = True
108
        RowSelect = True
109
        TabOrder = 0
110
        TabStop = False
111
        ViewStyle = vsReport
112
        OnCompare = CompareDesc
113
      end
114
    end
115
    object ScoreTab: TTabSheet
116
      Caption = 'Highest score'
117
      ImageIndex = 2
118
      object ScoreList: TListView
119
        Left = 8
120
        Top = 8
121
        Width = 401
122
        Height = 201
123
        Columns = <
124
          item
125
            Caption = 'Name'
126
            Width = 123
127
          end
128
          item
129
            Caption = 'Date'
130
            Width = 123
131
          end
132
          item
133
            Caption = 'Score'
134
            Width = 123
135
          end>
136
        ColumnClick = False
137
        ReadOnly = True
138
        RowSelect = True
139
        TabOrder = 0
140
        TabStop = False
141
        ViewStyle = vsReport
142
        OnCompare = CompareAsc
143
      end
144
    end
145
  end
146
  object CloseBtn: TButton
147
    Left = 312
148
    Top = 272
149
    Width = 123
150
    Height = 25
151
    Cancel = True
152
    Caption = 'Close'
153
    Default = True
154
    TabOrder = 0
155
    OnClick = CloseBtnClick
156
  end
157
  object ClearBtn: TButton
158
    Left = 8
159
    Top = 272
160
    Width = 75
161
    Height = 25
162
    Caption = 'Clear list'
163
    TabOrder = 2
164
    OnClick = ClearBtnClick
165
  end
166
end