blob: 31f6d39aa8b21d5bc5fa054033b2dcf7a2b4910c (
plain) (
blame)
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
32
33
34
35
36
37
38
39
40
41
42
43
|
/*
* CloseMainDialog.h
* -----------------
* Purpose: Dialog showing a list of unsaved documents, with the ability to choose which documents should be saved or not.
* Notes : (currently none)
* Authors: OpenMPT Devs
* The OpenMPT source code is released under the BSD license. Read LICENSE for more details.
*/
#pragma once
#include "openmpt/all/BuildSettings.hpp"
#include "InputHandler.h"
#include "ResizableDialog.h"
OPENMPT_NAMESPACE_BEGIN
class CloseMainDialog: public ResizableDialog
{
protected:
CListBox m_List;
CPoint m_minSize;
BypassInputHandler m_bih;
static CString FormatTitle(const CModDoc *modDoc, bool fullPath);
public:
CloseMainDialog();
protected:
void DoDataExchange(CDataExchange* pDX) override;
BOOL OnInitDialog() override;
void OnOK() override;
afx_msg void OnSaveAll();
afx_msg void OnSaveNone();
afx_msg void OnSwitchFullPaths();
DECLARE_MESSAGE_MAP()
};
OPENMPT_NAMESPACE_END
|