r5sdk/r5dev/thirdparty/cppnet/cppkore/RetrieveVirtualItemEventArgs.h
Kawe Mazidjatari 04bee896be Fix string/wstring type conflict
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.
2022-05-21 21:51:35 +02:00

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;
};
}