Initial community commit
This commit is contained in:
parent
537bcbc862
commit
fc06254474
16440 changed files with 4239995 additions and 2 deletions
|
@ -0,0 +1,39 @@
|
|||
/*
|
||||
* WelcomeDialog.cpp
|
||||
* -----------------
|
||||
* Purpose: "First run" OpenMPT welcome dialog
|
||||
* 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 "../common/mptPathString.h"
|
||||
|
||||
OPENMPT_NAMESPACE_BEGIN
|
||||
|
||||
class WelcomeDlg : public CDialog
|
||||
{
|
||||
protected:
|
||||
mpt::PathString m_vstPath;
|
||||
|
||||
public:
|
||||
WelcomeDlg(CWnd *parent);
|
||||
|
||||
protected:
|
||||
BOOL OnInitDialog() override;
|
||||
void OnOK() override;
|
||||
void OnCancel() override;
|
||||
void PostNcDestroy() override { CDialog::PostNcDestroy(); delete this; }
|
||||
|
||||
afx_msg void OnOptions();
|
||||
afx_msg void OnScanPlugins();
|
||||
|
||||
DECLARE_MESSAGE_MAP()
|
||||
};
|
||||
|
||||
OPENMPT_NAMESPACE_END
|
Loading…
Add table
Add a link
Reference in a new issue