📄 jvqmrumanager.pas
字号:
{******************************************************************************}
{* WARNING: JEDI VCL To CLX Converter generated unit. *}
{* Manual modifications will be lost on next release. *}
{******************************************************************************}
{-----------------------------------------------------------------------------
The contents of this file are subject to the Mozilla Public License
Version 1.1 (the "License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.mozilla.org/MPL/MPL-1.1.html
Software distributed under the License is distributed on an "AS IS" basis,
WITHOUT WARRANTY OF ANY KIND, either expressed or implied. See the License for
the specific language governing rights and limitations under the License.
The Original Code is: JvMRUList.PAS, released on 2002-07-04.
The Initial Developers of the Original Code are: Fedor Koshevnikov, Igor Pavluk and Serge Korolev
Copyright (c) 1997, 1998 Fedor Koshevnikov, Igor Pavluk and Serge Korolev
Copyright (c) 2001,2002 SGB Software
All Rights Reserved.
Contributors:
Michael Fritz (MenuLocation)
You may retrieve the latest version of this file at the Project JEDI's JVCL home page,
located at http://jvcl.sourceforge.net
Known Issues:
* Using a divider as RecentMenu when MenuLocation = mruChild doesn't work
-----------------------------------------------------------------------------}
// $Id: JvQMRUManager.pas,v 1.16 2004/09/07 23:11:18 asnepvangers Exp $
unit JvQMRUManager;
{$I jvcl.inc}
interface
uses
SysUtils, Classes,
Qt,
QWindows, QMenus, QGraphics, QControls, QForms,
JvQFormPlacement, JvQAppStorage, JvQComponent;
type
TJvRecentStrings = class;
TGetItemEvent = procedure(Sender: TObject; var Caption: string;
var ShortCut: TShortCut; UserData: Longint) of object;
TReadItemEvent = procedure(Sender: TObject; AppStorage: TJvCustomAppStorage;
const Path: string; Index: Integer; var RecentName: string;
var UserData: Longint) of object;
TWriteItemEvent = procedure(Sender: TObject; AppStorage: TJvCustomAppStorage;
const Path: string; Index: Integer; const RecentName: string;
UserData: Longint) of object;
TClickMenuEvent = procedure(Sender: TObject; const RecentName,
Caption: string; UserData: Longint) of object;
TGetItemInfoEvent = procedure(Sender: TObject; Item: TMenuItem) of object;
TAccelDelimiter = (adTab, adSpace);
TRecentMode = (rmInsert, rmAppend);
TMenuLocation = (mruChild, mruSibling);
TJvRecentStrings = class(TStringList)
private
FMaxSize: Integer;
FMode: TRecentMode;
procedure SetMaxSize(Value: Integer);
public
constructor Create;
function Add(const S: string): Integer; override;
procedure AddStrings(Strings: TStrings); override;
procedure DeleteExceed;
procedure Remove(const S: string);
property MaxSize: Integer read FMaxSize write SetMaxSize;
property Mode: TRecentMode read FMode write FMode;
end;
TJvMRUManager = class(TJvComponent)
private
FStrings: TJvRecentStrings;
FItems: TList;
FIniLink: TJvIniLink;
FSeparateSize: Word;
FAutoEnable: Boolean;
FAutoUpdate: Boolean;
FShowAccelChar: Boolean;
FRemoveOnSelect: Boolean;
FStartAccel: Cardinal;
FAccelDelimiter: TAccelDelimiter;
FRecentMenu: TMenuItem;
FOnChange: TNotifyEvent;
FOnGetItem: TGetItemEvent;
FOnClick: TClickMenuEvent;
FOnReadItem: TReadItemEvent;
FOnWriteItem: TWriteItemEvent;
FOnAfterUpdate: TNotifyEvent;
FOnBeforeUpdate: TNotifyEvent;
FOnItemInfo: TGetItemInfoEvent;
FDuplicates: TDuplicates;
FMenuLocation: TMenuLocation;
FMaxLength: Integer;
FCanvas: TCanvas;
FStartEllipsis: Boolean;
procedure ListChanged(Sender: TObject);
procedure ClearRecentMenu;
procedure SetRecentMenu(Value: TMenuItem);
procedure SetSeparateSize(Value: Word);
function GetStorage: TJvFormPlacement;
procedure SetStorage(Value: TJvFormPlacement);
function GetCapacity: Integer;
procedure SetCapacity(Value: Integer);
function GetMode: TRecentMode;
procedure SetMode(Value: TRecentMode);
procedure SetStartAccel(Value: Cardinal);
procedure SetShowAccelChar(Value: Boolean);
procedure SetAccelDelimiter(Value: TAccelDelimiter);
procedure SetAutoEnable(Value: Boolean);
procedure AddMenuItem(Item: TMenuItem);
procedure MenuItemClick(Sender: TObject);
procedure IniSave(Sender: TObject);
procedure IniLoad(Sender: TObject);
procedure InternalLoad(const Section: string);
procedure InternalSave(const Section: string);
procedure SetDuplicates(const Value: TDuplicates);
procedure DoDuplicateFixUp;
function GetStrings: TStrings;
procedure SetMenuLocation(const Value: TMenuLocation);
procedure SetMaxLength(const Value: Integer);
procedure SetStartEllipsis(const Value: Boolean);
protected
function GetCanvas: TCanvas;
function DoMinimizeName(const S: string): string;
procedure Change; dynamic;
procedure Notification(AComponent: TComponent; Operation: TOperation); override;
procedure DoReadItem(AppStorage: TJvCustomAppStorage; const Path: string; Index: Integer;
var RecentName: string; var UserData: Longint); dynamic;
procedure DoWriteItem(AppStorage: TJvCustomAppStorage; const Path: string; Index: Integer;
const RecentName: string; UserData: Longint); dynamic;
procedure GetItemData(var Caption: string; var ShortCut: TShortCut;
UserData: Longint); dynamic;
procedure GetItemInfo(Item: TMenuItem); dynamic;
procedure DoClick(const RecentName, Caption: string; UserData: Longint); dynamic;
procedure DoBeforeUpdate; virtual;
procedure DoAfterUpdate; virtual;
public
constructor Create(AOwner: TComponent); override;
destructor Destroy; override;
procedure Add(const RecentName: string; UserData: Longint);
procedure Clear;
procedure Remove(const RecentName: string);
procedure UpdateRecentMenu;
procedure RemoveInvalid;
procedure LoadFromAppStorage(const AppStorage: TJvCustomAppStorage; const Path: string);
procedure SaveToAppStorage(const AppStorage: TJvCustomAppStorage; const Path: string);
procedure Load;
procedure Save;
function IsMenuEnabled: Boolean;
property Strings: TStrings read GetStrings;
published
// Duplicates works just as for TStrings, but the list doesn't need to be sorted
property Duplicates: TDuplicates read FDuplicates write SetDuplicates;
property AccelDelimiter: TAccelDelimiter read FAccelDelimiter write SetAccelDelimiter default adTab;
property AutoEnable: Boolean read FAutoEnable write SetAutoEnable default True;
property AutoUpdate: Boolean read FAutoUpdate write FAutoUpdate default True;
property MaxLength: Integer read FMaxLength write SetMaxLength default 0;
property StartEllipsis: Boolean read FStartEllipsis write SetStartEllipsis default False;
property Capacity: Integer read GetCapacity write SetCapacity default 10;
property MenuLocation: TMenuLocation read FMenuLocation write SetMenuLocation default mruChild;
property Mode: TRecentMode read GetMode write SetMode default rmInsert;
property RemoveOnSelect: Boolean read FRemoveOnSelect write FRemoveOnSelect default False;
property IniStorage: TJvFormPlacement read GetStorage write SetStorage;
property SeparateSize: Word read FSeparateSize write SetSeparateSize default 0;
property RecentMenu: TMenuItem read FRecentMenu write SetRecentMenu;
property ShowAccelChar: Boolean read FShowAccelChar write SetShowAccelChar default True;
property StartAccel: Cardinal read FStartAccel write SetStartAccel default 1;
property OnChange: TNotifyEvent read FOnChange write FOnChange;
property OnClick: TClickMenuEvent read FOnClick write FOnClick;
// OnGetItemData is called just before the menu item is created
property OnGetItemData: TGetItemEvent read FOnGetItem write FOnGetItem;
property OnReadItem: TReadItemEvent read FOnReadItem write FOnReadItem;
property OnWriteItem: TWriteItemEvent read FOnWriteItem write FOnWriteItem;
// called just before the menu items are updated
property OnBeforeUpdate: TNotifyEvent read FOnBeforeUpdate write FOnBeforeUpdate;
// called just after the menu items have been updated
property OnAfterUpdate: TNotifyEvent read FOnAfterUpdate write FOnAfterUpdate;
// called just before the newly created menu item is added to the RecentMenu submenu
// this makes it easier to set any additional properties of the menu item not
// handled by OnGetItemData.
property OnGetItemInfo: TGetItemInfoEvent read FOnItemInfo write FOnItemInfo;
end;
implementation
uses
{$IFDEF UNITVERSIONING}
JclUnitVersioning,
{$ENDIF UNITVERSIONING}
Math,
JclFileUtils,
JvQJVCLUtils, JvQConsts, JvQResources, JvQTypes;
const
siRecentItem = 'Item_%d';
siRecentData = 'User_%d';
//=== { TJvMRUManager } ======================================================
constructor TJvMRUManager.Create(AOwner: TComponent);
begin
inherited Create(AOwner);
FStrings := TJvRecentStrings.Create;
FItems := TList.Create;
FStrings.OnChange := ListChanged;
FIniLink := TJvIniLink.Create;
FIniLink.OnSave := IniSave;
FIniLink.OnLoad := IniLoad;
FAutoUpdate := True;
FAutoEnable := True;
FShowAccelChar := True;
FStartAccel := 1;
FMenuLocation := mruChild;
end;
destructor TJvMRUManager.Destroy;
begin
ClearRecentMenu;
FIniLink.Free;
FStrings.OnChange := nil;
FStrings.Free;
FreeAndNil(FItems);
FreeAndNil(FCanvas);
inherited Destroy;
end;
procedure TJvMRUManager.Notification(AComponent: TComponent; Operation: TOperation);
begin
inherited Notification(AComponent, Operation);
if (AComponent = RecentMenu) and (Operation = opRemove) then
RecentMenu := nil;
end;
function TJvMRUManager.GetStrings: TStrings;
begin
Result := FStrings;
end;
procedure TJvMRUManager.GetItemData(var Caption: string; var ShortCut: TShortCut;
UserData: Longint);
begin
if Assigned(FOnGetItem) then
FOnGetItem(Self, Caption, ShortCut, UserData);
end;
procedure TJvMRUManager.DoClick(const RecentName, Caption: string; UserData: Longint);
begin
if Assigned(FOnClick) then
FOnClick(Self, RecentName, Caption, UserData);
end;
procedure TJvMRUManager.MenuItemClick(Sender: TObject);
var
I: Integer;
begin
if Sender is TMenuItem then
begin
I := TMenuItem(Sender).Tag;
if (I >= 0) and (I < Strings.Count) then
try
DoClick(Strings[I], TMenuItem(Sender).Caption, Longint(Strings.Objects[I]));
finally
if RemoveOnSelect then
Remove(Strings[I]);
end;
end;
end;
function TJvMRUManager.GetCapacity: Integer;
begin
Result := FStrings.MaxSize;
end;
procedure TJvMRUManager.SetCapacity(Value: Integer);
begin
FStrings.MaxSize := Value;
end;
function TJvMRUManager.GetMode: TRecentMode;
begin
Result := FStrings.Mode;
end;
procedure TJvMRUManager.SetMode(Value: TRecentMode);
begin
FStrings.Mode := Value;
end;
function TJvMRUManager.GetStorage: TJvFormPlacement;
begin
Result := FIniLink.Storage;
end;
procedure TJvMRUManager.SetStorage(Value: TJvFormPlacement);
begin
FIniLink.Storage := Value;
end;
procedure TJvMRUManager.SetAutoEnable(Value: Boolean);
begin
if FAutoEnable <> Value then
begin
FAutoEnable := Value;
if Assigned(FRecentMenu) then
begin
if FAutoEnable then
FRecentMenu.Enabled := IsMenuEnabled
else
FRecentMenu.Enabled := True;
end;
end;
end;
procedure TJvMRUManager.SetStartAccel(Value: Cardinal);
begin
if FStartAccel <> Value then
begin
FStartAccel := Value;
if FAutoUpdate then
UpdateRecentMenu;
end;
end;
procedure TJvMRUManager.SetAccelDelimiter(Value: TAccelDelimiter);
begin
if FAccelDelimiter <> Value then
begin
FAccelDelimiter := Value;
if FAutoUpdate and ShowAccelChar then
UpdateRecentMenu;
end;
end;
procedure TJvMRUManager.SetShowAccelChar(Value: Boolean);
begin
if FShowAccelChar <> Value then
begin
FShowAccelChar := Value;
if FAutoUpdate then
UpdateRecentMenu;
end;
end;
procedure TJvMRUManager.Add(const RecentName: string; UserData: Longint);
var
I: Integer;
begin
if not (Duplicates = dupAccept) and (Strings.IndexOf(RecentName) > -1) then
begin
if Duplicates = dupError then
raise EJVCLException.CreateRes(@RsEDuplicatesNotAllowedInMRUList);
end
else
begin
I := FStrings.Add(RecentName);
Strings.Objects[I] := TObject(UserData);
end;
end;
procedure TJvMRUManager.Clear;
begin
Strings.Clear;
end;
procedure TJvMRUManager.Remove(const RecentName: string);
begin
FStrings.Remove(RecentName);
end;
procedure TJvMRUManager.AddMenuItem(Item: TMenuItem);
begin
if Assigned(Item) then
begin
if FMenuLocation = mruSibling then
begin
if FRecentMenu.HasParent and (FRecentMenu.Parent.MenuIndex >= 0) then
FRecentMenu.Parent.Insert(FRecentMenu.MenuIndex + FItems.Count + 1, Item)
else
FRecentMenu.Add(Item);
end
else
FRecentMenu.Add(Item);
FItems.Add(Item);
end;
end;
procedure TJvMRUManager.DoDuplicateFixUp;
var
I, J: Integer;
Tmp: Boolean;
begin
if Duplicates = dupAccept then
Exit;
Tmp := AutoUpdate;
try
AutoUpdate := False;
I := Strings.Count - 1;
while I >= 0 do
begin
// we don't raise an error here even if Duplicates is dupError
J := Strings.IndexOf(Strings[I]);
while (J > -1) and (J <> I) do
begin
Strings.Delete(J);
Dec(I);
J := Strings.IndexOf(Strings[I]);
end;
Dec(I);
end;
finally
AutoUpdate := Tmp;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -