Initial community commit
This commit is contained in:
parent
537bcbc862
commit
fc06254474
16440 changed files with 4239995 additions and 2 deletions
|
@ -0,0 +1,86 @@
|
|||
/*
|
||||
* AdvancedConfigDlg.h
|
||||
* -------------------
|
||||
* Purpose: Implementation of the advanced settings 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 "CListCtrl.h"
|
||||
#if MPT_USTRING_MODE_WIDE
|
||||
#include <unordered_map>
|
||||
#else
|
||||
#include <map>
|
||||
#endif
|
||||
|
||||
OPENMPT_NAMESPACE_BEGIN
|
||||
|
||||
|
||||
#ifdef MPT_MFC_FULL
|
||||
|
||||
class CAdvancedSettingsList : public CMFCListCtrlEx
|
||||
{
|
||||
private:
|
||||
std::vector<SettingPath> & m_indexToPath;
|
||||
public:
|
||||
CAdvancedSettingsList(std::vector<SettingPath> & indexToPath) : m_indexToPath(indexToPath) {}
|
||||
COLORREF OnGetCellBkColor(int nRow, int nColumn) override;
|
||||
COLORREF OnGetCellTextColor(int nRow, int nColumn) override;
|
||||
};
|
||||
|
||||
#endif // MPT_MFC_FULL
|
||||
|
||||
|
||||
class COptionsAdvanced: public CPropertyPage
|
||||
{
|
||||
#ifdef MPT_MFC_FULL
|
||||
using ListCtrl = CAdvancedSettingsList;
|
||||
#else // MPT_MFC_FULL
|
||||
using ListCtrl = CListCtrlEx;
|
||||
#endif // !MPT_MFC_FULL
|
||||
|
||||
protected:
|
||||
ListCtrl m_List;
|
||||
#if MPT_USTRING_MODE_WIDE
|
||||
using GroupMap = std::unordered_map<mpt::ustring, int>;
|
||||
#else
|
||||
using GroupMap = std::map<mpt::ustring, int>;
|
||||
#endif
|
||||
std::vector<SettingPath> m_indexToPath;
|
||||
GroupMap m_groups;
|
||||
bool m_listGrouped = false;
|
||||
|
||||
public:
|
||||
#ifdef MPT_MFC_FULL
|
||||
COptionsAdvanced():CPropertyPage(IDD_OPTIONS_ADVANCED), m_List(m_indexToPath) {}
|
||||
#else // !MPT_MFC_FULL
|
||||
COptionsAdvanced():CPropertyPage(IDD_OPTIONS_ADVANCED) {}
|
||||
#endif // MPT_MFC_FULL
|
||||
|
||||
protected:
|
||||
BOOL OnInitDialog() override;
|
||||
void OnOK() override;
|
||||
BOOL OnSetActive() override;
|
||||
void DoDataExchange(CDataExchange* pDX) override;
|
||||
BOOL PreTranslateMessage(MSG *msg) override;
|
||||
|
||||
afx_msg void OnOptionDblClick(NMHDR *, LRESULT *);
|
||||
afx_msg void OnSettingsChanged() { SetModified(TRUE); }
|
||||
afx_msg void OnFindStringChanged() { ReInit(); }
|
||||
afx_msg void OnSaveNow();
|
||||
#ifndef MPT_MFC_FULL
|
||||
afx_msg void OnCustomDrawList(NMHDR* pNMHDR, LRESULT* pResult);
|
||||
#endif // !MPT_MFC_FULL
|
||||
|
||||
void ReInit();
|
||||
|
||||
DECLARE_MESSAGE_MAP();
|
||||
};
|
||||
|
||||
OPENMPT_NAMESPACE_END
|
Loading…
Add table
Add a link
Reference in a new issue