#include <CommonCheckbox.h>
|
| virtual bool | Initialize () override |
| |
| virtual void | NativePreConstruct () override |
| |
| virtual void | NativeConstruct () override |
| |
| virtual void | Setup () override |
| |
| void | LogDebugError (const FString &Message) const |
| |
| void | LogDebugError (const FString &Message, const int32 Value) const |
| |
| void | LogDebugError (const FString &Message, const float Value) const |
| |
| void | LogDebugWarning (const FString &Message) const |
| |
| void | LogDebugWarning (const FString &Message, const int32 Value) const |
| |
| void | LogDebugWarning (const FString &Message, const float Value) const |
| |
| void | LogDebugMessage (const FString &Message, const bool bWarning=false, const bool bError=false) const |
| |
| void | LogDebugMessage (const FString &Message, const int32 Value, const bool bWarning=false, const bool bError=false) const |
| |
| void | LogDebugMessage (const FString &Message, const float Value, const bool bWarning=false, const bool bError=false) const |
| |
| void | LogDebugMessage (const FString &Message, const bool bValue, const bool bWarning, const bool bError) const |
| |
| void | LogOnScreenMessage (const int32 Key, const FString &Message, FColor Color=FColor::Green) const |
| |
| void | SetCategoryName (const FLogCategoryBase &Category) |
| |
◆ GetIsChecked()
| bool UCommonCheckbox::GetIsChecked |
( |
| ) |
const |
|
inline |
bool bChecked
Definition CommonCheckbox.h:49
◆ Initialize()
| bool UCommonCheckbox::Initialize |
( |
| ) |
|
|
overrideprotectedvirtual |
15{
16 const bool Success = Super::Initialize();
18 if (!ensure(
Checkbox !=
nullptr))
return false;
21 return true;
22}
UTextBlock * TitleTextBlock
Definition CommonCheckbox.h:45
void OnCheckStateChanged(const bool bValue)
Definition CommonCheckbox.cpp:45
UCheckBox * Checkbox
Definition CommonCheckbox.h:43
◆ NativeConstruct()
| void UCommonCheckbox::NativeConstruct |
( |
| ) |
|
|
overrideprotectedvirtual |
Reimplemented from UCommonWidgetBase.
30{
31 Super::NativeConstruct();
33 {
35 }
36}
FText Title
Definition CommonCheckbox.h:28
◆ NativePreConstruct()
| void UCommonCheckbox::NativePreConstruct |
( |
| ) |
|
|
overrideprotectedvirtual |
◆ OnCheckStateChanged()
| void UCommonCheckbox::OnCheckStateChanged |
( |
const bool | bValue | ) |
|
|
private |
◆ SetIsChecked()
| void UCommonCheckbox::SetIsChecked |
( |
const bool | bValue | ) |
|
◆ Setup()
| void UCommonCheckbox::Setup |
( |
| ) |
|
|
overrideprotectedvirtual |
◆ bChecked
| bool UCommonCheckbox::bChecked = false |
|
private |
◆ bShowTitle
| bool UCommonCheckbox::bShowTitle = true |
◆ Checkbox
| UCheckBox* UCommonCheckbox::Checkbox = nullptr |
|
protected |
◆ Title
| FText UCommonCheckbox::Title = FText::FromString("Title Text") |
◆ TitleTextBlock
| UTextBlock* UCommonCheckbox::TitleTextBlock = nullptr |
|
protected |
The documentation for this class was generated from the following files:
- T:/Unreal/Unreal Projects/SpaceAdventure52/SpaceAdventure/Plugins/CommonUIStyle/Source/CommonUIStyle/Public/Widgets/CommonCheckbox.h
- T:/Unreal/Unreal Projects/SpaceAdventure52/SpaceAdventure/Plugins/CommonUIStyle/Source/CommonUIStyle/Private/Widgets/CommonCheckbox.cpp