⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 runmacrodlg.h

📁 Notepad++ is a generic source code editor (it tries to be anyway) and Notepad replacement written in
💻 H
字号:
//this file is part of notepad++//Copyright (C)2003 Don HO ( donho@altern.org )////This program is free software; you can redistribute it and/or//modify it under the terms of the GNU General Public License//as published by the Free Software Foundation; either//version 2 of the License, or (at your option) any later version.////This program is distributed in the hope that it will be useful,//but WITHOUT ANY WARRANTY; without even the implied warranty of//MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the//GNU General Public License for more details.////You should have received a copy of the GNU General Public License//along with this program; if not, write to the Free Software//Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.// created by Daniel Volk mordorpost@volkarts.com#ifndef RUN_MACRO_DLG_H#define RUN_MACRO_DLG_H#include <stdlib.h>#include "StaticDialog.h"#include "RunMacroDlg_rc.h"#include "Buffer.h"#include "ScintillaEditView.h"#include "StatusBar.h"using namespace std;#define RM_CANCEL -1#define RM_RUN_MULTI 1#define RM_RUN_EOF 2class RunMacroDlg : public StaticDialog{public :	RunMacroDlg() : StaticDialog(), m_Mode(RM_RUN_MULTI), m_Times(1) {};	~RunMacroDlg() {	};	void init(HINSTANCE hInst, HWND hPere/*, ScintillaEditView **ppEditView*/) {		Window::init(hInst, hPere);	};	void doDialog(bool isRTL = false) {		if (!isCreated())			create(IDD_RUN_MACRO_DLG, isRTL);		else			::ShowWindow(_hSelf, SW_SHOW);	};	//virtual void create(int, bool = false);	void initMacroList() {		if (!isCreated()) return;		NppParameters *pNppParam = NppParameters::getInstance();		vector<MacroShortcut> & macroList = pNppParam->getMacroList();		::SendDlgItemMessage(_hSelf, IDC_MACRO_COMBO, CB_RESETCONTENT, 0, 0);		if (::SendMessage(_hParent, WM_ISCURRENTMACRORECORDED, 0, 0))			::SendDlgItemMessage(_hSelf, IDC_MACRO_COMBO, CB_ADDSTRING, 0, (LPARAM)"Current recorded macro");		for (size_t i = 0 ; i < macroList.size() ; i++)			::SendDlgItemMessage(_hSelf, IDC_MACRO_COMBO, CB_ADDSTRING, 0, (LPARAM)macroList[i]._name);		::SendDlgItemMessage(_hSelf, IDC_MACRO_COMBO, CB_SETCURSEL, 0, 0);		m_macroIndex = 0;	};	int getMode() const {return m_Mode;};	int getTimes() const {return m_Times;};	int getMacro2Exec() const {		bool isCurMacroPresent = ::SendMessage(_hParent, WM_ISCURRENTMACRORECORDED, 0, 0) == TRUE;		return isCurMacroPresent?(m_macroIndex - 1):m_macroIndex;	};private :	virtual BOOL CALLBACK run_dlgProc(UINT message, WPARAM wParam, LPARAM lParam);	bool isCheckedOrNot(int checkControlID) const {		return (BST_CHECKED == ::SendMessage(::GetDlgItem(_hSelf, checkControlID), BM_GETCHECK, 0, 0));	};	void check(int);	int m_Mode;	int m_Times;	int m_macroIndex;};#endif //RUN_MACRO_DLG_H

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -