mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-07 07:14:56 -06:00
23.01
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
// ListViewDialog.h
|
||||
|
||||
#ifndef __LISTVIEW_DIALOG_H
|
||||
#define __LISTVIEW_DIALOG_H
|
||||
#ifndef ZIP7_INC_LISTVIEW_DIALOG_H
|
||||
#define ZIP7_INC_LISTVIEW_DIALOG_H
|
||||
|
||||
#include "../../../Windows/Control/Dialog.h"
|
||||
#include "../../../Windows/Control/ListView.h"
|
||||
@@ -11,10 +11,10 @@
|
||||
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);
|
||||
virtual void OnOK() Z7_override;
|
||||
virtual bool OnInit() Z7_override;
|
||||
virtual bool OnSize(WPARAM wParam, int xSize, int ySize) Z7_override;
|
||||
virtual bool OnNotify(UINT controlID, LPNMHDR header) Z7_override;
|
||||
void CopyToClipboard();
|
||||
void DeleteItems();
|
||||
void ShowItemInfo();
|
||||
@@ -32,7 +32,7 @@ public:
|
||||
int FocusedItemIndex;
|
||||
unsigned NumColumns;
|
||||
|
||||
INT_PTR Create(HWND wndParent = 0) { return CModalDialog::Create(IDD_LISTVIEW, wndParent); }
|
||||
INT_PTR Create(HWND wndParent = NULL) { return CModalDialog::Create(IDD_LISTVIEW, wndParent); }
|
||||
|
||||
CListViewDialog():
|
||||
SelectFirst(false),
|
||||
|
||||
Reference in New Issue
Block a user