-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOpenGLDrawing.dfm
57 lines (57 loc) · 1.39 KB
/
OpenGLDrawing.dfm
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
object Form1: TForm1
Left = 0
Top = 0
BorderStyle = bsDialog
Caption = 'Drawing In OpenGL'
ClientHeight = 441
ClientWidth = 704
Color = clBtnFace
Constraints.MaxHeight = 480
Constraints.MaxWidth = 720
Constraints.MinHeight = 480
Constraints.MinWidth = 480
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'Segoe UI'
Font.Style = []
Position = poDesktopCenter
OnCreate = FormCreate
OnMouseDown = FormMouseDown
OnMouseMove = FormMouseMove
OnPaint = FormPaint
TextHeight = 15
object PopupMenu1: TPopupMenu
Left = 424
Top = 176
object LineModeButton: TMenuItem
Caption = 'Line Mode'
Checked = True
RadioItem = True
OnClick = LineModeButtonClick
end
object ArcModeButton: TMenuItem
Caption = 'Arc Mode'
RadioItem = True
OnClick = ArcModeButtonClick
end
object N1: TMenuItem
Caption = '-'
end
object UndoButton: TMenuItem
Caption = 'Undo'
OnClick = UndoButtonClick
end
object N2: TMenuItem
Caption = '-'
end
object FinishDrawingButton: TMenuItem
Caption = 'Finish Drawing'
OnClick = FinishDrawingButtonClick
end
object ContinueDrawingButton: TMenuItem
Caption = 'Continue Drawing'
OnClick = ContinueDrawingButtonClick
end
end
end