Dayz 1.25
Dayz Code Explorer by KGB
Загрузка...
Поиск...
Не найдено
Класс AttachmentsWrapper
+ Граф наследования:AttachmentsWrapper:

Защищенные члены

void AttachmentsWrapper (LayoutHolder parent)
 
void SetParent (Attachments atts)
 
override bool Select ()
 
override bool SelectItem ()
 
override bool Combine ()
 
override bool TransferItemToVicinity ()
 
override bool TransferItem ()
 
override bool InspectItem ()
 
override bool SplitItem ()
 
override bool EquipItem ()
 
override bool CanEquip ()
 
override bool CanCombine ()
 
override bool CanCombineAmmo ()
 
override bool IsDisplayable ()
 
override bool IsItemActive ()
 
override bool IsItemWithQuantityActive ()
 
override void UpdateInterval ()
 
int GetFocusedSlot ()
 
void ShowFalseAttachmentsHeader (bool show)
 
void SetFalseAttachmentsHeaderText (string text)
 
TextWidget GetFalseHeaderTextWidget ()
 

Защищенные данные

Widget m_AttachmentsFalseHeader
 
RichTextWidget m_AttachmentsFalseHeaderText
 

Закрытые данные

Attachments m_Attachments
 

Подробное описание

Конструктор(ы)

◆ AttachmentsWrapper()

void AttachmentsWrapper ( LayoutHolder parent)
inlineprotected
8 {
9 m_AttachmentsFalseHeader = m_RootWidget.FindAnyWidget( "attachmets_wrapper_header_spacer" );
10 m_AttachmentsFalseHeaderText = RichTextWidget.Cast(m_AttachmentsFalseHeader.FindAnyWidget("TextWidget0"));
11 m_AttachmentsFalseHeader.Show( false );
12 }
ref Widget m_RootWidget[MAX_SIMULTANIOUS_PLAYERS]
Definition PluginRemotePlayerDebugClient.c:14
RichTextWidget m_AttachmentsFalseHeaderText
Definition AttachmentsWrapper.c:5
Widget m_AttachmentsFalseHeader
Definition AttachmentsWrapper.c:4
Definition gameplay.c:316

Перекрестные ссылки m_AttachmentsFalseHeader, m_AttachmentsFalseHeaderText и m_RootWidget.

Методы

◆ CanCombine()

override bool CanCombine ( )
inlineprotected
73 {
75 }
bool CanCombine()
Definition Attachments.c:204
Attachments m_Attachments
Definition AttachmentsWrapper.c:3

Перекрестные ссылки Attachments::CanCombine() и m_Attachments.

◆ CanCombineAmmo()

override bool CanCombineAmmo ( )
inlineprotected
78 {
80 }
bool CanCombineAmmo()
Definition Attachments.c:212

Перекрестные ссылки Attachments::CanCombineAmmo() и m_Attachments.

◆ CanEquip()

override bool CanEquip ( )
inlineprotected
68 {
69 return m_Attachments.CanEquip();
70 }
bool CanEquip()
Definition Attachments.c:223

Перекрестные ссылки Attachments::CanEquip() и m_Attachments.

◆ Combine()

override bool Combine ( )
inlineprotected
30 {
31 return m_Attachments.Combine();
32 }
bool Combine()
Definition Attachments.c:234

Перекрестные ссылки Attachments::Combine() и m_Attachments.

◆ EquipItem()

override bool EquipItem ( )
inlineprotected
63 {
64 return m_Attachments.EquipItem();
65 }
bool EquipItem()
Definition Attachments.c:262

Перекрестные ссылки Attachments::EquipItem() и m_Attachments.

◆ GetFalseHeaderTextWidget()

TextWidget GetFalseHeaderTextWidget ( )
inlineprotected
119 {
121 }

Перекрестные ссылки m_AttachmentsFalseHeaderText.

◆ GetFocusedSlot()

int GetFocusedSlot ( )
inlineprotected
104 {
106 }
int GetFocusedSlot()
Definition Attachments.c:108

Перекрестные ссылки Attachments::GetFocusedSlot() и m_Attachments.

◆ InspectItem()

override bool InspectItem ( )
inlineprotected
53 {
55 }
bool InspectItem()
Definition Attachments.c:284

Перекрестные ссылки Attachments::InspectItem() и m_Attachments.

◆ IsDisplayable()

override bool IsDisplayable ( )
inlineprotected
83 {
84 return !IsEmpty();
85 }
override bool IsEmpty()
Definition CargoContainer.c:768

Перекрестные ссылки Container::IsEmpty().

◆ IsItemActive()

override bool IsItemActive ( )
inlineprotected
88 {
90 }
bool IsItemActive()
Definition Attachments.c:53

Перекрестные ссылки Attachments::IsItemActive() и m_Attachments.

◆ IsItemWithQuantityActive()

override bool IsItemWithQuantityActive ( )
inlineprotected
93 {
95 }
bool IsItemWithQuantityActive()
Definition Attachments.c:63

Перекрестные ссылки Attachments::IsItemWithQuantityActive() и m_Attachments.

◆ Select()

override bool Select ( )
inlineprotected
20 {
21 return m_Attachments.Select();
22 }
bool Select()
Definition Attachments.c:136

Перекрестные ссылки m_Attachments и Attachments::Select().

◆ SelectItem()

override bool SelectItem ( )
inlineprotected
25 {
27 }
bool SelectItem()
Definition Attachments.c:116

Перекрестные ссылки m_Attachments и Attachments::SelectItem().

◆ SetFalseAttachmentsHeaderText()

void SetFalseAttachmentsHeaderText ( string text)
inlineprotected
114 {
116 }
Definition EntityAI.c:95

Перекрестные ссылки m_AttachmentsFalseHeaderText.

◆ SetParent()

void SetParent ( Attachments atts)
inlineprotected
15 {
17 }

Перекрестные ссылки m_Attachments.

◆ ShowFalseAttachmentsHeader()

void ShowFalseAttachmentsHeader ( bool show)
inlineprotected
109 {
110 m_AttachmentsFalseHeader.Show(show);
111 }

Перекрестные ссылки m_AttachmentsFalseHeader.

◆ SplitItem()

override bool SplitItem ( )
inlineprotected
58 {
59 return m_Attachments.SplitItem();
60 }
bool SplitItem()
Definition Attachments.c:248

Перекрестные ссылки m_Attachments и Attachments::SplitItem().

◆ TransferItem()

override bool TransferItem ( )
inlineprotected
44 {
45 if (CanTakeToInventory())
46 {
48 }
49 return false;
50 }
bool TransferItem()
Definition Attachments.c:273

Перекрестные ссылки m_Attachments и Attachments::TransferItem().

◆ TransferItemToVicinity()

override bool TransferItemToVicinity ( )
inlineprotected
35 {
36 if (CanDrop())
37 {
39 }
40 return false;
41 }
bool TransferItemToVicinity()
Definition Attachments.c:295

Перекрестные ссылки m_Attachments и Attachments::TransferItemToVicinity().

◆ UpdateInterval()

override void UpdateInterval ( )
inlineprotected
98 {
99 super.UpdateInterval();
101 }
void UpdateInterval()
Definition Attachments.c:320

Перекрестные ссылки m_Attachments и Attachments::UpdateInterval().

Поля

◆ m_Attachments

◆ m_AttachmentsFalseHeader

Widget m_AttachmentsFalseHeader
protected

Используется в AttachmentsWrapper() и ShowFalseAttachmentsHeader().

◆ m_AttachmentsFalseHeaderText

RichTextWidget m_AttachmentsFalseHeaderText
protected

Объявления и описания членов класса находятся в файле: