2016-10-26 12:47:52 -04:00
|
|
|
#include "specialedit.h"
|
|
|
|
|
2016-03-07 11:46:17 -05:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
int iLabelResourceId;
|
|
|
|
char *sLabel;
|
|
|
|
int iComboResourceId;
|
|
|
|
char *sIniLabel;
|
|
|
|
int iComboSelection;
|
|
|
|
} Key_Type;
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
DWORD dwVKeyCode;
|
|
|
|
char *sVKeyLabel;
|
|
|
|
} KeyCombo_Type;
|
|
|
|
|
|
|
|
// CGlobalSettings dialog
|
|
|
|
|
|
|
|
class CGlobalSettings : public CDialog
|
|
|
|
{
|
|
|
|
DECLARE_DYNAMIC(CGlobalSettings)
|
|
|
|
|
|
|
|
public:
|
|
|
|
CGlobalSettings(CWnd* pParent = NULL); // standard constructor
|
|
|
|
virtual ~CGlobalSettings();
|
|
|
|
|
|
|
|
// Dialog Data
|
|
|
|
enum { IDD = IDD_GLOBAL_CONFIG };
|
|
|
|
|
|
|
|
protected:
|
|
|
|
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
|
|
|
|
|
2017-01-17 11:49:27 -05:00
|
|
|
//BOOL m_DebugMode;
|
2016-03-07 11:46:17 -05:00
|
|
|
BOOL m_UpdatePaths;
|
|
|
|
BOOL m_AutoHideMode;
|
|
|
|
BOOL m_CheckAdminRights;
|
2016-07-09 12:47:08 -04:00
|
|
|
BOOL m_NameFromFolder;
|
2016-09-19 12:47:15 -04:00
|
|
|
BOOL m_MultiHooks;
|
2016-11-18 11:48:16 -05:00
|
|
|
BOOL m_WarnOnExit;
|
2016-03-07 11:46:17 -05:00
|
|
|
int m_TexMinX;
|
|
|
|
int m_TexMinY;
|
|
|
|
int m_TexMaxX;
|
|
|
|
int m_TexMaxY;
|
2016-10-26 12:47:52 -04:00
|
|
|
int m_DefaultCoordinates;
|
|
|
|
int m_DefaultPosX;
|
|
|
|
int m_DefaultPosY;
|
|
|
|
int m_DefaultSizX;
|
|
|
|
int m_DefaultSizY;
|
2016-03-07 11:46:17 -05:00
|
|
|
|
|
|
|
DECLARE_MESSAGE_MAP()
|
|
|
|
public:
|
|
|
|
public:
|
|
|
|
virtual BOOL OnInitDialog();
|
|
|
|
protected:
|
2016-10-26 12:47:52 -04:00
|
|
|
CSpecialEdit m_EditPosX;
|
|
|
|
CSpecialEdit m_EditPosY;
|
2016-03-07 11:46:17 -05:00
|
|
|
virtual void OnOK();
|
|
|
|
};
|