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 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434
|
{*****************************************************************************}
{ }
{ Tnt Delphi Unicode Controls }
{ http://tnt.ccci.org/delphi_unicode_controls/ }
{ Version: 2.1.11 }
{ }
{ Copyright (c) 2002-2004, Troy Wolbrink (troy.wolbrink@ccci.org) }
{ }
{*****************************************************************************}
unit TntWideStringProperty_Design;
{$INCLUDE ..\TntCompilers.inc}
interface
{*****************************************************}
{ TWideCharProperty-editor implemented by Mal Hrz }
{*****************************************************}
{$IFDEF COMPILER_9_UP}
{$MESSAGE FATAL 'The Object Inspector in Delphi 9 is already Unicode enabled.'}
{$ENDIF}
uses
Classes, Messages, Windows, Graphics, Controls, Forms, TypInfo, TntDesignEditors_Design,
{$IFDEF COMPILER_6_UP} DesignIntf, DesignEditors, VCLEditors; {$ELSE} DsgnIntf; {$ENDIF}
type
{$IFDEF COMPILER_6_UP}
TWideStringProperty = class(TPropertyEditor, ICustomPropertyDrawing)
{$ELSE}
TWideStringProperty = class(TPropertyEditor)
{$ENDIF}
private
FActivateWithoutGetValue: Boolean;
FPropList: PInstPropList;
protected
{$IFDEF COMPILER_6_UP}
procedure SetPropEntry(Index: Integer; AInstance: TPersistent; APropInfo: PPropInfo); override;
{$ELSE}
procedure SetPropEntry(Index: Integer; AInstance: TPersistent; APropInfo: PPropInfo);
{$ENDIF}
function GetWideStrValueAt(Index: Integer): WideString; dynamic;
function GetWideStrValue: WideString;
procedure SetWideStrValue(const Value: WideString); dynamic;
function GetWideVisualValue: WideString;
public
constructor Create(const ADesigner: ITntDesigner; APropCount: Integer); override;
destructor Destroy; override;
{$IFNDEF COMPILER_6_UP}
procedure Initialize; override;
{$ENDIF}
procedure Activate; override;
procedure PropDrawName(ACanvas: TCanvas; const ARect: TRect; ASelected: Boolean); {$IFNDEF COMPILER_6_UP} override; {$ENDIF}
procedure PropDrawValue(ACanvas: TCanvas; const ARect: TRect; ASelected: Boolean); {$IFNDEF COMPILER_6_UP} override; {$ENDIF}
function AllEqual: Boolean; override;
function GetEditLimit: Integer; override;
function GetValue: AnsiString; override;
procedure SetValue(const Value: AnsiString); override;
{$IFDEF MULTI_LINE_STRING_EDITOR}
function GetAttributes: TPropertyAttributes; override;
procedure Edit; override;
{$ENDIF}
end;
TWideCaptionProperty = class(TWideStringProperty)
public
function GetAttributes: TPropertyAttributes; override;
end;
TWideCharProperty = class(TWideStringProperty)
protected
{$IFDEF COMPILER_7_UP}
function GetIsDefault: Boolean; override;
{$ENDIF}
function GetWideStrValueAt(Index: Integer): WideString; override;
procedure SetWideStrValue(const Value: WideString); override;
public
function GetAttributes: TPropertyAttributes; override;
function GetEditLimit: Integer; override;
end;
procedure Register;
implementation
uses
SysUtils, StdCtrls, TntClasses, TntGraphics, TntControls, TntTypInfo,
TntSysUtils, TntStrEdit_Design, TntSystem, Consts,
{$IFDEF COMPILER_6_UP} RTLConsts, {$ENDIF} TntWindows;
procedure Register;
begin
RegisterPropertyEditor(TypeInfo(WideString), nil, '', TWideStringProperty);
RegisterPropertyEditor(TypeInfo(TWideCaption), nil, '', TWideCaptionProperty);
RegisterPropertyEditor(TypeInfo(WideChar), nil, '', TWideCharProperty);
end;
function GetOIInspListBox: TWinControl;
var
ObjectInspectorForm: TCustomForm;
Comp: TComponent;
begin
Result := nil;
ObjectInspectorForm := GetObjectInspectorForm;
if ObjectInspectorForm <> nil then begin
Comp := ObjectInspectorForm.FindComponent('PropList');
if Comp is TWinControl then
Result := TWinControl(Comp);
end;
end;
function GetOIPropInspEdit: TCustomEdit{TNT-ALLOW TCustomEdit};
var
OIInspListBox: TWinControl;
Comp: TComponent;
begin
Result := nil;
OIInspListBox := GetOIInspListBox;
if OIInspListBox <> nil then begin
Comp := OIInspListBox.FindComponent('EditControl');
if Comp is TCustomEdit{TNT-ALLOW TCustomEdit} then
Result := TCustomEdit{TNT-ALLOW TCustomEdit}(Comp);
end;
end;
//------------------------------
type TAccessWinControl = class(TWinControl);
{ TWideStringProperty }
var
WideStringPropertyCount: Integer = 0;
constructor TWideStringProperty.Create(const ADesigner: ITntDesigner; APropCount: Integer);
begin
inherited;
Inc(WideStringPropertyCount);
GetMem(FPropList, APropCount * SizeOf(TInstProp));
end;
procedure ConvertObjectInspectorBackToANSI;
var
Edit: TCustomEdit{TNT-ALLOW TCustomEdit};
begin
if (Win32PlatformIsUnicode) then begin
Edit := GetOIPropInspEdit;
if Assigned(Edit)
and IsWindowUnicode(Edit.Handle) then
TAccessWinControl(Edit).RecreateWnd;
end;
end;
destructor TWideStringProperty.Destroy;
begin
Dec(WideStringPropertyCount);
if (WideStringPropertyCount = 0) then
ConvertObjectInspectorBackToANSI;
if FPropList <> nil then
FreeMem(FPropList, PropCount * SizeOf(TInstProp));
inherited;
end;
{$IFDEF COMPILER_5} // verified against VCL source in Delphi 5 and BCB 5
type
THackPropertyEditor = class
FDesigner: IFormDesigner;
FPropList: PInstPropList;
end;
{$ENDIF}
{$IFDEF DELPHI_7} // verified against VCL source in Delphi 7
type
THackPropertyEditor = class
FDesigner: IDesigner;
FPropList: PInstPropList;
end;
{$ENDIF}
{$IFNDEF COMPILER_6_UP}
procedure TWideStringProperty.Initialize;
var
I: Integer;
begin
for I := 0 to PropCount - 1 do
with THackPropertyEditor(Self).FPropList[I] do
SetPropEntry(I, Instance, PropInfo);
end;
{$ENDIF}
procedure TWideStringProperty.Activate;
var
Edit: TCustomEdit{TNT-ALLOW TCustomEdit};
begin
FActivateWithoutGetValue := True;
if (Win32PlatformIsUnicode) then begin
Edit := GetOIPropInspEdit;
if Assigned(Edit)
and (not IsWindowUnicode(Edit.Handle)) then
ReCreateUnicodeWnd(Edit, 'EDIT', True);
end;
end;
procedure TWideStringProperty.SetPropEntry(Index: Integer;
AInstance: TPersistent; APropInfo: PPropInfo);
begin
inherited;
with FPropList^[Index] do
begin
Instance := AInstance;
PropInfo := APropInfo;
end;
end;
function TWideStringProperty.GetWideStrValueAt(Index: Integer): WideString;
begin
with FPropList^[Index] do Result := GetWideStrProp(Instance, PropInfo);
end;
function TWideStringProperty.GetWideStrValue: WideString;
begin
Result := GetWideStrValueAt(0);
end;
procedure TWideStringProperty.SetWideStrValue(const Value: WideString);
var
I: Integer;
begin
for I := 0 to PropCount - 1 do
with FPropList^[I] do SetWideStrProp(Instance, PropInfo, Value);
Modified;
end;
function TWideStringProperty.GetWideVisualValue: WideString;
begin
if AllEqual then
Result := GetWideStrValue
else
Result := '';
end;
procedure TWideStringProperty.PropDrawName(ACanvas: TCanvas; const ARect: TRect; ASelected: Boolean);
begin
{$IFDEF COMPILER_6_UP}
DefaultPropertyDrawName(Self, ACanvas, ARect);
{$ELSE}
inherited;
{$ENDIF}
end;
procedure TWideStringProperty.PropDrawValue(ACanvas: TCanvas; const ARect: TRect; ASelected: Boolean);
begin
WideCanvasTextRect(ACanvas, ARect, ARect.Left + 1, ARect.Top + 1, GetWideVisualValue);
end;
function TWideStringProperty.AllEqual: Boolean;
var
I: Integer;
V: WideString;
begin
Result := False;
if PropCount > 1 then
begin
V := GetWideStrValue;
for I := 1 to PropCount - 1 do
if GetWideStrValueAt(I) <> V then Exit;
end;
Result := True;
end;
function TWideStringProperty.GetEditLimit: Integer;
var
Edit: TCustomEdit{TNT-ALLOW TCustomEdit};
begin
Result := MaxInt;
// GetEditLimit is called right before the inplace editor text has been set
if Win32PlatformIsUnicode then begin
Edit := GetOIPropInspEdit;
if Assigned(Edit) then begin
TntControl_SetText(Edit, GetWideStrValue);
TntControl_SetHint(Edit, GetWideStrValue);
end;
end;
end;
function TWideStringProperty.GetValue: AnsiString;
begin
FActivateWithoutGetValue := False;
Result := WideStringToStringEx(GetWideStrValue, CP_ACP{TNT-ALLOW CP_ACP}); // use the same code page as the inplace editor
end;
procedure TWideStringProperty.SetValue(const Value: AnsiString);
var
Edit: TCustomEdit{TNT-ALLOW TCustomEdit};
begin
if (not FActivateWithoutGetValue) then begin
Edit := GetOIPropInspEdit;
if Assigned(Edit) and Win32PlatformIsUnicode then
SetWideStrValue(TntControl_GetText(Edit))
else
SetWideStrValue(StringToWideStringEx(Value, CP_ACP{TNT-ALLOW CP_ACP})); // use the same code page as the inplace editor
end;
end;
{$IFDEF MULTI_LINE_STRING_EDITOR}
function TWideStringProperty.GetAttributes: TPropertyAttributes;
begin
Result := inherited GetAttributes + [paDialog];
end;
procedure TWideStringProperty.Edit;
var
Temp: WideString;
begin
with TTntStrEditDlg.Create(Application) do
try
PrepareForWideStringEdit;
Memo.Text := GetWideStrValue;
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); { trim control characters from end }
SetWideStrValue(Temp);
end;
finally
Free;
end;
end;
{$ENDIF}
{ TWideCaptionProperty }
function TWideCaptionProperty.GetAttributes: TPropertyAttributes;
begin
Result := inherited GetAttributes + [paAutoUpdate];
end;
{ TWideCharProperty }
function TWideCharProperty.GetAttributes: TPropertyAttributes;
begin
Result := [paMultiSelect, paRevertable];
end;
function TWideCharProperty.GetEditLimit: Integer;
begin
inherited GetEditLimit;
Result := 63;
end;
{$IFDEF COMPILER_7_UP}
function TWideCharProperty.GetIsDefault: Boolean;
var
i: Integer;
OldPropList: PInstPropList;
begin
Result := True;
if PropCount > 0 then
begin
OldPropList := THackPropertyEditor(Self).FPropList;
// The memory FPropList points to is write-protected.
// In the constructor we dynamically allocated our own PropList,
// which can be written, so point there instead.
THackPropertyEditor(Self).FPropList := FPropList;
// Delphi can't handle WideChar-type, but does well with Word-type,
// which has exactly the same size as WideChar (i.e. 2 Bytes)
for i := 0 to PropCount - 1 do
FPropList^[i].PropInfo^.PropType^ := TypeInfo(Word);
Result := inherited GetIsDefault;
for i := 0 to PropCount - 1 do
FPropList^[i].PropInfo^.PropType^ := TypeInfo(WideChar);
THackPropertyEditor(Self).FPropList := OldPropList;
end;
end;
{$ENDIF}
function IsCharGraphic(C: WideChar): Boolean;
begin
if Win32PlatformIsUnicode then
Result := not IsWideCharCntrl(C) and not IsWideCharSpace(C)
else // representation as charcode avoids corruption on ANSI-systems
Result := (C >= #33) and (C <= #127);
end;
function TWideCharProperty.GetWideStrValueAt(Index: Integer): WideString;
var
C: WideChar;
begin
with FPropList^[Index] do
C := WideChar(GetOrdProp(Instance, PropInfo));
if IsCharGraphic(C) then
Result := C
else
Result := WideFormat('#%d', [Ord(C)]);
end;
procedure TWideCharProperty.SetWideStrValue(const Value: WideString);
var
C: Longint;
I: Integer;
begin
if Length(Value) = 0 then
C := 0
else if Length(Value) = 1 then
C := Ord(Value[1])
else if Value[1] = '#' then
C := StrToInt(Copy(Value, 2, Maxint))
else
raise EPropertyError.Create(SInvalidPropertyValue);
with GetTypeData(GetPropType)^ do
if (C < MinValue) or (C > MaxValue) then
raise EPropertyError.CreateFmt(SOutOfRange, [MinValue, MaxValue]);
for I := 0 to PropCount - 1 do
with FPropList^[I] do SetOrdProp(Instance, PropInfo, C);
Modified;
end;
initialization
finalization
ConvertObjectInspectorBackToANSI;
end.
|