summaryrefslogtreecommitdiff
path: root/include/m_options.h
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2012-10-21 15:13:56 +0000
committerGeorge Hazan <george.hazan@gmail.com>2012-10-21 15:13:56 +0000
commit34c11f2b4c3511476b2f09f3a438ce1f39d63bfd (patch)
tree88dbad1e6ca7dc7012bd4950fd9621fa0da29deb /include/m_options.h
parent646d3950702c34475e9bcb05ebe380f6874a73d2 (diff)
patch for eliminating expert mode in options (to replace the simple mode with ModernOpts)
git-svn-id: http://svn.miranda-ng.org/main/trunk@2025 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'include/m_options.h')
-rw-r--r--include/m_options.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/include/m_options.h b/include/m_options.h
index b2e01e957e..a0d3692945 100644
--- a/include/m_options.h
+++ b/include/m_options.h
@@ -73,10 +73,6 @@ typedef struct {
int groupPosition; //v0.1.0.1+
HICON hGroupIcon; //v0.1.0.1+
DWORD flags; //v0.1.2.1+
- int nIDBottomSimpleControl; //v0.1.2.1+ if in simple mode the dlg will be cut off after this control, 0 to disable
- int nIDRightSimpleControl; //v0.1.2.1+ if in simple mode the dlg will be cut off after this control, 0 to disable
- UINT *expertOnlyControls;
- int nExpertOnlyControls; //v0.1.2.1+ these controls will be hidden in simple mode. Array must remain valid for duration of dlg.
union {
char* pszTab; //v0.6.0.0+ [TRANSLATED-BY-CORE]
@@ -88,8 +84,6 @@ typedef struct {
}
OPTIONSDIALOGPAGE;
-#define ODPF_SIMPLEONLY 1 // page is only shown when in simple mode
-#define ODPF_EXPERTONLY 2 // " expert mode
#define ODPF_BOLDGROUPS 4 // give group box titles a bold font
#define ODPF_UNICODE 8 // string fields in OPTIONSDIALOGPAGE are WCHAR*
#define ODPF_USERINFOTAB 16 // options page is tabbed
@@ -101,8 +95,6 @@ typedef struct {
#define ODPF_TCHAR 0
#endif
-#define PSN_EXPERTCHANGED 2 //sent to pages via WM_NOTIFY when the expert checkbox is clicked. lParam = new state
-#define PSM_ISEXPERT (WM_USER+101) //returns true/false
#define PSM_GETBOLDFONT (WM_USER+102) //returns HFONT used for group box titles
__forceinline INT_PTR Options_AddPage(WPARAM wParam, OPTIONSDIALOGPAGE* odp)
@@ -138,6 +130,4 @@ __forceinline HWND Options_OpenPage(OPENOPTIONSDIALOG *ood)
return (HWND)CallService("Opt/OpenOptionsPage", hLangpack, (LPARAM)ood);
}
-#define SETTING_SHOWEXPERT_DEFAULT 1
-
#endif //M_OPTIONS_H__