mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
cppkore uses string/wstring as StringBase while we use std::string/std::wstring as string/wstring. Changed all types in cppkore to String/WString instead.
25 lines
548 B
C++
25 lines
548 B
C++
#pragma once
|
|
|
|
#include <cstdint>
|
|
#include "StringBase.h"
|
|
#include "ListViewItem.h"
|
|
|
|
namespace Forms
|
|
{
|
|
// Provides data for the RetrieveVirtualItem event.
|
|
class RetrieveVirtualItemEventArgs
|
|
{
|
|
public:
|
|
RetrieveVirtualItemEventArgs(int32_t Index, int32_t SubIndex);
|
|
~RetrieveVirtualItemEventArgs() = default;
|
|
|
|
// The index of the item to get information on.
|
|
const int32_t ItemIndex;
|
|
// The sub item index.
|
|
const int32_t SubItemIndex;
|
|
// The text of the item.
|
|
String Text;
|
|
// The style of the item.
|
|
ListViewItemStyle Style;
|
|
};
|
|
} |