mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-11 20:07:19 -06:00
9.06 beta
This commit is contained in:
committed by
Kornel Lesiński
parent
829409452d
commit
c99f3ebdd6
@@ -1,10 +1,11 @@
|
||||
// ListViewDialog.h
|
||||
|
||||
#ifndef __LISTVIEWDIALOG_H
|
||||
#define __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
|
||||
@@ -12,19 +13,18 @@ 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;
|
||||
UStringVector Strings;
|
||||
bool StringsWereChanged;
|
||||
UStringVector Strings;
|
||||
int FocusedItemIndex;
|
||||
|
||||
INT_PTR Create(HWND wndParent = 0) { return CModalDialog::Create(IDD_DIALOG_LISTVIEW, wndParent); }
|
||||
|
||||
CListViewDialog(): DeleteIsAllowed(false) {}
|
||||
|
||||
};
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user