Сделать установщик с текстом, который отформатирован (частично выделен жирным шрифтом) в Inno Setup? - PullRequest
5 голосов
/ 30 января 2012

Кто-нибудь видел установщик игры GOG.com? Как сделать приветственную текстовую строку, как там, включая путь и нужный размер в одной подписи? Где часть выделена жирным шрифтом.

Вот примеры того, как изменяется разрыв строки после изменения пути установки

http://i.stack.imgur.com/VKbtE.jpg

enter image description here

enter image description here

1 Ответ

17 голосов
/ 30 января 2012

Можно использовать TRichEditViewer, задав для свойства RFTText значение UseRichEdit, равное True.

Попробуйте этот пример

procedure CreateCustomPages;
var
  Page                 : TWizardPage;
  rtfHelpText          : TRichEditViewer;
  s: string;
begin
 Page := CreateCustomPage(wpWelcome, 'Custom wizard page controls', 'Bold Demo');
 Page.Surface.Align:=alCLient;

 s:='{\rtf1\ansi\ansicpg1252\deff0\deflang13322{\fonttbl{\f0\fnil\fcharset0 Tahoma;}}'+
    '\viewkind4\uc1\pard\f0\fs16 This is a normal text, \b and this is a bold text\b0\par}';

 rtfHelpText := TRichEditViewer.Create(Page);
 rtfHelpText.Parent := Page.Surface;
 rtfHelpText.Left :=    0;
 rtfHelpText.Top := 0;
 rtfHelpText.Width := Page.SurfaceWidth;
 rtfHelpText.Height := Page.SurfaceHeight;
 rtfHelpText.Scrollbars := ssVertical;
 rtfHelpText.ReadOnly := True;
 rtfHelpText.UseRichEdit := True;
 rtfHelpText.RTFText := s;
end;

procedure InitializeWizard();
begin
  CreateCustomPages();
end;

enter image description here

...