FGX.Button.TfgCustomButton: различия между версиями
Перейти к навигации
Перейти к поиску
Admin (обсуждение | вклад) (summary) |
Admin (обсуждение | вклад) (summary) |
||
(не показано 10 промежуточных версий этого же участника) | |||
Строка 1: | Строка 1: | ||
− | * [[ FGX. | + | * [[ FGX.Controls.TfgControl | Вверх к родителю: TfgControl ]] |
* [[ FGX.Button | К модулю: FGX.Button ]] | * [[ FGX.Button | К модулю: FGX.Button ]] | ||
Delphi | Delphi | ||
− | <syntaxhighlight lang="Delphi">TfgCustomButton = class (TfgControl)</syntaxhighlight> | + | <syntaxhighlight lang="Delphi">TfgCustomButton = class (TfgControl, IFGXTextable)</syntaxhighlight> |
− | <p class="class-inheritance"><span class="type-border">[[System.Classes.TComponent|TComponent]]</span> -> <span class="type-border">[[FGX. | + | <p class="class-inheritance"><span class="type-border">[[System.Classes.TComponent|TComponent]]</span> -> <span class="type-border">[[FGX.Controls.TfgControl|TfgControl]]</span> -> <span class="type-border">[[FGX.Button.TfgCustomButton|TfgCustomButton]]</span></p> |
Прямые наследники: | Прямые наследники: | ||
Строка 14: | Строка 14: | ||
<span style="color:gray">Описание отсутствует.</span> | <span style="color:gray">Описание отсутствует.</span> | ||
− | |||
== Конструкторы == | == Конструкторы == | ||
Строка 21: | Строка 20: | ||
| <syntaxhighlight lang="Delphi">constructor</syntaxhighlight> || <code>Create(AOwner: [[TComponent]])</code> | | <syntaxhighlight lang="Delphi">constructor</syntaxhighlight> || <code>Create(AOwner: [[TComponent]])</code> | ||
<span style="color:gray">Описание отсутствует.</span> | <span style="color:gray">Описание отсутствует.</span> | ||
+ | |} | ||
+ | |||
+ | == Методы == | ||
+ | |||
+ | {| class="wikitable sortable" | ||
+ | |- | ||
+ | | <syntaxhighlight lang="Delphi">function</syntaxhighlight> || <code lang="Delphi">NormalizedText(): [[string]]</code> | ||
+ | <p>Нормализованное значение <i>Text</i> с учетом указанного <i>CharCase</i> .</p> | ||
|} | |} | ||
Строка 27: | Строка 34: | ||
{| class="wikitable sortable" | {| class="wikitable sortable" | ||
|- | |- | ||
− | | <syntaxhighlight lang="Delphi">property</syntaxhighlight> || <code> | + | | <syntaxhighlight lang="Delphi">property</syntaxhighlight> || <code>IconLink: [[FGX.Assets.TfgAssetLink|TfgAssetLink]]</code> |
<span style="color:gray">Описание отсутствует.</span> | <span style="color:gray">Описание отсутствует.</span> | ||
|- | |- | ||
− | | <syntaxhighlight lang="Delphi">property</syntaxhighlight> || <code> | + | | <syntaxhighlight lang="Delphi">property</syntaxhighlight> || <code>TintColorLink: [[FGX.Assets.Color.TfgAssetColorLink|TfgAssetColorLink]]</code> |
<span style="color:gray">Описание отсутствует.</span> | <span style="color:gray">Описание отсутствует.</span> | ||
|- | |- | ||
− | | <syntaxhighlight lang="Delphi">property</syntaxhighlight> || <code> | + | | <syntaxhighlight lang="Delphi">property</syntaxhighlight> || <code>Kind: [[FGX.Button.Types.TfgButtonKind|TfgButtonKind]]</code> |
+ | <p>Вид кнопки, который отвечает за ее внешний вид.</p> | ||
+ | |- | ||
+ | | <syntaxhighlight lang="Delphi">property</syntaxhighlight> || <code>Appearance: [[FGX.Button.Appearance.TfgButtonAppearance|TfgButtonAppearance]]</code> | ||
<span style="color:gray">Описание отсутствует.</span> | <span style="color:gray">Описание отсутствует.</span> | ||
|- | |- | ||
− | | <syntaxhighlight lang="Delphi">property</syntaxhighlight> || <code> | + | | <syntaxhighlight lang="Delphi">property</syntaxhighlight> || <code>CharCase: [[FGX.Button.TfgButtonTextCharCase|TfgButtonTextCharCase]]</code> |
+ | <p>Режим отображения надписи (оригинальное отображение, в нижнем регистре, в верхнем регистре, первая буква в предложении заглавная).</p> | ||
+ | |- | ||
+ | | <syntaxhighlight lang="Delphi">property</syntaxhighlight> || <code>Text: [[string]]</code> | ||
+ | |||
+ | <p>Надпись на кнопке.</p><div class="info">Надпись не выводится при <i>ImageLocation = TfgImageLocation.Center</i></div> | ||
+ | |- | ||
+ | | <syntaxhighlight lang="Delphi">property</syntaxhighlight> || <code>IconName: [[TfgAssetName|TfgAssetName]]</code> | ||
+ | <p>Название ресурса, содержащего картинку, которая будет выводиться на кнопке.</p> | ||
+ | |- | ||
+ | | <syntaxhighlight lang="Delphi">property</syntaxhighlight> || <code>TintColor: [[TAlphaColor]]</code> | ||
<span style="color:gray">Описание отсутствует.</span> | <span style="color:gray">Описание отсутствует.</span> | ||
|- | |- | ||
− | | <syntaxhighlight lang="Delphi">property</syntaxhighlight> || <code> | + | | <syntaxhighlight lang="Delphi">property</syntaxhighlight> || <code>TintColorName: [[TfgAssetName|TfgAssetName]]</code> |
<span style="color:gray">Описание отсутствует.</span> | <span style="color:gray">Описание отсутствует.</span> | ||
|- | |- | ||
| <syntaxhighlight lang="Delphi">property</syntaxhighlight> || <code>TextSettings: [[FGX.Button.Types.TfgButtonTextSettings|TfgButtonTextSettings]]</code> | | <syntaxhighlight lang="Delphi">property</syntaxhighlight> || <code>TextSettings: [[FGX.Button.Types.TfgButtonTextSettings|TfgButtonTextSettings]]</code> | ||
− | < | + | <p>Настройки шрифта/цветов отображения надписи <i>Text</i> .</p> |
|- | |- | ||
− | | <syntaxhighlight lang="Delphi">property</syntaxhighlight> || <code> | + | | <syntaxhighlight lang="Delphi">property</syntaxhighlight> || <code>TextShadow: [[FGX.Types.Shadow.TfgBorderShadow|TfgBorderShadow]]</code> |
<p>Тень текста.</p> | <p>Тень текста.</p> | ||
|} | |} | ||
Строка 53: | Строка 73: | ||
{| class="wikitable sortable" | {| class="wikitable sortable" | ||
|- | |- | ||
− | | <syntaxhighlight lang="Delphi">const</syntaxhighlight> || <code> | + | | <syntaxhighlight lang="Delphi">const</syntaxhighlight> || <code>DefaultButtonKind: [[FGX.Button.Types.TfgButtonKind|TfgButtonKind]]</code> |
+ | <span style="color:gray">Описание отсутствует.</span> | ||
+ | |- | ||
+ | | <syntaxhighlight lang="Delphi">const</syntaxhighlight> || <code>DefaultCharCase: [[FGX.Button.TfgButtonTextCharCase|TfgButtonTextCharCase]]</code> | ||
<span style="color:gray">Описание отсутствует.</span> | <span style="color:gray">Описание отсутствует.</span> | ||
|- | |- | ||
− | | <syntaxhighlight lang="Delphi">const</syntaxhighlight> || <code> | + | | <syntaxhighlight lang="Delphi">const</syntaxhighlight> || <code>DefaultTintColor: [[TAlphaColor]]</code> |
<span style="color:gray">Описание отсутствует.</span> | <span style="color:gray">Описание отсутствует.</span> | ||
|} | |} |
Текущая версия на 03:14, 6 декабря 2021
Delphi
TfgCustomButton = class (TfgControl, IFGXTextable)
TComponent -> TfgControl -> TfgCustomButton
Прямые наследники: TfgButton
Содержание
Описание
Описание отсутствует.
Конструкторы
constructor
|
Create(AOwner: TComponent)
Описание отсутствует. |
Методы
function
|
NormalizedText(): string
Нормализованное значение Text с учетом указанного CharCase . |
Свойства
property
|
IconLink: TfgAssetLink
Описание отсутствует. |
property
|
TintColorLink: TfgAssetColorLink
Описание отсутствует. |
property
|
Kind: TfgButtonKind
Вид кнопки, который отвечает за ее внешний вид. |
property
|
Appearance: TfgButtonAppearance
Описание отсутствует. |
property
|
CharCase: TfgButtonTextCharCase
Режим отображения надписи (оригинальное отображение, в нижнем регистре, в верхнем регистре, первая буква в предложении заглавная). |
property
|
Text: string
Надпись на кнопке. Надпись не выводится при ImageLocation = TfgImageLocation.Center
|
property
|
IconName: TfgAssetName
Название ресурса, содержащего картинку, которая будет выводиться на кнопке. |
property
|
TintColor: TAlphaColor
Описание отсутствует. |
property
|
TintColorName: TfgAssetName
Описание отсутствует. |
property
|
TextSettings: TfgButtonTextSettings
Настройки шрифта/цветов отображения надписи Text . |
property
|
TextShadow: TfgBorderShadow
Тень текста. |
Константы
const
|
DefaultButtonKind: TfgButtonKind
Описание отсутствует. |
const
|
DefaultCharCase: TfgButtonTextCharCase
Описание отсутствует. |
const
|
DefaultTintColor: TAlphaColor
Описание отсутствует. |