-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtipswnd.c
372 lines (338 loc) · 7.99 KB
/
tipswnd.c
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
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
//#include "stdafx.h"
/*
*
gcc -D DLL -shared -o ../plugin/vjde/tipswnd.dll tipswnd.c -luser32 -lcomctl32 -lgdi32 -mwindows
*/
#include <windows.h>
#ifdef DLL
#define _DL_EXPORT __declspec(dllexport) extern
#else
#define _DL_EXPORT
#endif
char cBuffer[2048];
int iLineCount;
int top ;
int left;
int iMaxWidth;
int iMaxHeight;
BOOL stoped ;
HWND hwndText; // Vim 输入窗口
HWND m_vimHwnd; // vim 窗口
BOOL CALLBACK EnumWndProc(HWND hWnd,LPARAM lParam)
{
HWND* lhwnd=(HWND*)lParam;
char buf[50];
GetClassName(hWnd,buf,50);
//VimTextArea is the class name of main editing window of VIM
if (strcmp(buf,"VimTextArea") == 0)
{
*lhwnd=hWnd;
return FALSE;
}
return TRUE;
}
void FindVimWindow()
{
HWND hTempHwnd = GetForegroundWindow();
if(hTempHwnd)
{
m_vimHwnd = hTempHwnd;
}
else
{
//but getting VIM window failed get the Desktop window. This is used to get the
//VIM rectangle. So even desktop window is also OK.
m_vimHwnd = GetDesktopWindow();
}
//Get the editing window in the VIM.
EnumChildWindows(m_vimHwnd,EnumWndProc,(LPARAM)&hwndText);
//GetWindowRect(hwndText,vimRect);
}
void PaintText(HDC hdc)
{
char *p = cBuffer;
char *temp = cBuffer;
int line = 0;
while ( *temp != '\0') {
if (*temp == '\n') {
TextOut( hdc, 2 , iMaxHeight * line + 2, p, temp-p );//输出文字
line ++;
p = temp+1;
}
++temp;
}
if ( p < temp )
{ //最后未包含一个\n
TextOut( hdc, 2 , iMaxHeight * line + 2, p, temp-p );//输出文字
}
}
BOOL RetriveTextSize(HDC hdc)
{
SIZE size ;
iLineCount = 0;
iMaxWidth = 0;
iMaxHeight = 0;
char *p = cBuffer;
char *temp = cBuffer;
while ( *temp != '\0') {
if (*temp == '\n') {
iLineCount++;
GetTextExtentPoint(hdc,p,temp-p-1,&size);
{
iMaxWidth = size.cx > iMaxWidth ? size.cx:iMaxWidth;
iMaxHeight = size.cy > iMaxHeight ? size.cy:iMaxHeight;
}
p = temp+1;
}
++temp;
}
if ( p < temp )
{ //最后未包含一个\n
iLineCount++;
GetTextExtentPoint(hdc,p,temp-p-1,&size);
{
iMaxWidth = size.cx > iMaxWidth ? size.cx:iMaxWidth;
iMaxHeight = size.cy > iMaxHeight ? size.cy:iMaxHeight;
}
}
}
int ReadInt(char *in,int l)
{
char buffer[64];
snprintf(buffer,l,"%s",in);
return atoi(buffer);
}
int AdjustPosEx(LPRECT rect, int w,int h)
{
if ( left+w+10 > rect->right ) {
if ( left > w+10 ) {
left = left - w - 10;
}
else {
left = rect->right - w - 20;
}
}
if ( top + h + 10 > rect->bottom ) {
if ( top > h + 10 ) {
top = top - h - 20;
}
else {
top = rect->bottom - h - 20;
}
}
}
/**
* Caculate the left-top point of tips window.
* @param in "8;12;30;80;\n.."
* line;col; line total;colums total;
*/
int AdjustPos(LPRECT rect,char *in)
{
int t,l,w,h;
char *p = in;
char *temp = in;
char buffer[128];
while ( *temp!=';') ++temp;
t = ReadInt(p,temp-p);
++temp;
p = temp;
while ( *temp!=';' ) ++temp;
l = ReadInt(p,temp-p);
++temp;
p = temp;
while ( *temp!=';' ) ++temp;
h = ReadInt(p,temp-p);
++temp;
p = temp;
while ( *temp!=';' ) ++temp;
w = ReadInt(p,temp-p);
++temp;
++temp; // skip a \n
top = (rect->bottom-rect->top)*t/h + rect->top;
left = (rect->right-rect->left)*l/w + rect->left;
return temp - in;
//snprintf(buffer,64,p,
}
//一、消息处理函数
//参数:窗口句柄,消息,消息参数,消息参数
LRESULT CALLBACK WndProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam)
{
//处理感兴趣的消息
switch (message)
{
case WM_KEYDOWN:
switch (wParam)
{
stoped = TRUE;
DestroyWindow(hwnd);
return 0;
}
case WM_LBUTTONDOWN:
case WM_RBUTTONDOWN://鼠标消息
{
stoped = TRUE;
DestroyWindow(hwnd);
return 0;
}
case WM_PAINT:
{
char hello[]="你好,我是EasyWin !";
char buff[128];
HDC hdc;
PAINTSTRUCT ps;
RECT rect;
HFONT font;
HGDIOBJ oldFont;
font = CreateFont(12, 0, 0, 0, FW_REGULAR, 0, 0, 0, 0, 0, 0, 0, 0, "MS Sans Serif");
hdc=BeginPaint( hwnd,&ps ); //取得设备环境句柄
oldFont = SelectObject(hdc,font);
RetriveTextSize(hdc);
GetWindowRect( GetDesktopWindow() , &rect);
AdjustPosEx(&rect,iMaxWidth+20,iMaxHeight * iLineCount + 20);
MoveWindow(hwnd,left,top, iMaxWidth+20,(iMaxHeight * iLineCount)+20,TRUE);
GetClientRect(hwnd,&rect);
InflateRect(&rect,-1,-1);
FillRect(hdc, &rect,CreateSolidBrush(RGB(0xff,0xff,0x99)));
SelectObject(hdc,CreatePen(PS_SOLID,2,RGB(162,162,162)));
SetBkMode(hdc,TRANSPARENT);
SetTextColor(hdc, RGB(0,0,0)); //设置文字颜色
oldFont = SelectObject(hdc,font);
PaintText(hdc);
SelectObject(hdc,oldFont);
EndPaint( hwnd, &ps ); //释放资源
break;
}
case WM_CLOSE:
break;
case WM_DESTROY:
//PostQuitMessage(0);
//当用户关闭窗口,窗口销毁,程序需结束,发退出消息,以退出消息循环
return 0 ;
}
return 0;
//其他消息交给由系统提供的缺省处理函数
return DefWindowProc(hwnd, message, wParam, lParam);
}
_DL_EXPORT int tipsWnd(char *in)
{
//1.注册窗口类
static TCHAR szAppName[] = TEXT ("HelloWin") ; //窗口类名称
//定制"窗口类"结构
//建立窗口
HWND hwnd ;
RECT rect;
FindVimWindow();
GetWindowRect(hwndText,&rect);
int offset = AdjustPos(&rect,in);
//top = rect.top;
//left = rect.left;
//建立窗口
hwnd = CreateWindowEx(
WS_EX_DLGMODALFRAME|WS_EX_TOOLWINDOW,
//szAppName,
"#32770",
TEXT("The Hello Program"),
WS_POPUP|WS_DLGFRAME|WS_OVERLAPPED,
0,
0,
400,
300,
NULL,
NULL,
NULL,
NULL);
//sprintf(cBuffer,"%s","Hello \n world!\n涨九天在测试.--------------------\n^_^\n");
snprintf(cBuffer,2048,"%s",in+offset);
SetWindowLongPtr(hwnd,DWL_DLGPROC,(LPARAM)WndProc);
ShowWindow (hwnd, SW_SHOW) ;
UpdateWindow (hwnd) ;
//消息循环
MSG msg ;
while (!stoped ) {
if ( GetMessage(&msg,NULL,0,0)== 0 ) {
break;
}
TranslateMessage (&msg) ; //转换消息
DispatchMessage (&msg) ; //派发消息
}
/*
while (GetMessage (&msg, NULL, 0, 0)) //从消息队列中取消息
{
TranslateMessage (&msg) ; //转换消息
DispatchMessage (&msg) ; //派发消息
}
*/
//UnregisterClass(szAppName,NULL);
return strlen(in); ;
}
#ifndef DLL
//二、应用程序主函数
//参数:实例句柄、前一个实例的句柄、命令行参数、窗口显示方式
int WINAPI WinMain (HINSTANCE hInstance, HINSTANCE hPrevInstance,
PSTR szCmdLine, int iCmdShow)
{
//1.注册窗口类
static TCHAR szAppName[] = TEXT ("HelloWin") ; //窗口类名称
//定制"窗口类"结构
/*
WNDCLASS wndclass ;
wndclass.style = CS_HREDRAW | CS_VREDRAW ;
wndclass.lpfnWndProc = WndProc ; //关联消息处理函数
wndclass.cbClsExtra = 0 ;
wndclass.cbWndExtra = 0 ;
wndclass.hInstance = hInstance ; //实例句柄
wndclass.hIcon = LoadIcon (NULL, IDI_APPLICATION) ; //图标
wndclass.hCursor = LoadCursor (NULL, IDC_ARROW) ; //光标
wndclass.hbrBackground = (HBRUSH) GetStockObject (WHITE_BRUSH); //画刷
wndclass.lpszMenuName = NULL ;
wndclass.lpszClassName = szAppName; //类名称
//注册
if (!RegisterClass (&wndclass))
{
MessageBox (NULL, TEXT ("RegisterClass Fail!"),
szAppName, MB_ICONERROR) ;
return 0 ;
}
*/
//建立窗口
HWND hwnd ;
hwnd = CreateWindowEx(
WS_EX_DLGMODALFRAME,
//WS_EX_APPWINDOW,
"#32770",
//szAppName,
TEXT("The Hello Program"),
//WS_OVERLAPPEDWINDOW,
WS_POPUP,
0,
0,
400,
300,
NULL,
NULL,
NULL,
NULL);
sprintf(cBuffer,"%s","Hello \n world!\n涨九天在测试.--------------------\n^_^\n");
SetWindowLongPtr(hwnd,DWL_DLGPROC,(LPARAM)WndProc);
ShowWindow (hwnd, iCmdShow) ;
UpdateWindow (hwnd) ;
//消息循环
MSG msg ;
while (!stoped ) {
if ( GetMessage(&msg,NULL,0,0)== 0 ) {
break;
}
TranslateMessage (&msg) ; //转换消息
DispatchMessage (&msg) ; //派发消息
}
/*
while (GetMessage (&msg, NULL, 0, 0) ) //从消息队列中取消息
{
TranslateMessage (&msg) ; //转换消息
DispatchMessage (&msg) ; //派发消息
}
*/
return 0 ;
}
#endif
// vim: ts=4:sw=4:sts=4