-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTaskSwitchFrame.dfm
More file actions
96 lines (96 loc) · 2.08 KB
/
TaskSwitchFrame.dfm
File metadata and controls
96 lines (96 loc) · 2.08 KB
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
object frmTaskSwitch: TfrmTaskSwitch
Left = 0
Top = 0
Width = 435
Height = 129
TabOrder = 0
object ListView: TListView
Left = 0
Top = 0
Width = 435
Height = 129
Align = alClient
Columns = <
item
Caption = '#'
Width = 22
end
item
Alignment = taRightJustify
Caption = 'ID'
Width = 40
end
item
Caption = 'Name'
Width = 300
end
item
Caption = 'Time'
end>
OwnerData = True
ReadOnly = True
RowSelect = True
PopupMenu = PopupMenu
TabOrder = 0
ViewStyle = vsReport
OnCustomDrawItem = ListViewCustomDrawItem
OnData = ListViewData
OnDblClick = ListViewDblClick
OnKeyDown = ListViewKeyDown
OnSelectItem = ListViewSelectItem
end
object Timer: TTimer
Interval = 60000
OnTimer = TimerTimer
Left = 40
Top = 48
end
object PopupMenu: TPopupMenu
Left = 72
Top = 48
object Activate1: TMenuItem
Action = acActivate
end
object Deactivate1: TMenuItem
Action = acDeactivate
end
object askProperties1: TMenuItem
Action = acProperties
end
object DeactivateandComplete1: TMenuItem
Action = acComplete
end
object LogEntry1: TMenuItem
Action = acLog
end
end
object ActionList: TActionList
Left = 104
Top = 48
object acActivate: TAction
Caption = '&Activate'
Enabled = False
OnExecute = acActivateExecute
end
object acDeactivate: TAction
Caption = '&Deactivate'
Enabled = False
OnExecute = acDeactivateExecute
end
object acProperties: TAction
Caption = 'Task &Properties'
Enabled = False
OnExecute = acPropertiesExecute
end
object acComplete: TAction
Caption = 'Make &Completed'
Enabled = False
OnExecute = acCompleteExecute
end
object acLog: TAction
Caption = '&Log Entry...'
Enabled = False
OnExecute = acLogExecute
end
end
end