mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-14 00:11:37 -06:00
35 lines
951 B
C++
35 lines
951 B
C++
// 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);
|
|
bool OnGetMinMaxInfo(PMINMAXINFO pMMI);
|
|
protected:
|
|
SIZE m_sizeMinWindow;
|
|
public:
|
|
UString Title;
|
|
bool DeleteIsAllowed;
|
|
bool StringsWereChanged;
|
|
UStringVector Strings;
|
|
int FocusedItemIndex;
|
|
|
|
INT_PTR Create(HWND wndParent = 0) { return CModalDialog::Create(IDD_LISTVIEW, wndParent); }
|
|
|
|
CListViewDialog(): DeleteIsAllowed(false) { m_sizeMinWindow.cx = 0; m_sizeMinWindow.cy = 0; }
|
|
virtual bool OnMessage(UINT message, WPARAM wParam, LPARAM lParam);
|
|
};
|
|
|
|
#endif
|