preferencesdlg.h
来自「VeryCD版的电驴源程序」· C头文件 代码 · 共 62 行
H
62 行
#pragma once
#include "PPgGeneral.h"
#include "PPgConnection.h"
#include "PPgServer.h"
#include "PPgDirectories.h"
#include "PPgFiles.h"
#include "PPgStats.h"
#include "PPgNotify.h"
#include "PPgIRC.h"
#include "PPgTweaks.h"
#include "PPgDisplay.h"
#include "PPgSecurity.h"
#include "PPgWebServer.h"
#include "PPgScheduler.h"
#include "PPgProxy.h"
#if defined(_DEBUG) || defined(USE_DEBUG_DEVICE)
#include "PPgDebug.h"
#endif
#include "otherfunctions.h"
#include "TreePropSheet.h"
class CPreferencesDlg : public CTreePropSheet
{
DECLARE_DYNAMIC(CPreferencesDlg)
public:
CPreferencesDlg();
virtual ~CPreferencesDlg();
CPPgGeneral m_wndGeneral;
CPPgConnection m_wndConnection;
CPPgServer m_wndServer;
CPPgDirectories m_wndDirectories;
CPPgFiles m_wndFiles;
CPPgStats m_wndStats;
CPPgNotify m_wndNotify;
CPPgIRC m_wndIRC;
CPPgTweaks m_wndTweaks;
CPPgDisplay m_wndDisplay;
CPPgSecurity m_wndSecurity;
CPPgWebServer m_wndWebServer;
CPPgScheduler m_wndScheduler;
CPPgProxy m_wndProxy;
#if defined(_DEBUG) || defined(USE_DEBUG_DEVICE)
CPPgDebug m_wndDebug;
#endif
void Localize();
protected:
int m_iPrevPage;
UINT m_nActiveWnd;
virtual BOOL OnInitDialog();
virtual BOOL OnCommand(WPARAM wParam, LPARAM lParam);
DECLARE_MESSAGE_MAP()
afx_msg void OnDestroy();
afx_msg void OnHelp();
afx_msg BOOL OnHelpInfo(HELPINFO* pHelpInfo);
};
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?