-
Notifications
You must be signed in to change notification settings - Fork 2
/
nonvisualctrlsdm.lfm
135 lines (135 loc) · 3.56 KB
/
nonvisualctrlsdm.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
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
object NonVisualCtrlsDataModule: TNonVisualCtrlsDataModule
OnCreate = DataModuleCreate
OldCreateOrder = False
Height = 305
HorizontalOffset = 247
VerticalOffset = 170
Width = 470
object Icons: TImageList
Left = 144
Top = 32
end
object ActionList: TActionList
Images = Icons
Left = 224
Top = 32
object StartTimeTrackingAction: TAction
Caption = 'Start time tracking'
Hint = 'Start time tracking'
ImageIndex = 0
OnExecute = StartTimeTrackingActionExecute
end
object StopTimeTrackingAction: TAction
Caption = 'Stop time tracking'
Hint = 'Stop time tracking'
ImageIndex = 1
OnExecute = StopTimeTrackingActionExecute
end
object ExitAction: TAction
Caption = 'Exit'
Hint = 'Exit'
ImageIndex = 7
OnExecute = ExitActionExecute
end
object MarkTaskAsDoneAction: TAction
Caption = 'Mark as done'
Hint = 'Mark as done'
ImageIndex = 2
OnExecute = MarkTaskAsDoneActionExecute
end
object UnMarkTaskAsDoneAction: TAction
Caption = 'Unmark as done'
Hint = 'Unmark as done'
ImageIndex = 3
OnExecute = UnMarkTaskAsDoneActionExecute
end
object CreateTaskAction: TAction
Caption = 'Add task'
Hint = 'Add task'
ImageIndex = 4
OnExecute = CreateTaskActionExecute
end
object EditTaskAction: TAction
Caption = 'Edit task'
Hint = 'Edit task'
ImageIndex = 6
OnExecute = EditTaskActionExecute
end
object DeleteTaskAction: TAction
Caption = 'Remove task'
Hint = 'Remove task'
ImageIndex = 5
OnExecute = DeleteTaskActionExecute
end
object CreatePeriodAction: TAction
Caption = 'Add period'
Hint = 'Add period'
ImageIndex = 4
OnExecute = CreatePeriodActionExecute
end
object EditPeriodAction: TAction
Caption = 'Edit period'
Hint = 'Edit period'
ImageIndex = 6
OnExecute = EditPeriodActionExecute
end
object DeletePeriodAction: TAction
Caption = 'Delete period'
Hint = 'Delete period'
ImageIndex = 5
OnExecute = DeletePeriodActionExecute
end
object ExportDatabaseAction: TAction
Category = 'service'
Caption = 'Export'
OnExecute = ExportDatabaseActionExecute
end
object BackupDatabaseAction: TAction
Category = 'service'
Caption = 'Backup database'
OnExecute = BackupDatabaseActionExecute
end
object ShowDoneTasksAction: TAction
Caption = 'Show done tasks'
Hint = 'Show done tasks'
OnExecute = ShowDoneTasksActionExecute
end
end
object TrayIcon: TTrayIconEx
PopUpMenu = TrayPopupMenu
OnDblClick = TrayIconDblClick
OnMouseMove = TrayIconMouseMove
AnimateInterval = 600
Left = 56
Top = 112
end
object TrayPopupMenu: TPopupMenu
Images = Icons
Left = 144
Top = 112
object StartTimeTrackingMenuItem: TMenuItem
Action = StartTimeTrackingAction
end
object StopTimeTrackingMenuItem: TMenuItem
Action = StopTimeTrackingAction
end
object DelimiterMenuItem: TMenuItem
Caption = '-'
end
object ExitMenuItem: TMenuItem
Action = ExitAction
end
end
object XMLConfig: TXMLConfig
Filename = 'settings.xml'
StartEmpty = False
RootName = 'Settings'
ReadOnly = False
Left = 56
Top = 32
end
object LanguageIcons: TImageList
Left = 328
Top = 32
end
end