📄 histcomb.c
字号:
/*
Copyright 2001-2003 Free Software Foundation, Inc.
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., 59 Temple Place - Suite 330, Boston, MA
02111-1307, USA.
You may contact the author at:
mailto::camille@bluegrass.net
or by snail mail at:
David Lindauer
850 Washburn Ave Apt 99
Louisville, KY 40222
**********************************************************************
HISTCOMB.C adds history to combo boxes
**********************************************************************
*/
#define STRICT
#include <windows.h>
#include <commctrl.h>
#include <stdio.h>
#include "header.h"
extern HINSTANCE hInstance;
static int wndoffs;
static WNDPROC oldproc;
static short *propname = L"HISTBUF";
LRESULT CALLBACK historyComboProc(HWND hwnd, UINT iMessage, WPARAM wParam,
LPARAM lParam)
{
char **cbptr;
char buf[256];
int i;
POINT pt;
HWND hwndedit;
pt.x = pt.y = 1;
hwndedit = ChildWindowFromPoint(hwnd, pt);
switch (iMessage)
{
case WM_SETMODIFY:
return SendMessage(hwndedit, WM_SETTEXT, 0, (LPARAM)" ");
// hack to fix a timing varagary that kept the find button disabled even though text was changing
case WM_COMMAND:
// if ((wParam >> 16) == EN_CHANGE || (wParam >> 16) == EN_UPDATE)
// return SendMessage(GetParent(hwnd),WM_COMMAND,(wParam & 0xffff0000) + GetWindowLong(hwnd,GWL_ID), (LPARAM)hwnd) ;
break;
case WM_SETHISTORY:
cbptr = (char **)lParam;
SetProp(hwnd, propname, cbptr);
for (i = 0; i < MAX_COMBO_HISTORY; i++)
if (cbptr[i])
{
SendMessage(hwnd, CB_ADDSTRING, 0, (LPARAM)cbptr[i]);
}
return (0);
case WM_SAVEHISTORY:
cbptr = GetProp(hwnd, propname);
if (cbptr)
{
int sel; // = SendMessage(hwnd, CB_GETCURSEL,0,0) ;
buf[SendMessage(hwndedit, WM_GETTEXT, 256, (LPARAM)buf)] = 0;
sel = SendMessage(hwnd, CB_FINDSTRINGEXACT, 0, (LPARAM)buf);
// ExtendedMessageBox("hi",0,"hi %s:%x",buf,sel) ;
if (sel == CB_ERR)
{
if (buf[0])
{
if (cbptr[MAX_COMBO_HISTORY - 1])
{
free(cbptr[MAX_COMBO_HISTORY - 1]);
}
memmove(cbptr + 1, cbptr, (MAX_COMBO_HISTORY - 1)
*sizeof(char*));
cbptr[0] = strdup(buf);
SendMessage(hwnd, CB_INSERTSTRING, 0, (LPARAM)buf);
// SendMessage(hwnd,CB_SETCURSEL,-1,0 );
// SendMessage(hwndedit,WM_SETTEXT,0,(LPARAM)buf) ;
}
}
else
{
char *s = cbptr[sel];
memmove(cbptr + 1, cbptr, sel *sizeof(char*));
cbptr[0] = s;
}
}
return 0;
case WM_DESTROY:
RemoveProp(hwnd, propname);
break;
}
return CallWindowProc(oldproc, hwnd, iMessage, wParam, lParam);
}
//-------------------------------------------------------------------------
void SubClassHistoryCombo(HWND combo)
{
SetWindowLong(combo, GWL_WNDPROC, (int)historyComboProc);
}
//-------------------------------------------------------------------------
void RegisterHistoryComboWindow(void)
{
WNDCLASS wc;
GetClassInfo(0, "combobox", &wc);
oldproc = wc.lpfnWndProc;
return ;
wc.lpfnWndProc = &historyComboProc;
wc.lpszClassName = "historycombo";
wc.hInstance = hInstance;
wc.cbWndExtra += (4-wc.cbWndExtra % 4);
wndoffs = wc.cbWndExtra;
wc.cbWndExtra += 4;
RegisterClass(&wc);
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -