-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathPluginDefinition.cpp
More file actions
148 lines (123 loc) · 4.42 KB
/
PluginDefinition.cpp
File metadata and controls
148 lines (123 loc) · 4.42 KB
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
/*
Copyright (C) 2025 Peter C. Jones <pryrtcode@pryrt.com>
This file is part of the source code for the CollectionInterface plugin for Notepad++
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 3 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, see <https://www.gnu.org/licenses/>.
*/
#include "PluginDefinition.h"
#include "menuCmdID.h"
#include "resource.h"
#include "Version.h"
#include "AboutDialog.h"
#include "CollectionInterfaceDialog.h"
#include "NppMetaClass.h"
#include "OverrideMapUpdaterClass.h"
static HANDLE _hModule;
//
// The plugin data that Notepad++ needs
//
FuncItem funcItem[nbFunc];
//
// The data of Notepad++ that you can use in your plugin commands
//
NppData nppData;
//
// Instantiate global NppMetaInfo object, passing in name of plugin
//
NppMetaInfo gNppMetaInfo(VERSION_NAME_WS);
//
// Initialize your plugin data here
// It will be called while plugin loading
void pluginInit(HANDLE hModule)
{
_hModule = hModule;
}
//
// Here you can do the clean up, save the parameters (if any) for the next session
//
void pluginCleanUp()
{
}
//
// Initialization of your plugin commands
// You should fill your plugins commands here
void commandMenuInit()
{
//--------------------------------------------//
//-- STEP 3. CUSTOMIZE YOUR PLUGIN COMMANDS --//
//--------------------------------------------//
// with function :
// setCommand(int index, // zero based number to indicate the order of command
// TCHAR *commandName, // the command name that you want to see in plugin menu
// PFUNCPLUGINCMD functionPointer, // the symbol of function (function pointer) associated with this command. The body should be defined below. See Step 4.
// ShortcutKey *shortcut, // optional. Define a shortcut to trigger this command
// bool check0nInit // optional. Make this menu item be checked visually
// );
setCommand(0, TEXT("Collection Interface: Download"), showCollectionInterface, NULL, false);
setCommand(1, TEXT("Help: Download"), showCIDownloadHelp, NULL, false);
setCommand(2, TEXT(""), NULL, NULL, false);
setCommand(3, TEXT("About"), showAboutModal, NULL, false);
}
//
// Here you can do the clean up (especially for the shortcut)
//
void commandMenuCleanUp()
{
// Don't forget to deallocate your shortcut here
}
//
// 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;
lstrcpy(funcItem[index]._itemName, cmdName);
funcItem[index]._pFunc = pFunc;
funcItem[index]._init2Check = check0nInit;
funcItem[index]._pShKey = sk;
return true;
}
//----------------------------------------------//
//-- STEP 4. DEFINE YOUR ASSOCIATED FUNCTIONS --//
//----------------------------------------------//
void hello()
{
}
void helloDlg()
{
::MessageBox(NULL, TEXT("Hello, Notepad++!"), TEXT("Notepad++ Plugin Template"), MB_OK);
}
void showAbout()
{
// non-modal allows to still interact with the parent
CreateDialogParam((HINSTANCE)_hModule, MAKEINTRESOURCE(IDD_ABOUTDLG), nppData._nppHandle, (DLGPROC)abtDlgProc, (LPARAM)NULL);
}
void showAboutModal()
{
// modal freezes the parent
DialogBoxParam((HINSTANCE)_hModule, MAKEINTRESOURCE(IDD_ABOUTDLG), nppData._nppHandle, (DLGPROC)abtDlgProc, (LPARAM)NULL);
return;
}
void showCollectionInterface()
{
// modal freezes the parent
DialogBoxParam((HINSTANCE)_hModule, MAKEINTRESOURCE(IDD_COLLECTIONINTERFACEDLG), nppData._nppHandle, (DLGPROC)ciDlgProc, (LPARAM)NULL);
return;
}
void showCIDownloadHelp()
{
// modal freezes the parent
DialogBoxParam((HINSTANCE)_hModule, MAKEINTRESOURCE(IDD_CI_DOWNLOADHELPDLG), nppData._nppHandle, (DLGPROC)cidlHelpDlgProc, (LPARAM)NULL);
return;
}