fpc/tests/webtbs/uw13015.pp
Jonas Maebe 4bb1d13d83 * fixed reading utf-8 strings from streams (based on patch by Anton
Kavalenka, mantis #13015)

git-svn-id: trunk@12777 -
2009-02-23 14:58:23 +00:00

64 lines
1.1 KiB
ObjectPascal

unit uw13015;
{$ifdef FPC}
{$mode delphi}
{$endif}
interface
uses
Classes;
type
TTestClass=class(TComponent)
private
fWStr:WideString;
public
constructor Create(AnOwner:TComponent);override;
procedure DumpAndCheck;
published
property Wstr:WideString read fWStr write fWStr;
end;
const
{$ifdef fpc}
ws:WideString=#$43f#$440#$438#$432#$435#$442', '#$43f#$440#$44B#$432#$456#$442#$430#$43d#$44c#$43d#$435' - pr'#$fc'fung spa'#$df' gut';
{$else}
ws:WideString='ïðèâåò, ïðûâ³òàíüíå - prufung spa'#$df' gut';
{$endif}
procedure Register;
implementation
uses SysUtils;
constructor TTestClass.Create(AnOwner:TComponent);
begin
inherited Create(AnOwner);
fWStr:=ws;
end;
procedure TTestClass.DumpAndCheck;
var
i,w:integer;
begin
for i:=1 to length(fWstr) do
begin
w:=Word(fWstr[i]);
write(format('%.04x ',[w]));
if w<>word(ws[i]) then
halt(1);
end;
writeln;
end;
procedure Register;
begin
RegisterComponents('tc',[TTestClass]);
end;
end.