mirror of
https://github.com/gnif/LookingGlass.git
synced 2026-01-18 09:42:29 +00:00
[idd] helper: add CListBox widget
This commit is contained in:
11
idd/LGIddHelper/CListBox.h
Normal file
11
idd/LGIddHelper/CListBox.h
Normal file
@@ -0,0 +1,11 @@
|
||||
#pragma once
|
||||
#include "CWidget.h"
|
||||
#include <string>
|
||||
|
||||
class CListBox : public CWidget
|
||||
{
|
||||
public:
|
||||
CListBox(DWORD style, HWND parent);
|
||||
void initStorage(DWORD count, size_t perItem);
|
||||
int addItem(const std::wstring &display, LPARAM data);
|
||||
};
|
||||
Reference in New Issue
Block a user