mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-07 07:14:56 -06:00
9.06 beta
This commit is contained in:
committed by
Kornel Lesiński
parent
829409452d
commit
c99f3ebdd6
@@ -1,19 +1,20 @@
|
||||
// MessagesDialog.h
|
||||
|
||||
#ifndef __MESSAGESDIALOG_H
|
||||
#define __MESSAGESDIALOG_H
|
||||
|
||||
#include "MessagesDialogRes.h"
|
||||
#ifndef __MESSAGES_DIALOG_H
|
||||
#define __MESSAGES_DIALOG_H
|
||||
|
||||
#include "Windows/Control/Dialog.h"
|
||||
#include "Windows/Control/ListView.h"
|
||||
|
||||
#include "MessagesDialogRes.h"
|
||||
|
||||
class CMessagesDialog: public NWindows::NControl::CModalDialog
|
||||
{
|
||||
NWindows::NControl::CListView _messageList;
|
||||
void AddMessageDirect(LPCWSTR message);
|
||||
void AddMessage(LPCWSTR message);
|
||||
virtual bool OnInit();
|
||||
virtual bool OnSize(WPARAM wParam, int xSize, int ySize);
|
||||
public:
|
||||
const UStringVector *Messages;
|
||||
INT_PTR Create(HWND parent = 0) { return CModalDialog::Create(IDD_DIALOG_MESSAGES, parent); }
|
||||
|
||||
Reference in New Issue
Block a user