summaryrefslogtreecommitdiff
path: root/tools/iceit/utils.pas
blob: 7d1cceeab87dc63f1e99086136880e01af570fc4 (plain)
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
unit utils;

interface

uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms;

  function GetValue(S: String; H: Integer): String;
  function SetValue(S: String; H: Integer; Value: String): String;
  function SetWidth(Canvas: TCanvas; S: String; n: Integer): String;

implementation

//--------------------------------------------------------------------------------------
//  Функция возвращает текст из строки S содержащийся между символами '|' на позиции H
//--------------------------------------------------------------------------------------
function GetValue(S: String; H: Integer): String;
var F, n: Integer;
begin
  F := 0;
  Result := '';
  for n := 1 to Length(S) do
  begin
    if S[n] = '|' then inc(F);
    if (S[n] <> '|') and (F = H) then Result := Result + S[n]
  end;
end;

//--------------------------------------------------------------------------------------
//  Функция возвращает строку аналогичную S, но с замененным между
//  символами '|' на позиции H текстом на значение Value
//--------------------------------------------------------------------------------------
function SetValue(S: String; H: Integer; Value: String): String;
var F, n: Integer;
begin
  n := 1;
  F := 0;
  Result := '';
  while (n < Length(S)) and (F < H) do
  begin
    if S[n] = '|' then inc(F);
    Result := Result + S[n];
    inc(n);
  end;
  Result := Result + Value;
  while S[n] <> '|' do inc(n);
  while (n <= Length(S)) do
  begin
    Result := Result + S[n];
    inc(n);
  end;
end;

//--------------------------------------------------------------------------------------
//  Функция возвращает S если ширина строки < n,
//  или S с многоточием '...' урезанную до ширины n
//--------------------------------------------------------------------------------------
function SetWidth(Canvas: TCanvas; S: String; n: Integer): String;
begin
  if Canvas.TextWidth(S) > n then
  begin
    while Canvas.TextWidth(S + '...') > n do SetLength(S, Length(S)-1);
    Result := S + '...';
  end else Result := S;
end;

end.