summaryrefslogtreecommitdiff
path: root/unit1.lfm
blob: 7efa0cd1ddbd76e8017084ef0608f9a383d02dc9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
object Form1: TForm1
  Left = 279
  Height = 526
  Top = 374
  Width = 697
  Caption = 'Form1'
  ClientHeight = 526
  ClientWidth = 697
  OnActivate = FormActivate
  OnCreate = FormCreate
  OnDestroy = FormDestroy
  OnResize = FormResize
  LCLVersion = '2.0.10.0'
  object Button1: TButton
    Left = 0
    Height = 25
    Top = 0
    Width = 67
    Caption = 'erzeugen'
    OnClick = Button1Click
    PopupMenu = PopupMenu1
    TabOrder = 0
  end
  object SpinEdit1: TSpinEdit
    Left = 72
    Height = 24
    Hint = 'Breite'
    Top = 2
    Width = 56
    OnChange = SpinEdit1Change
    ParentShowHint = False
    PopupMenu = PopupMenu1
    ShowHint = True
    TabOrder = 1
    Value = 5
  end
  object SpinEdit2: TSpinEdit
    Left = 136
    Height = 24
    Hint = 'Höhe'
    Top = 2
    Width = 56
    OnChange = SpinEdit2Change
    ParentShowHint = False
    PopupMenu = PopupMenu1
    ShowHint = True
    TabOrder = 2
    Value = 5
  end
  object SpinEdit3: TSpinEdit
    Left = 200
    Height = 24
    Hint = 'Höhe'
    Top = 2
    Width = 56
    OnChange = SpinEdit3Change
    ParentShowHint = False
    PopupMenu = PopupMenu1
    ShowHint = True
    TabOrder = 3
    Value = 16
  end
  object ProgressBar1: TProgressBar
    Left = 612
    Height = 21
    Top = 2
    Width = 100
    PopupMenu = PopupMenu1
    TabOrder = 4
  end
  object Button2: TButton
    Left = 368
    Height = 25
    Top = 0
    Width = 48
    Caption = 'zurück'
    OnClick = Button2Click
    PopupMenu = PopupMenu1
    TabOrder = 5
  end
  object Button3: TButton
    Left = 420
    Height = 25
    Top = 0
    Width = 48
    Caption = 'laden'
    OnClick = Button3Click
    PopupMenu = PopupMenu1
    TabOrder = 6
  end
  object Button4: TButton
    Left = 472
    Height = 25
    Top = 0
    Width = 67
    Caption = 'speichern'
    OnClick = Button4Click
    PopupMenu = PopupMenu1
    TabOrder = 7
  end
  object Button5: TButton
    Left = 543
    Height = 25
    Top = 0
    Width = 64
    Caption = 'erzeugen'
    OnClick = Button5Click
    PopupMenu = PopupMenu1
    TabOrder = 8
  end
  object CheckBox1: TCheckBox
    Left = 260
    Height = 21
    Top = 4
    Width = 103
    Caption = 'geschlossen'
    OnChange = CheckBox1Change
    PopupMenu = PopupMenu1
    TabOrder = 9
  end
  object Timer1: TTimer
    Interval = 100
    OnTimer = Timer1Timer
    Top = 32
  end
  object OpenDialog1: TOpenDialog
    Left = 32
    Top = 32
  end
  object SaveDialog1: TSaveDialog
    Left = 64
    Top = 32
  end
  object PopupMenu1: TPopupMenu
    Left = 96
    Top = 32
    object MenuItem1: TMenuItem
      Caption = 'füllen'
      OnClick = MenuItem1Click
    end
    object MenuItem2: TMenuItem
      Caption = 'leeren'
      OnClick = MenuItem2Click
    end
    object MenuItem5: TMenuItem
      Caption = 'ohne Nullen leeren'
      OnClick = MenuItem5Click
    end
    object MenuItem4: TMenuItem
      Caption = '10 Mal leeren'
      OnClick = MenuItem4Click
    end
    object MenuItem6: TMenuItem
      Caption = '10 Mal ohne Nullen leeren'
      OnClick = MenuItem6Click
    end
    object MenuItem3: TMenuItem
      Caption = 'Lösbarkeit'
      OnClick = MenuItem3Click
    end
  end
end