-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNotizen.dfm
136 lines (136 loc) · 3.3 KB
/
Notizen.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
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
object FRM_Notizen: TFRM_Notizen
Left = 269
Top = 273
Width = 531
Height = 297
Caption = 'Notizen'
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
OldCreateOrder = False
OnCreate = FormCreate
OnDestroy = FormDestroy
PixelsPerInch = 96
TextHeight = 13
object Panel2: TPanel
Left = 0
Top = 217
Width = 523
Height = 53
Align = alBottom
BevelOuter = bvNone
TabOrder = 1
DesignSize = (
523
53)
object Label1: TLabel
Left = 282
Top = 32
Width = 48
Height = 13
Anchors = [akTop, akRight]
Caption = 'Kategorie:'
end
object LBL_bezeichner: TLabel
Left = 4
Top = 32
Width = 35
Height = 13
Caption = 'Spieler:'
end
object CB_Image: TComboBox
Left = 334
Top = 28
Width = 177
Height = 22
Style = csOwnerDrawFixed
Anchors = [akTop, akRight]
ItemHeight = 16
TabOrder = 2
OnChange = CB_ImageChange
OnDrawItem = CB_ImageDrawItem
end
object TXT_Notiz: TEdit
Left = 4
Top = 4
Width = 507
Height = 21
Anchors = [akLeft, akTop, akRight]
TabOrder = 0
Text = 'Notiz'
OnKeyPress = TXT_NotizKeyPress
end
object TXT_Spezifikation: TEdit
Left = 48
Top = 28
Width = 227
Height = 21
Anchors = [akLeft, akTop, akRight]
TabOrder = 1
OnKeyPress = TXT_NotizKeyPress
end
end
object VST_Notizen: TVirtualStringTree
Left = 0
Top = 0
Width = 523
Height = 217
Align = alClient
Header.AutoSizeIndex = 2
Header.DefaultHeight = 17
Header.Font.Charset = DEFAULT_CHARSET
Header.Font.Color = clWindowText
Header.Font.Height = -11
Header.Font.Name = 'MS Sans Serif'
Header.Font.Style = []
Header.Options = [hoAutoResize, hoColumnResize, hoDrag, hoVisible]
Images = ImageList1
PopupMenu = PopupMenu1
TabOrder = 0
TreeOptions.AutoOptions = [toAutoDropExpand, toAutoScrollOnExpand, toAutoSort, toAutoTristateTracking, toAutoDeleteMovedNodes]
TreeOptions.PaintOptions = [toShowButtons, toShowDropmark, toShowTreeLines, toThemeAware, toUseBlendedImages]
TreeOptions.SelectionOptions = [toFullRowSelect]
OnCompareNodes = VST_NotizenCompareNodes
OnFocusChanged = VST_NotizenFocusChanged
OnGetText = VST_NotizenGetText
OnGetImageIndex = VST_NotizenGetImageIndex
OnGetNodeDataSize = VST_NotizenGetNodeDataSize
OnHeaderClick = VST_NotizenHeaderClick
Columns = <
item
Position = 0
Width = 20
end
item
Position = 1
Width = 130
WideText = 'Position/Name'
end
item
Position = 2
Width = 219
WideText = 'Notiz'
end
item
Position = 3
Width = 150
WideText = 'Datum'
end>
end
object ImageList1: TImageList
Left = 164
Top = 56
end
object PopupMenu1: TPopupMenu
Left = 128
Top = 56
object Entfernen1: TMenuItem
Caption = 'L'#246'schen'
ShortCut = 46
OnClick = Entfernen1Click
end
end
end