Subversion Repositories jumper

Rev

Rev 1 | Details | Compare with Previous | 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
11 daniel-mar 29
      ExplicitLeft = 0
30
      ExplicitTop = 0
31
      ExplicitWidth = 0
32
      ExplicitHeight = 0
1 daniel-mar 33
      object PPMList: TListView
34
        Left = 8
35
        Top = 8
36
        Width = 401
37
        Height = 201
38
        Columns = <
39
          item
40
            Caption = 'Name'
41
            Width = 123
42
          end
43
          item
44
            Caption = 'Date'
45
            Width = 123
46
          end
47
          item
48
            Caption = 'Points per Minute'
49
            Width = 123
50
          end>
51
        ColumnClick = False
52
        ReadOnly = True
53
        RowSelect = True
54
        TabOrder = 0
55
        TabStop = False
56
        ViewStyle = vsReport
57
        OnCompare = CompareAsc
58
      end
59
    end
60
    object RemainingTab: TTabSheet
61
      Caption = 'Lowest remaining stones'
11 daniel-mar 62
      ExplicitLeft = 0
63
      ExplicitTop = 0
64
      ExplicitWidth = 0
65
      ExplicitHeight = 0
1 daniel-mar 66
      object RemainingList: TListView
67
        Left = 8
68
        Top = 8
69
        Width = 401
70
        Height = 201
71
        Columns = <
72
          item
73
            Caption = 'Name'
74
            Width = 123
75
          end
76
          item
77
            Caption = 'Date'
78
            Width = 123
79
          end
80
          item
81
            Caption = 'Remaining stones'
82
            Width = 123
83
          end>
84
        ColumnClick = False
85
        ReadOnly = True
86
        RowSelect = True
87
        TabOrder = 0
88
        TabStop = False
89
        ViewStyle = vsReport
90
        OnCompare = CompareDesc
91
      end
92
    end
93
    object TimeTab: TTabSheet
94
      Caption = 'Shortest time'
95
      ImageIndex = 1
11 daniel-mar 96
      ExplicitLeft = 0
97
      ExplicitTop = 0
98
      ExplicitWidth = 0
99
      ExplicitHeight = 0
1 daniel-mar 100
      object TimeList: TListView
101
        Left = 8
102
        Top = 8
103
        Width = 401
104
        Height = 201
105
        Columns = <
106
          item
107
            Caption = 'Name'
108
            Width = 123
109
          end
110
          item
111
            Caption = 'Date'
112
            Width = 123
113
          end
114
          item
115
            Caption = 'Time [Seconds]'
116
            Width = 123
117
          end>
118
        ColumnClick = False
119
        ReadOnly = True
120
        RowSelect = True
121
        TabOrder = 0
122
        TabStop = False
123
        ViewStyle = vsReport
124
        OnCompare = CompareDesc
125
      end
126
    end
127
    object ScoreTab: TTabSheet
128
      Caption = 'Highest score'
129
      ImageIndex = 2
11 daniel-mar 130
      ExplicitLeft = 0
131
      ExplicitTop = 0
132
      ExplicitWidth = 0
133
      ExplicitHeight = 0
1 daniel-mar 134
      object ScoreList: TListView
135
        Left = 8
136
        Top = 8
137
        Width = 401
138
        Height = 201
139
        Columns = <
140
          item
141
            Caption = 'Name'
142
            Width = 123
143
          end
144
          item
145
            Caption = 'Date'
146
            Width = 123
147
          end
148
          item
149
            Caption = 'Score'
150
            Width = 123
151
          end>
152
        ColumnClick = False
153
        ReadOnly = True
154
        RowSelect = True
155
        TabOrder = 0
156
        TabStop = False
157
        ViewStyle = vsReport
158
        OnCompare = CompareAsc
159
      end
160
    end
161
  end
162
  object CloseBtn: TButton
163
    Left = 312
164
    Top = 272
165
    Width = 123
166
    Height = 25
167
    Cancel = True
168
    Caption = 'Close'
169
    Default = True
170
    TabOrder = 0
171
    OnClick = CloseBtnClick
172
  end
173
  object ClearBtn: TButton
174
    Left = 8
175
    Top = 272
176
    Width = 75
177
    Height = 25
178
    Caption = 'Clear list'
179
    TabOrder = 2
180
    OnClick = ClearBtnClick
181
  end
182
end