mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
37 lines
911 B
C++
37 lines
911 B
C++
#include "FortTabListWidgetBase.h"
|
|
#include "Templates/SubclassOf.h"
|
|
|
|
void UFortTabListWidgetBase::SetTabHiddenState(FName TabNameID, bool bHidden) {
|
|
}
|
|
|
|
bool UFortTabListWidgetBase::RegisterFortTab(FName TabNameID, TSubclassOf<UCommonButton> TabButtonType, const FFortTabButtonLabelInfo& LabelInfo, UWidget* ContentWidget) {
|
|
return false;
|
|
}
|
|
|
|
void UFortTabListWidgetBase::RegisterAllPreregisteredTabInfos() {
|
|
}
|
|
|
|
bool UFortTabListWidgetBase::IsTabVisible(FName TabId) {
|
|
return false;
|
|
}
|
|
|
|
bool UFortTabListWidgetBase::IsLastTabActive() const {
|
|
return false;
|
|
}
|
|
|
|
bool UFortTabListWidgetBase::IsFirstTabActive() const {
|
|
return false;
|
|
}
|
|
|
|
int32 UFortTabListWidgetBase::GetVisibleTabCount() {
|
|
return 0;
|
|
}
|
|
|
|
bool UFortTabListWidgetBase::GetPreregisteredTabInfo(const FName TabNameID, FFortTabListRegistrationInfo& OutTabInfo) {
|
|
return false;
|
|
}
|
|
|
|
UFortTabListWidgetBase::UFortTabListWidgetBase() {
|
|
}
|
|
|