Arma Reforger Explorer  1.1.0.42
Arma Reforger Code Explorer by Zeroy - Thanks to MisterOutofTime
SCR_ExternalPaginationUIComponent.c
Go to the documentation of this file.
2 {
3  protected int m_iEntryCount;
4  protected ref ScriptInvoker m_OnShowEntries = new ScriptInvoker();
5 
6  void SetPageIndex(int index)
7  {
9  }
10 
11  void SetEntryCount(int count)
12  {
13  m_iEntryCount = count;
14  }
15 
16  ScriptInvoker GetOnShowEntries()
17  {
18  return m_OnShowEntries;
19  }
20 
21  override protected void ShowEntries(Widget contentWidget, int indexStart, int indexEnd)
22  {
23  m_OnShowEntries.Invoke(contentWidget, indexStart, indexEnd);
24  }
25  override protected int GetEntryCount()
26  {
27  return m_iEntryCount;
28  }
29 };
SCR_BasePaginationUIComponent
Definition: SCR_BasePaginationUIComponent.c:1
m_iCurrentPage
protected int m_iCurrentPage
Definition: SCR_ContentBrowser_AddonsSubMenu.c:75
SCR_ExternalPaginationUIComponent
Definition: SCR_ExternalPaginationUIComponent.c:1
index
SCR_DestructionSynchronizationComponentClass ScriptComponentClass int index
Definition: SCR_DestructionSynchronizationComponent.c:17