mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-06 15:14:59 -06:00
31 lines
745 B
C++
Executable File
31 lines
745 B
C++
Executable File
// ListViewDialog.h
|
|
|
|
#ifndef __LISTVIEW_DIALOG_H
|
|
#define __LISTVIEW_DIALOG_H
|
|
|
|
#include "Windows/Control/Dialog.h"
|
|
#include "Windows/Control/ListView.h"
|
|
|
|
#include "ListViewDialogRes.h"
|
|
|
|
class CListViewDialog: public NWindows::NControl::CModalDialog
|
|
{
|
|
NWindows::NControl::CListView _listView;
|
|
virtual void OnOK();
|
|
virtual bool OnInit();
|
|
virtual bool OnSize(WPARAM wParam, int xSize, int ySize);
|
|
virtual bool OnNotify(UINT controlID, LPNMHDR header);
|
|
public:
|
|
UString Title;
|
|
bool DeleteIsAllowed;
|
|
bool StringsWereChanged;
|
|
UStringVector Strings;
|
|
int FocusedItemIndex;
|
|
|
|
INT_PTR Create(HWND wndParent = 0) { return CModalDialog::Create(IDD_DIALOG_LISTVIEW, wndParent); }
|
|
|
|
CListViewDialog(): DeleteIsAllowed(false) {}
|
|
};
|
|
|
|
#endif
|