mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-11 06:07:12 -06:00
24 lines
566 B
C++
Executable File
24 lines
566 B
C++
Executable File
// MessagesDialog.h
|
|
|
|
#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 AddMessageDirect(LPCTSTR message);
|
|
void AddMessage(LPCWSTR message);
|
|
virtual bool OnInit();
|
|
public:
|
|
const UStringVector *Messages;
|
|
INT_PTR Create(HWND parentWindow = 0)
|
|
{ return CModalDialog::Create(MAKEINTRESOURCE(IDD_DIALOG_MESSAGES), parentWindow); }
|
|
};
|
|
|
|
#endif
|