-
Notifications
You must be signed in to change notification settings - Fork 0
/
unit1.lfm
107 lines (107 loc) · 2.59 KB
/
unit1.lfm
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
object Form1: TForm1
Left = 70
Height = 282
Top = 122
Width = 394
HorzScrollBar.Page = 217
VertScrollBar.Page = 169
AutoScroll = True
Caption = 'Möbelrücken'
ClientHeight = 263
ClientWidth = 394
Menu = MainMenu1
OnCloseQuery = FormCloseQuery
OnCreate = FormCreate
OnMouseMove = FormMouseMove
Position = poDefault
LCLVersion = '1.8.4.0'
WindowState = wsMaximized
object PaintBox: TPaintBox
Left = 0
Height = 169
Top = 0
Width = 217
ParentColor = False
OnClick = PaintBoxClick
OnMouseDown = PaintBoxMouseDown
OnMouseMove = PaintBoxMouseMove
OnMouseUp = PaintBoxMouseUp
OnPaint = PaintBoxPaint
OnStartDrag = PaintBoxStartDrag
end
object MainMenu1: TMainMenu
left = 176
top = 192
object MenuItem2: TMenuItem
Caption = 'Datei'
object FileNew: TMenuItem
Caption = '&Neu'
OnClick = FileNewClick
end
object FileOpen: TMenuItem
Caption = 'Öffnen ...'
OnClick = FileOpenClick
end
object FileSave: TMenuItem
Caption = '&Speichern'
OnClick = FileSaveClick
end
object FileSaveAs: TMenuItem
Caption = 'Speichern unter'
end
object MenuItem7: TMenuItem
Caption = '-'
end
object FilePrint: TMenuItem
Caption = '&Drucken'
OnClick = FilePrintClick
end
object FilePrinterSetup: TMenuItem
Caption = 'D&rucker einrichten ...'
OnClick = FilePrinterSetupClick
end
object MenuItem10: TMenuItem
Caption = '-'
end
object FileExit: TMenuItem
Caption = 'Beenden'
OnClick = FileExitClick
end
end
object MenuItem1: TMenuItem
Caption = '&Zeichnen'
object AddConstrSquare: TMenuItem
Caption = 'Konstruktionspunkt &quadratisch'
OnClick = AddConstrSquareClick
end
object AddConstrCircleYellow: TMenuItem
Caption = 'Konstruktionspunkt &kreisförmig, gelb'
OnClick = AddConstrCircleYellowClick
end
object AddConstrCircleGreen: TMenuItem
Caption = 'Konstruktionspunkt kreisförmig, &grün'
OnClick = AddConstrCircleGreenClick
end
object AddConstrFrame: TMenuItem
Caption = 'Konstruktions&rahmen'
OnClick = AddConstrFrameClick
end
end
end
object SaveDialog: TSaveDialog
left = 328
top = 16
end
object OpenDialog: TOpenDialog
left = 307
top = 141
end
object PrintDialog: TPrintDialog
left = 240
top = 16
end
object PrinterSetupDialog: TPrinterSetupDialog
left = 264
top = 80
end
end