source: cprs/branches/foia-cprs/CPRS-Chart/fReminderTree.dfm@ 459

Last change on this file since 459 was 459, checked in by Kevin Toppenberg, 16 years ago

Adding foia-cprs branch

File size: 4.3 KB
Line 
1object frmReminderTree: TfrmReminderTree
2 Left = 256
3 Top = 220
4 Width = 480
5 Height = 255
6 HelpContext = 11200
7 BorderIcons = [biSystemMenu]
8 Caption = 'Available Reminders'
9 Color = clBtnFace
10 Font.Charset = DEFAULT_CHARSET
11 Font.Color = clWindowText
12 Font.Height = -11
13 Font.Name = 'MS Sans Serif'
14 Font.Style = []
15 FormStyle = fsStayOnTop
16 KeyPreview = True
17 Menu = mmMain
18 OldCreateOrder = False
19 OnClose = FormClose
20 OnCreate = FormCreate
21 OnDestroy = FormDestroy
22 OnKeyUp = FormKeyUp
23 PixelsPerInch = 96
24 TextHeight = 13
25 object pnlTop: TPanel
26 Left = 0
27 Top = 0
28 Width = 472
29 Height = 209
30 Align = alClient
31 BevelOuter = bvNone
32 Caption = 'pnlTop'
33 Constraints.MinHeight = 120
34 Constraints.MinWidth = 300
35 TabOrder = 0
36 OnResize = pnlTopResize
37 object tvRem: TORTreeView
38 Tag = 999
39 Left = 0
40 Top = 17
41 Width = 265
42 Height = 192
43 HideSelection = False
44 Images = dmodShared.imgReminders
45 Indent = 23
46 ReadOnly = True
47 RightClickSelect = True
48 RowSelect = True
49 StateImages = dmodShared.imgReminders
50 TabOrder = 0
51 OnAddition = tvRemAddition
52 OnChange = tvRemChange
53 OnClick = tvRemClick
54 OnCollapsed = tvRemCollapsed
55 OnDeletion = tvRemDeletion
56 OnEnter = tvRemEnter
57 OnExit = tvRemExit
58 OnExpanded = tvRemExpanded
59 OnMouseDown = tvRemMouseDown
60 Caption = 'Available Reminders'
61 NodePiece = 0
62 OnNodeCaptioning = tvRemNodeCaptioning
63 end
64 object hcRem: THeaderControl
65 Left = 0
66 Top = 0
67 Width = 472
68 Height = 17
69 DragReorder = False
70 Sections = <
71 item
72 ImageIndex = -1
73 MaxWidth = 267
74 MinWidth = 267
75 Text = 'Available Reminders'
76 Width = 267
77 end
78 item
79 Alignment = taCenter
80 ImageIndex = -1
81 MaxWidth = 68
82 MinWidth = 68
83 Text = 'Due Date'
84 Width = 68
85 end
86 item
87 ImageIndex = -1
88 MaxWidth = 91
89 MinWidth = 91
90 Text = 'Last Occurrence'
91 Width = 91
92 end
93 item
94 Alignment = taCenter
95 ImageIndex = -1
96 MaxWidth = 43
97 MinWidth = 43
98 Text = 'Priority'
99 Width = 43
100 end>
101 OnSectionClick = hcRemSectionClick
102 end
103 object pnlTopRight: TPanel
104 Left = 266
105 Top = 17
106 Width = 206
107 Height = 192
108 Align = alRight
109 BevelOuter = bvNone
110 Caption = 'pnlTopRight'
111 TabOrder = 2
112 object bvlGap: TBevel
113 Left = 0
114 Top = 175
115 Width = 206
116 Height = 17
117 Align = alBottom
118 Shape = bsSpacer
119 Visible = False
120 end
121 object lbRem: TORListBox
122 Left = 0
123 Top = 0
124 Width = 206
125 Height = 175
126 TabStop = False
127 Style = lbOwnerDrawFixed
128 Align = alClient
129 ItemHeight = 16
130 ParentShowHint = False
131 ShowHint = True
132 TabOrder = 0
133 OnClick = lbRemClick
134 OnDblClick = lbRemClick
135 OnDrawItem = lbRemDrawItem
136 Caption = 'Due Date, last occurance, and priority'
137 ItemTipColor = clWindow
138 ItemTipEnable = False
139 LongList = False
140 OnChange = lbRemChange
141 end
142 end
143 end
144 object mmMain: TMainMenu
145 Images = dmodShared.imgReminders2
146 Left = 48
147 Top = 24
148 object memAction: TMenuItem
149 Caption = '&Action'
150 OnClick = memActionClick
151 object memEval: TMenuItem
152 Caption = '&Evaluate Reminder'
153 OnClick = memEvalClick
154 end
155 object memEvalCat: TMenuItem
156 Caption = 'Evaluate &Category Reminders'
157 OnClick = memEvalCatClick
158 end
159 object memEvalAll: TMenuItem
160 Caption = 'Evaluate Processed &Reminders'
161 OnClick = memEvalAllClick
162 end
163 object N2: TMenuItem
164 Caption = '-'
165 end
166 object memRefresh: TMenuItem
167 Caption = 'Re&fresh Reminder Dialogs'
168 OnClick = memRefreshClick
169 end
170 object mnuCoverSheet: TMenuItem
171 Caption = 'Edit Cover Sheet Reminder &List'
172 OnClick = mnuCoverSheetClick
173 end
174 end
175 end
176end
Note: See TracBrowser for help on using the repository browser.