📄 mru.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
**********************************************************************
MRU.C defines functions to manipulate MRU (most recently used file)
lists. Really should use the standard registry areas, but oh well...
**********************************************************************
*/
#include <windows.h>
#include <commctrl.h>
#include <stdio.h>
#include "header.h"
extern HMENU hMenuMain;
DWINFO *mrulist[MAX_MRU], *mruprojlist[MAX_MRU];
static HMENU hMRUSubMenu;
void MRUToMenu(int which)
{
DWINFO **list;
int base, base1;
MENUITEMINFO mi;
char buf[256];
int i, currentOffset;
if (which)
{
list = mruprojlist;
base = ID_MRU_PROJ_LIST;
base1 = 12; // menu index. Must change if RC file changes
}
else
{
list = mrulist;
base = ID_MRU_LIST;
base1 = 11; // see above
}
hMRUSubMenu = GetSubMenu(hMenuMain, 0);
hMRUSubMenu = GetSubMenu(hMRUSubMenu, base1);
currentOffset = GetMenuItemCount(hMRUSubMenu);
memset(&mi, 0, sizeof(mi));
mi.cbSize = sizeof(mi);
mi.fMask = MIIM_ID | MIIM_TYPE | MIIM_DATA;
mi.fType = MFT_STRING;
for (i = 0; i < MAX_MRU; i++)
{
mi.wID = i + base;
mi.dwTypeData = buf;
if (list[i])
{
sprintf(buf, "%d: %s", i + 1, list[i]->dwTitle);
if (i >= currentOffset)
InsertMenuItem(hMRUSubMenu, i, TRUE, &mi);
else
SetMenuItemInfo(hMRUSubMenu, i, TRUE, &mi);
}
}
}
//-------------------------------------------------------------------------
void MRUToProfile(int which)
{
char key[20], buf[256], *name;
DWINFO **list;
int i = 0;
if (which)
{
list = mruprojlist;
name = "MRUP";
}
else
{
list = mrulist;
name = "MRU";
}
for (i = 0; i < MAX_MRU; i++)
if (list[i])
{
sprintf(key, "%s%d", name, i);
sprintf(buf, "%s;%s", list[i]->dwName, list[i]->dwTitle);
StringToProfile(key, buf);
}
}
//-------------------------------------------------------------------------
void ProfileToMRU(int which)
{
int i;
char key[50], *buf, *name;
DWINFO **list;
if (which)
{
list = mruprojlist;
name = "MRUP";
}
else
{
list = mrulist;
name = "MRU";
}
for (i = 0; i < MAX_MRU; i++)
if (list[i])
{
free(list[i]);
list[i] = 0;
}
for (i = 0; i < MAX_MRU; i++)
{
sprintf(key, "%s%d", name, i);
buf = ProfileToString(key, "");
if (buf[0])
{
DWINFO *x = malloc(sizeof(DWINFO));
int j = 0;
memset(x, 0, sizeof(*x));
while (*buf && *buf != ';')
x->dwName[j++] = *buf++;
j = 0;
if (*buf)
buf++;
while (*buf)
x->dwTitle[j++] = *buf++;
list[i] = x;
}
}
}
//-------------------------------------------------------------------------
void InsertMRU(DWINFO *data, int which)
{
int i;
DWINFO *x = malloc(sizeof(DWINFO)), **list;
if (!x)
return ;
if (which)
list = mruprojlist;
else
list = mrulist;
memcpy(x, data, sizeof(DWINFO));
for (i = 0; i < MAX_MRU; i++)
if (list[i] && !xstricmpz(x->dwName, list[i]->dwName))
{
if (i == 0)
return ;
free(list[i]);
memmove(list + 1, list, i *sizeof(DWINFO*));
list[0] = x;
return ;
}
if (list[MAX_MRU - 1])
free(list[MAX_MRU - 1]);
memmove(list + 1, list, (MAX_MRU - 1) *sizeof(DWINFO*));
list[0] = x;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -