📄 jvqdsgneditors.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: JvDsgnEditors.PAS, released on 2002-05-26.
The Initial Developer of the Original Code is Peter Th鰎nqvist [peter3 att users dott sourceforge dott net]
Portions created by Peter Th鰎nqvist are Copyright (C) 2002 Peter Th鰎nqvist.
All Rights Reserved.
Contributor(s):
Added editors for JvFooter and JvGroupHeader
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:
-----------------------------------------------------------------------------}
// $Id: JvQDsgnEditors.pas,v 1.33 2004/09/07 23:15:18 asnepvangers Exp $
unit JvQDsgnEditors;
{$I jvcl.inc}
{$I crossplatform.inc}
interface
uses
QWindows, QForms, QControls, QGraphics, QExtCtrls, QDialogs,
QExtDlgs, QMenus, QStdCtrls, QImgList,
ClxImgEdit, DsnConst,
RTLConsts, DesignIntf, DesignEditors, DesignMenus, CLXEditors,
JvQImageIndexEdit,
Classes, SysUtils;
type
// Special TClassProperty, that show events along with all other properties
// This is only useful with version 5 and before
TJvHintProperty = class(TStringProperty)
public
function GetAttributes: TPropertyAttributes; override;
procedure Edit; override;
end;
TJvFilenameProperty = class(TStringProperty)
protected
procedure OnDialogShow(Sender: TObject); virtual;
function GetFilter: string; virtual;
function GetOptions: TOpenOptions; virtual;
public
procedure Edit; override;
function GetAttributes: TPropertyAttributes; override;
function GetValue: string; override;
end;
TJvExeNameProperty = class(TJvFilenameProperty)
protected
function GetFilter: string; override;
end;
TJvDirectoryProperty = class(TStringProperty)
public
procedure Edit; override;
function GetAttributes: TPropertyAttributes; override;
function GetValue: string; override;
end;
TJvStringsProperty = class(TStringProperty)
public
function GetAttributes: TPropertyAttributes; override;
procedure Edit; override;
end;
TJvBasePropertyEditor = class(TDefaultEditor)
protected
procedure EditProperty(const Prop: IProperty; var Continue: Boolean); override;
function GetEditPropertyName: string; virtual; abstract;
public
procedure ExecuteVerb(Index: Integer); override;
function GetVerb(Index: Integer): string; override;
function GetVerbCount: Integer; override;
end;
TJvStringsEditor = class(TJvBasePropertyEditor)
protected
function GetEditPropertyName: string; override;
end;
TJvItemsEditor = class(TJvBasePropertyEditor)
protected
function GetEditPropertyName: string; override;
end;
TJvShortCutProperty = class(TIntegerProperty)
public
function GetAttributes: TPropertyAttributes; override;
procedure GetValues(Proc: TGetStrProc); override;
function GetValue: string; override;
procedure SetValue(const Value: string); override;
end;
TJvDefaultImageIndexProperty = class(TIntegerProperty)
protected
function ImageList: TCustomImageList; virtual;
public
function GetAttributes: TPropertyAttributes; override;
procedure Edit; override;
end;
TJvNosortEnumProperty = class(TEnumProperty)
public
function GetAttributes: TPropertyAttributes; override;
end;
TJvIntegerProperty = class(TIntegerProperty)
public
function GetValue: string; override;
procedure SetValue(const Value: string); override;
end;
TJvFloatProperty = class(TFloatProperty)
public
function GetValue: string; override;
procedure SetValue(const Value: string); override;
end;
TJvImageListEditor = class(TComponentEditor)
private
procedure SaveAsBitmap(ImageList: TImageList);
public
procedure ExecuteVerb(Index: Integer); override;
function GetVerb(Index: Integer): string; override;
function GetVerbCount: Integer; override;
end;
TJvWeekDayProperty = class(TEnumProperty)
function GetAttributes: TPropertyAttributes; override;
end;
TJvComponentFormProperty = class(TComponentProperty)
public
procedure GetValues(Proc: TGetStrProc); override;
procedure SetValue(const Value: string); override;
end;
implementation
uses
TypInfo, Math, QFileCtrls, QConsts,
{$IFDEF MSWINDOWS}
Registry,
{$ENDIF MSWINDOWS}
{$IFDEF UNIX}
JvQRegistryIniFile,
{$ENDIF UNIX}
JvQTypes, JvQStringsForm, JvQDsgnConsts, JvQConsts;
function ValueName(E: Extended): string;
begin
if E = High(Integer) then
Result := RsMaxInt
else
if E = Low(Integer) then
Result := RsMinInt
else
if E = High(Longint) then
Result := RsMaxLong
else
if E = Low(Longint) then
Result := RsMinLong
else
if E = High(Shortint) then
Result := RsMaxShort
else
if E = Low(Shortint) then
Result :=RsMinShort
else
if E = High(Word) then
Result := RsMaxWord
else
Result := '';
end;
function StrToValue(const S: string): Longint;
begin
if CompareText(S, RsMaxLong) = 0 then
Result := High(Longint)
else
if CompareText(S, RsMinLong) = 0 then
Result := Low(Longint)
else
if CompareText(S, RsMaxInt) = 0 then
Result := High(Integer)
else
if CompareText(S, RsMinInt) = 0 then
Result := Low(Integer)
else
if CompareText(S, RsMaxShort) = 0 then
Result := High(Shortint)
else
if CompareText(S, RsMinShort) = 0 then
Result := Low(Shortint)
else
if CompareText(S, RsMaxWord) = 0 then
Result := High(Word)
else
Result := 0;
end;
//=== { TJvFilenameProperty } ================================================
procedure TJvFilenameProperty.Edit;
begin
with TOpenDialog.Create(nil) do
try
FileName := GetStrValue;
Filter := GetFilter;
Options := GetOptions;
OnShow := OnDialogShow;
if Execute then
SetStrValue(FileName);
finally
Free;
end;
end;
function TJvFilenameProperty.GetAttributes: TPropertyAttributes;
begin
Result := [paDialog, paRevertable];
end;
function TJvFilenameProperty.GetFilter: string;
begin
Result := RsAllFilesFilter;
end;
function TJvFilenameProperty.GetOptions: TOpenOptions;
begin
Result := [ofHideReadOnly, ofEnableSizing];
end;
function TJvFilenameProperty.GetValue: string;
begin
Result := inherited GetValue;
if Result = '' then
Result := RsFileName;
end;
//=== { TJvDirectoryProperty } ===============================================
procedure TJvDirectoryProperty.Edit;
var
AName: string;
FolderName: THintString; // (ahuser) TCaption is "type Xxxstring", THintString is "Xxxstring"
C: TPersistent;
begin
C := GetComponent(0);
if C is TComponent then
AName := TComponent(C).Name
else
if C is TCollectionItem then
AName := TCollectionItem(C).GetNamePath
else
AName := C.ClassName;
if SelectDirectory(AName + '.' + GetName, '', FolderName) then
SetValue(FolderName);
end;
function TJvDirectoryProperty.GetAttributes: TPropertyAttributes;
begin
Result := [paDialog, paRevertable];
end;
function TJvDirectoryProperty.GetValue: string;
begin
Result := inherited GetValue;
if Result = '' then
Result := RsDirectory;
end;
//=== { TJvHintProperty } ====================================================
function TJvHintProperty.GetAttributes: TPropertyAttributes;
begin
Result := {inherited GetAttributes +} [paDialog];
end;
procedure TJvHintProperty.Edit;
var
Temp: string;
Comp: TPersistent;
begin
with TJvStrEditDlg.Create(Application) do
try
Comp := GetComponent(0);
if Comp is TComponent then
Caption := TComponent(Comp).Name + '.' + GetName
else
Caption := GetName;
Temp := GetStrValue;
Memo.Lines.Text := Temp;
UpdateStatus(nil);
if ShowModal = mrOk then
begin
Temp := Memo.Text;
while (Length(Temp) > 0) and (Temp[Length(Temp)] < ' ') do
System.Delete(Temp, Length(Temp), 1);
SetStrValue(Temp);
end;
finally
Free;
end;
end;
//=== { TJvStringsProperty } =================================================
procedure TJvStringsProperty.Edit;
var
Temp: string;
Comp: TPersistent;
begin
with TJvStrEditDlg.Create(Application) do
try
Comp := GetComponent(0);
if Comp is TComponent then
Caption := TComponent(Comp).Name + '.' + GetName
else
Caption := GetName;
Temp := GetStrValue;
Memo.Lines.Text := Temp;
UpdateStatus(nil);
if ShowModal = mrOk then
begin
Temp := Memo.Text;
while (Length(Temp) > 0) and (Temp[Length(Temp)] < ' ') do
System.Delete(Temp, Length(Temp), 1);
SetStrValue(Temp);
end;
finally
Free;
end;
end;
function TJvStringsProperty.GetAttributes: TPropertyAttributes;
begin
Result := [paDialog, paRevertable];
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -