mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-14 02:11:40 -06:00
3.13
This commit is contained in:
24
7zip/FileManager/Resource/MessagesDialog/MessagesDialog.h
Executable file
24
7zip/FileManager/Resource/MessagesDialog/MessagesDialog.h
Executable file
@@ -0,0 +1,24 @@
|
||||
// MessagesDialog.h
|
||||
|
||||
#pragma once
|
||||
|
||||
#ifndef __MESSAGESDIALOG_H
|
||||
#define __MESSAGESDIALOG_H
|
||||
|
||||
#include "resource.h"
|
||||
|
||||
#include "Windows/Control/Dialog.h"
|
||||
#include "Windows/Control/ListView.h"
|
||||
|
||||
class CMessagesDialog: public NWindows::NControl::CModalDialog
|
||||
{
|
||||
NWindows::NControl::CListView _messageList;
|
||||
void AddMessage(LPCTSTR string);
|
||||
virtual bool OnInit();
|
||||
public:
|
||||
const CSysStringVector *_messages;
|
||||
INT_PTR Create(HWND parentWindow = 0)
|
||||
{ return CModalDialog::Create(MAKEINTRESOURCE(IDD_DIALOG_MESSAGES), parentWindow); }
|
||||
};
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user