-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathPluginDefinition.cpp
174 lines (149 loc) · 5.67 KB
/
PluginDefinition.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
//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.
#include "PluginDefinition.h"
#include "menuCmdID.h"
#include "Shlwapi.h"
#ifdef UNICODE
#define generic_itoa _itow
#else
#define generic_itoa itoa
#endif
FuncItem funcItem[nbFunc];
//
// The data of Notepad++ that you can use in your plugin commands
//
NppData nppData;
TCHAR iniFilePath[MAX_PATH] = TEXT("::");
bool doCloseTag = false;
//
// Initialize your plugin data here
// It will be called while plugin loading
void pluginInit(HANDLE /*hModule*/)
{
}
//
// Here you can do the clean up, save the parameters (if any) for the next session
//
void pluginCleanUp()
{
}
ShortcutKey* shKey(UCHAR key)
{
ShortcutKey *my_shKey = new ShortcutKey;
my_shKey->_isAlt = true;
my_shKey->_isCtrl = true;
my_shKey->_isShift = false;
my_shKey->_key = key; //VK_F
return my_shKey;
}
//
// Initialization of your plugin commands
// You should fill your plugins commands here
void commandMenuInit()
{
configFileInit();
TCHAR FileName[MAX_PATH];
::GetPrivateProfileString(sectionName, TEXT("favFile0"), TEXT(""), FileName, MAX_PATH, iniFilePath);
setCommand(0, FileName, OpenFile0, shKey(0x31), false);
::GetPrivateProfileString(sectionName, TEXT("favFile1"), TEXT(""), FileName, MAX_PATH, iniFilePath);
setCommand(1, FileName, OpenFile1, shKey(0x32), false);
::GetPrivateProfileString(sectionName, TEXT("favFile2"), TEXT(""), FileName, MAX_PATH, iniFilePath);
setCommand(2, FileName, OpenFile2, shKey(0x33), false);
::GetPrivateProfileString(sectionName, TEXT("favFile3"), TEXT(""), FileName, MAX_PATH, iniFilePath);
setCommand(3, FileName, OpenFile3, shKey(0x34), false);
::GetPrivateProfileString(sectionName, TEXT("favFile4"), TEXT(""), FileName, MAX_PATH, iniFilePath);
setCommand(4, FileName, OpenFile4, shKey(0x35), false);
::GetPrivateProfileString(sectionName, TEXT("favFile5"), TEXT(""), FileName, MAX_PATH, iniFilePath);
setCommand(5, FileName, OpenFile5, shKey(0x36), false);
setCommand(nbFunc-2, TEXT("---"), NULL, NULL, false);
setCommand(nbFunc-1, TEXT("Manage Favorites"), ManageFavorites, shKey(0x42), false);
}
void configFileInit()
{
// get path of plugin configuration
::SendMessage(nppData._nppHandle, NPPM_GETPLUGINSCONFIGDIR, MAX_PATH, (LPARAM)iniFilePath);
// if config path doesn't exist, we create it
if (PathFileExists(iniFilePath) == FALSE)
{
::CreateDirectory(iniFilePath, NULL);
}
// make your plugin config file full file path name
PathAppend(iniFilePath, configFileName);
if (PathFileExists(iniFilePath) == FALSE)
{
::WritePrivateProfileString(sectionName, TEXT("favFile0"), TEXT("C:\\Windows\\System32\\drivers\\etc\\hosts"), iniFilePath);
::WritePrivateProfileString(sectionName, TEXT("favFile1"), TEXT("C:\\xampp\\php\\php.ini"), iniFilePath);
::WritePrivateProfileString(sectionName, TEXT("favFile2"), TEXT(""), iniFilePath);
::WritePrivateProfileString(sectionName, TEXT("favFile3"), TEXT(""), iniFilePath);
::WritePrivateProfileString(sectionName, TEXT("favFile4"), TEXT(""), iniFilePath);
::WritePrivateProfileString(sectionName, TEXT("favFile5"), TEXT(""), iniFilePath);
}
}
//
// Here you can do the clean up (especially for the shortcut)
//
void commandMenuCleanUp()
{
// Don't forget to deallocate your shortcuts here
delete funcItem[nbFunc-1]._pShKey;
}
//
// This function help you to initialize your plugin commands
//
bool setCommand(size_t index, TCHAR *cmdName, PFUNCPLUGINCMD pFunc, ShortcutKey *sk, bool check0nInit)
{
if (index >= nbFunc) return false;
if (!pFunc) return false;
const int MAX_LEN_MENU = 50;
if (lstrlen(cmdName) > MAX_LEN_MENU) {
const int SNIP = (MAX_LEN_MENU / 2) - 2;
const int GAP = lstrlen(cmdName) - SNIP;
TCHAR smallName[MAX_LEN_MENU];
for (int j = 0; j < MAX_LEN_MENU; j++ )
smallName[j] = 46;
int i = 0;
for (i = 0; i < SNIP; i++ )
smallName[i] = cmdName[i];
i += 3;
for (int j = 0; j < SNIP; j++ )
smallName[i + j] = cmdName[GAP + j];
lstrcpyn(funcItem[index]._itemName, smallName, MAX_LEN_MENU);
}
else {
lstrcpy(funcItem[index]._itemName, cmdName);
}
funcItem[index]._pFunc = pFunc;
funcItem[index]._init2Check = check0nInit;
funcItem[index]._pShKey = sk;
return true;
}
void OpenFile0() { OpenFavFile(TEXT("favFile0")); }
void OpenFile1() { OpenFavFile(TEXT("favFile1")); }
void OpenFile2() { OpenFavFile(TEXT("favFile2")); }
void OpenFile3() { OpenFavFile(TEXT("favFile3")); }
void OpenFile4() { OpenFavFile(TEXT("favFile4")); }
void OpenFile5() { OpenFavFile(TEXT("favFile5")); }
void OpenFavFile(TCHAR* keyName)
{
try {
TCHAR FileName[MAX_PATH];
::GetPrivateProfileString(sectionName, keyName, TEXT(""), FileName, MAX_PATH, iniFilePath);
::SendMessage(nppData._nppHandle, NPPM_DOOPEN, 0, (LPARAM)FileName);
} catch (...) {}
}
//Open the config file
void ManageFavorites()
{
::SendMessage(nppData._nppHandle, NPPM_DOOPEN, 0, (LPARAM)iniFilePath);
}