forked from wangjun7121/npp-task-list
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathDockingDlgInterface.h
142 lines (119 loc) · 3.35 KB
/
DockingDlgInterface.h
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
// This file is part of Notepad++ project
// Copyright (C)2006 Jens Lorenz <[email protected]>
// 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/>.
#pragma once
#include "dockingResource.h"
#include "Docking.h"
#include <assert.h>
#include <shlwapi.h>
#include "Common.h"
#include "StaticDialog.h"
#include "NppDarkMode.h"
class DockingDlgInterface : public StaticDialog
{
public:
DockingDlgInterface() = default;
explicit DockingDlgInterface(int dlgID): _dlgID(dlgID) {}
void init(HINSTANCE hInst, HWND parent) override {
StaticDialog::init(hInst, parent);
wchar_t temp[MAX_PATH];
::GetModuleFileName(hInst, temp, MAX_PATH);
_moduleName = ::PathFindFileName(temp);
}
void create(tTbData* data, bool isRTL = false) {
assert(data != nullptr);
StaticDialog::create(_dlgID, isRTL);
wchar_t temp[MAX_PATH];
::GetWindowText(_hSelf, temp, MAX_PATH);
_pluginName = temp;
// user information
data->hClient = _hSelf;
data->pszName = _pluginName.c_str();
// supported features by plugin
data->uMask = 0;
// additional info
data->pszAddInfo = NULL;
}
virtual void updateDockingDlg() {
::SendMessage(_hParent, NPPM_DMMUPDATEDISPINFO, 0, reinterpret_cast<LPARAM>(_hSelf));
}
virtual void setBackgroundColor(COLORREF) {}
virtual void setForegroundColor(COLORREF) {}
void display(bool toShow = true) const override {
::SendMessage(_hParent, toShow ? NPPM_DMMSHOW : NPPM_DMMHIDE, 0, reinterpret_cast<LPARAM>(_hSelf));
}
bool isClosed() const {
return _isClosed;
}
void setClosed(bool toClose) {
_isClosed = toClose;
}
const wchar_t * getPluginFileName() const {
return _moduleName.c_str();
}
protected :
int _dlgID = -1;
bool _isFloating = true;
int _iDockedPos = 0;
std::wstring _moduleName;
std::wstring _pluginName;
bool _isClosed = false;
intptr_t CALLBACK run_dlgProc(UINT message, WPARAM wParam, LPARAM lParam) override {
switch (message)
{
case WM_ERASEBKGND:
{
if (!NppDarkMode::isEnabled())
{
break;
}
RECT rc = {};
getClientRect(rc);
::FillRect(reinterpret_cast<HDC>(wParam), &rc, NppDarkMode::getDarkerBackgroundBrush());
return TRUE;
}
case WM_NOTIFY:
{
LPNMHDR pnmh = reinterpret_cast<LPNMHDR>(lParam);
if (pnmh->hwndFrom == _hParent)
{
switch (LOWORD(pnmh->code))
{
case DMN_CLOSE:
{
break;
}
case DMN_FLOAT:
{
_isFloating = true;
break;
}
case DMN_DOCK:
{
_iDockedPos = HIWORD(pnmh->code);
_isFloating = false;
break;
}
default:
break;
}
}
break;
}
default:
break;
}
return FALSE;
};
};