|
|
| version 1.19, 2004/03/15 05:06:01 | version 1.21, 2005/05/20 17:25:03 |
|---|---|
| Line 223 const char *p; | Line 223 const char *p; |
| if (file_attr(p) != FILEATTR_ARCHIVE) { | if (file_attr(p) != FILEATTR_ARCHIVE) { |
| attr |= kMenuItemAttrDisabled; | attr |= kMenuItemAttrDisabled; |
| } | } |
| AppendMenuItemTextWithCFString(menu, str, attr, NULL, NULL); | AppendMenuItemTextWithCFString(menu, str, attr, 0, 0); |
| } | } |
| CFRelease(str); | CFRelease(str); |
| } | } |
| Line 458 const char *cls; | Line 458 const char *cls; |
| style = 1; | style = 1; |
| CreateBevelButtonControl(hWnd, &bounds, CFSTRj(p->text), | CreateBevelButtonControl(hWnd, &bounds, CFSTRj(p->text), |
| kControlBevelButtonSmallBevel, | kControlBevelButtonSmallBevel, |
| 0 ,NULL, NULL, NULL, NULL, &sub); | 0 ,NULL, 0, 0, 0, &sub); |
| SetControlCommandID(sub, subcommand[i]); | SetControlCommandID(sub, subcommand[i]); |
| SetControlFontStyle(sub, &fontstyle); | SetControlFontStyle(sub, &fontstyle); |
| break; | break; |
| Line 857 const char *base; | Line 857 const char *base; |
| UINT i; | UINT i; |
| char longname[256]; | char longname[256]; |
| AppendMenuItemTextWithCFString(ret, CFCopyLocalizedString(CFSTR("Select Skin..."),"Slect Skin"), kMenuItemAttrIconDisabled, NULL,NULL); | AppendMenuItemTextWithCFString(ret, CFCopyLocalizedString(CFSTR("Select Skin..."),"Slect Skin"), kMenuItemAttrIconDisabled, 0, 0); |
| AppendMenu(ret, "\p-"); | AppendMenu(ret, "\p-"); |
| base = np2tool.skin; | base = np2tool.skin; |
| AppendMenuItemTextWithCFString(ret, CFCopyLocalizedString(CFSTR("<Base Skin>"),"Base Skin"), kMenuItemAttrIconDisabled, NULL,NULL); | AppendMenuItemTextWithCFString(ret, CFCopyLocalizedString(CFSTR("<Base Skin>"),"Base Skin"), kMenuItemAttrIconDisabled, 0, 0); |
| if (base[0] == '\0') { | if (base[0] == '\0') { |
| CheckMenuItem(ret, BASENUMBER-1, true); | CheckMenuItem(ret, BASENUMBER-1, true); |
| } | } |
| Line 878 const char *base; | Line 878 const char *base; |
| if (!getLongFileName(longname, p)) { | if (!getLongFileName(longname, p)) { |
| strcpy(longname, file_getname(p)); | strcpy(longname, file_getname(p)); |
| } | } |
| AppendMenuItemTextWithCFString(ret, CFStringCreateWithCString(NULL, longname, kCFStringEncodingUTF8), attr, NULL, NULL); | AppendMenuItemTextWithCFString(ret, CFStringCreateWithCString(NULL, longname, kCFStringEncodingUTF8), attr, 0, 0); |
| } | } |
| for (i=0; i<cnt; i++) { | for (i=0; i<cnt; i++) { |
| if (!file_cmpname(base, np2tool.skinmru[i])) { | if (!file_cmpname(base, np2tool.skinmru[i])) { |
| Line 926 static void openpopup(Point location) { | Line 926 static void openpopup(Point location) { |
| InsertMenu(hMenu, -1); | InsertMenu(hMenu, -1); |
| createskinmenu(hMenu); | createskinmenu(hMenu); |
| AppendMenu(hMenu, "\p-"); | AppendMenu(hMenu, "\p-"); |
| AppendMenuItemTextWithCFString(hMenu, CFCopyLocalizedString(CFSTR("Close"),"ToolWin Close"), kMenuItemAttrIconDisabled, NULL, NULL); | AppendMenuItemTextWithCFString(hMenu, CFCopyLocalizedString(CFSTR("Close"),"ToolWin Close"), kMenuItemAttrIconDisabled, 0, 0); |
| DeleteMenu(222); | DeleteMenu(222); |
| selectclose = CountMenuItems(hMenu); | selectclose = CountMenuItems(hMenu); |
| sel = LoWord(PopUpMenuSelect(hMenu, location.v, location.h, 0)); | sel = LoWord(PopUpMenuSelect(hMenu, location.v, location.h, 0)); |
| Line 1193 const DISKACC *accterm; | Line 1193 const DISKACC *accterm; |
| // ---- | // ---- |
| static const char ini_title[] = "NP2 tool"; | static const char ini_title[] = "NP2 tool"; |
| #if !defined(SUPPORT_PC9821) | |
| static const char inifile[] = "np2.cfg"; // same file name.. | static const char inifile[] = "np2.cfg"; // same file name.. |
| #else | |
| static const char inifile[] = "np21.cfg"; | |
| #endif | |
| static const INITBL iniitem[] = { | static const INITBL iniitem[] = { |
| {"WindposX", INITYPE_SINT32, &np2tool.posx, 0}, | {"WindposX", INITYPE_SINT32, &np2tool.posx, 0}, |