Menu

[r3166]: / trunk / Src / UCommandBars.pas  Maximize  Restore  History

Download this file

411 lines (364 with data), 12.1 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
 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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
{
* This Source Code Form is subject to the terms of the Mozilla Public License,
* v. 2.0. If a copy of the MPL was not distributed with this file, You can
* obtain one at http://mozilla.org/MPL/2.0/
*
* Copyright (C) 2009-2013, Peter Johnson (www.delphidabbler.com).
*
* $Rev$
* $Date$
*
* Defines various classes used to configure one or more command bars owned by
* a container. Command bars are UI elements used to issue commands, e.g. menus,
* toolbars etc.
}
unit UCommandBars;
interface
uses
// Delphi
Classes, Generics.Collections, ActnList, Menus, ComCtrls, ImgList;
type
{
TCommandBarID:
Valid values for command bar IDs used to uniquely identify command bars
within a container.
}
TCommandBarID = type Byte;
TCommandBarIDs = set of TCommandBarID;
{
ICommandBarConfig:
Interface supported by objects that can configure one or more
"command bars".
}
ICommandBarConfig = interface(IInterface)
['{B70EAC6F-F0AB-4318-B36A-CBC3C89DC9A5}']
procedure AddAction(const Action: TCustomAction;
const ID: TCommandBarID); overload;
{Adds an new command action to a command bar.
@param Action [in] Action to be added.
@param Kind [in] Id of command bar to receive command bar item.
}
procedure AddAction(const Action: TCustomAction;
const IDs: TCommandBarIDs); overload;
procedure AddSpacer(const ID: TCommandBarID); overload;
{Adds a spacer to a command bar.
@param Kind [in] Id of command bar to receive spacer.
}
procedure AddSpacer(const IDs: TCommandBarIDs); overload;
procedure SetImages(const Images: TCustomImageList);
{Specifies image list to be used by all command bars.
@param Images [in] Image list to be used.
}
end;
{
TCommandBarWrapper:
Abstract base class for classes that wrap individual command bars to add
actions and spacers and to reference image lists.
}
TCommandBarWrapper = class abstract(TComponent)
public
procedure AddAction(const Action: TCustomAction); virtual; abstract;
{Adds a new command action to the wrapped command bar.
@param Action [in] Action to be added.
}
procedure AddSpacer; virtual; abstract;
{Adds a new spacer to the wrapped command bar.
}
procedure SetImages(const Images: TCustomImageList); virtual; abstract;
{Specifies the image list to be used by the wrapped command bar.
@param Images [in] Image list to be used.
}
end;
{
TPopupMenuWrapperClass:
Reference to TPopupMenuWrapper class and descendants.
}
TPopupMenuWrapperClass = class of TPopupMenuWrapper;
{
TPopupMenuWrapper:
Class that wraps a popup menu to add actions and spacers and to use a
specified image list.
}
TPopupMenuWrapper = class(TCommandBarWrapper)
strict private
var fMenu: TPopupMenu; // Value of Menu property
procedure MenuPopupHandler(Sender: TObject);
{Handles popup menu's OnPopup event by initialising menu and hiding
disabled menu items. Assumes menu items are not nested.
@param Sender [in] Not used.
}
strict protected
procedure InitMenu; virtual;
{Method called method menu pops up to permit customisation. Does nothing.
Sub classes can override.
}
procedure PrepareMenu; virtual;
{Prepares menu before it pops up. Calls InitMenu then hides any disabled
menu items. Assumes menu items are not nested.
}
property Menu: TPopupMenu read fMenu;
{Reference to wrapped popup menu}
public
constructor Create(const Menu: TPopupMenu); reintroduce; virtual;
{Constructor. Sets up wrapper for a popup menu.
@param Menu [in] Popup menu to be wrapped.
}
procedure AddAction(const Action: TCustomAction); override;
{Adds a new command action to the wrapped popup menu.
@param Action [in] Action to be added.
}
procedure AddSpacer; override;
{Adds a new spacer to the wrapped poup menu.
}
procedure SetImages(const Images: TCustomImageList); override;
{Specifies the image list to be used by the wrapped popup menu.
@param Images [in] Image list to be used.
}
end;
{
TToolBarWrapper:
Class that wraps a toolbar to add actions and spacers and to use a specified
image list.
}
TToolBarWrapper = class(TCommandBarWrapper)
strict private
var fToolBar: TToolBar; // wrapped toolbar
public
constructor Create(const Toolbar: TToolBar); reintroduce;
{Constructor. Sets up wrapper for a toobar.
@param Menu [in] Toolbar to be wrapped.
}
procedure AddAction(const Action: TCustomAction); override;
{Adds a new command action to the wrapped toobar.
@param Action [in] Action to be added.
}
procedure AddSpacer; override;
{Adds a new spacer to the wrapped toolbar.
}
procedure SetImages(const Images: TCustomImageList); override;
{Specifies the image list to be used by the wrapped toolbar.
@param Images [in] Image list to be used.
}
end;
{
TCommandBarMgr:
Contained class that manages the configuration of one or more command bars
on behalf an outer object.
}
TCommandBarMgr = class(TContainedObject, ICommandBarConfig)
strict private
type
// Class that maps command bar ids to command bar wrapper objects
TCommandBarMap = TDictionary<TCommandBarID,TCommandBarWrapper>;
var
fCommandBars: TCommandBarMap; // Map of command bar IDs to command bars
fImageList: TCustomImageList; // Images list used by all command bars
procedure UpdateImageLists;
{Updates image list used by with all managed command bars.
}
public
constructor Create(const Controller: IInterface);
{Constructor. Creates contained object.
@param Controller [in] IInterface reference to containing object.
}
destructor Destroy; override;
{Destructor. Tears down object.
}
procedure AddCommandBar(const ID: TCommandBarID;
const CommandBar: TCommandBarWrapper);
{Adds a new command bar to command bar manager.
@param ID [in] ID of command bar.
@param CommandBar [in] command bar object to be added.
}
{ ICommandBarConfig methods }
procedure AddAction(const Action: TCustomAction;
const ID: TCommandBarID); overload;
{Adds an new command action to a command bar.
@param Action [in] Action to be added.
@param Kind [in] Id of command bar to receive command bar item.
}
procedure AddAction(const Action: TCustomAction;
const IDs: TCommandBarIDs); overload;
procedure AddSpacer(const ID: TCommandBarID); overload;
{Adds a spacer to a command bar.
@param Kind [in] Id of command bar to receive spacer.
}
procedure AddSpacer(const IDs: TCommandBarIDs); overload;
procedure SetImages(const Images: TCustomImageList); virtual;
{Specifies image list to be used by all command bars.
@param Images [in] Image list to be used.
}
end;
implementation
uses
// Project
UMenus, UToolButtonEx;
{ TCommandBarMgr }
procedure TCommandBarMgr.AddAction(const Action: TCustomAction;
const ID: TCommandBarID);
{Adds an new command action to a command bar.
@param Action [in] Action to be added.
@param Kind [in] Id of command bar to receive command bar item.
}
begin
Assert(fCommandBars.ContainsKey(ID), ClassName + '.AddAction: ID not found');
fCommandBars[ID].AddAction(Action);
end;
procedure TCommandBarMgr.AddAction(const Action: TCustomAction;
const IDs: TCommandBarIDs);
var
ID: TCommandBarID;
begin
for ID in IDs do
AddAction(Action, ID);
end;
procedure TCommandBarMgr.AddCommandBar(const ID: TCommandBarID;
const CommandBar: TCommandBarWrapper);
{Adds a new command bar to command bar manager.
@param ID [in] ID of command bar.
@param CommandBar [in] command bar object to be added.
}
begin
fCommandBars.Add(ID, CommandBar);
CommandBar.SetImages(fImageList);
end;
procedure TCommandBarMgr.AddSpacer(const IDs: TCommandBarIDs);
var
ID: TCommandBarID;
begin
for ID in IDs do
AddSpacer(ID);
end;
procedure TCommandBarMgr.AddSpacer(const ID: TCommandBarID);
{Adds a spacer to a command bar.
@param Kind [in] Id of command bar to receive spacer.
}
begin
Assert(fCommandBars.ContainsKey(ID), ClassName + '.AddSpacer: ID not found');
fCommandBars[ID].AddSpacer;
end;
constructor TCommandBarMgr.Create(const Controller: IInterface);
{Constructor. Creates contained object.
@param Controller [in] IInterface reference to containing object.
}
begin
inherited Create(Controller);
// Use default integer comparer and hash for TCommandBarID
fCommandBars := TCommandBarMap.Create;
end;
destructor TCommandBarMgr.Destroy;
{Destructor. Tears down object.
}
begin
fCommandBars.Free;
inherited;
end;
procedure TCommandBarMgr.SetImages(const Images: TCustomImageList);
{Specifies image list to be used by all command bars.
@param Images [in] Image list to be used.
}
begin
fImageList := Images;
UpdateImageLists;
end;
procedure TCommandBarMgr.UpdateImageLists;
{Updates image list used by with all managed command bars.
}
var
CmdBar: TCommandBarWrapper; // each command bar in map
begin
for CmdBar in fCommandBars.Values do
CmdBar.SetImages(fImageList);
end;
{ TPopupMenuWrapper }
procedure TPopupMenuWrapper.AddAction(const Action: TCustomAction);
{Adds a new command action to the wrapped popup menu.
@param Action [in] Action to be added.
}
begin
fMenu.Items.Add(CreateMenuItem(fMenu, TMenuItem, Action));
end;
procedure TPopupMenuWrapper.AddSpacer;
{Adds a new spacer to the wrapped poup menu.
}
begin
fMenu.Items.Add(CreateMenuSpacer(fMenu, TMenuItem));
end;
constructor TPopupMenuWrapper.Create(const Menu: TPopupMenu);
{Constructor. Sets up wrapper for a popup menu.
@param Menu [in] Popup menu to be wrapped.
}
begin
inherited Create(Menu);
fMenu := Menu;
fMenu.OnPopup := MenuPopupHandler;
end;
procedure TPopupMenuWrapper.InitMenu;
{Method called method menu pops up to permit customisation. Does nothing. Sub
classes can override.
}
begin
// Do nothing
end;
procedure TPopupMenuWrapper.MenuPopupHandler(Sender: TObject);
{Handles popup menu's OnPopup event by initialising menu and hiding disabled
menu items. Assumes menu items are not nested.
@param Sender [in] Not used.
}
begin
PrepareMenu;
end;
procedure TPopupMenuWrapper.PrepareMenu;
{Prepares menu before it pops up. Calls InitMenu then hides any disabled
menu items. Assumes menu items are not nested.
}
var
Idx: Integer; // loops through all menu items
MI: TMenuItem; // references each menu item
begin
InitMenu;
for Idx := 0 to Pred(fMenu.Items.Count) do
begin
MI := fMenu.Items[Idx];
if Assigned(MI.Action) then
MI.Action.Update;
MI.Visible := MI.Enabled;
end;
end;
procedure TPopupMenuWrapper.SetImages(const Images: TCustomImageList);
{Specifies the image list to be used by the wrapped popup menu.
@param Images [in] Image list to be used.
}
begin
fMenu.Images := Images;
end;
{ TToolBarWrapper }
procedure TToolBarWrapper.AddAction(const Action: TCustomAction);
{Adds a new command action to the wrapped toobar.
@param Action [in] Action to be added.
}
begin
TToolButtonEx.NewHostedButton(fToolBar, Action);
end;
procedure TToolBarWrapper.AddSpacer;
{Adds a new spacer to the wrapped toolbar.
}
begin
TToolButtonEx.NewHostedSeparator(fToolBar);
end;
constructor TToolBarWrapper.Create(const Toolbar: TToolBar);
{Constructor. Sets up wrapper for a toobar.
@param Menu [in] Toolbar to be wrapped.
}
begin
inherited Create(Toolbar);
fToolbar := Toolbar;
end;
procedure TToolBarWrapper.SetImages(const Images: TCustomImageList);
{Specifies the image list to be used by the wrapped toolbar.
@param Images [in] Image list to be used.
}
begin
fToolBar.Images := Images;
end;
end.
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.