-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwxMsMessagePreview.h
More file actions
31 lines (27 loc) · 910 Bytes
/
wxMsMessagePreview.h
File metadata and controls
31 lines (27 loc) · 910 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/*-----------------------------------------------------------------
* Name: xxxh.h
* Purpose:
* Author: A. Wiegert
*
* Copyright:
* Licence: wxWidgets licence
*-------------------------------------------------------------- */
#ifndef WXMSMESSAGEPREVIEW_H
#define WXMSMESSAGEPREVIEW_H
#include "wxMsBaseFrame.h"
// ------------------------------------------------------------------
class wxMsMessagePreview : public wxMsMessagePreviewBase
{
public:
wxMsMessagePreview( MyFrame* parent);
virtual ~wxMsMessagePreview();
// bool TransferDataToWindow();
// bool TransferDataFromWindow();
protected:
MyFrame *m_pParent;
void OnSaveMimeSource2File(wxCommandEvent& event);
void OnSaveMimeStruct2File(wxCommandEvent& event);
void OnCopySource2Clipboard(wxCommandEvent& event);
};
#endif // WXMSMESSAGEPREVIEW_H
// ------------------------------- eof ---------------------------