Diff for /np2/macosx/np2.cpp between versions 1.61 and 1.64

version 1.61, 2004/04/20 17:28:24 version 1.64, 2004/08/16 07:51:15
Line 40 Line 40
 #include        "aboutdlg.h"  #include        "aboutdlg.h"
 #include        "keystat.h"  #include        "keystat.h"
 #include        "subwind.h"  #include        "subwind.h"
   #include        "macclnd.h"
   
 #define NP2OPENING  #define NP2OPENING
 // #define      OPENING_WAIT    1500  // #define      OPENING_WAIT    1500
   
   
   #if !defined(SUPPORT_PC9821)
                 NP2OSCFG        np2oscfg = {"Neko Project IIx",                                         //titles                  NP2OSCFG        np2oscfg = {"Neko Project IIx",                                         //titles
   #else
                   NP2OSCFG        np2oscfg = {"Neko Project 21x",                                         //titles
   #endif
                                                                 -1,                                                                             //winx                                                                  -1,                                                                             //winx
                                                                 -1,                                                                             //winy                                                                  -1,                                                                             //winy
                                                                 0,                                                                              //NOWAIT                                                                  0,                                                                              //NOWAIT
Line 59 Line 64
                                                                 0,                                                                              //confirm                                                                  0,                                                                              //confirm
                                                                 0,                                                                              //resume                                                                  0,                                                                              //resume
                                                                 1,                                                                              //toolwin                                                                  1,                                                                              //toolwin
   #if defined(SUPPORT_KEYDISP)
                                                                   0,                                                                              //keydisp
   #endif
   #if defined(SUPPORT_SOFTKBD)
                                                                   0,                                                                              //softkey
   #endif
   
                                                                 0,                                                                              //jastsnd                                                                  0,                                                                              //jastsnd
                                                                 0,                                                                              //I286SAVE                                                                  0,                                                                              //I286SAVE
 #ifdef SUPPORT_KEYDISP  
                                                                 1,                                                                              //keydisp  
 #endif  
                                                                 };                                                                  };
   
                 WindowPtr       hWndMain;                  WindowPtr       hWndMain;
Line 183  static void MenuBarInit(void) { Line 192  static void MenuBarInit(void) {
     if (np2oscfg.I286SAVE) {      if (np2oscfg.I286SAVE) {
         AppendMenuItemTextWithCFString(GetMenuRef(IDM_OTHER), CFCopyLocalizedString(CFSTR("i286 save"),"i286"), kMenuItemAttrIconDisabled, NULL,NULL);          AppendMenuItemTextWithCFString(GetMenuRef(IDM_OTHER), CFCopyLocalizedString(CFSTR("i286 save"),"i286"), kMenuItemAttrIconDisabled, NULL,NULL);
     }      }
           
   #if defined(SUPPORT_PC9821)
           AppendMenuItemTextWithCFString(GetMenuRef(IDM_MEMORY), CFSTR("11.6MB"), kMenuItemAttrIconDisabled, NULL, NULL);
           AppendMenuItemTextWithCFString(GetMenuRef(IDM_MEMORY), CFSTR("13.6MB"), kMenuItemAttrIconDisabled, NULL, NULL);
           SetMenuItemTextWithCFString(GetMenuRef(IDM_HELP), IDM_NP2HELP, CFCopyLocalizedString(CFSTR("Help"), "Help"));
           SetMenuItemTextWithCFString(GetMenuRef(IDM_APPLE), IDM_ABOUT, CFCopyLocalizedString(CFSTR("About"), "About"));
           SetMenuItemTextWithCFString(GetMenuRef(IDM_OTHER), IDM_I286SAVE, CFCopyLocalizedString(CFSTR("i386 save"), "save"));
   #endif
   
         if (!(np2cfg.fddequip & 1)) {          if (!(np2cfg.fddequip & 1)) {
                 DisableAllMenuItems(GetMenuRef(IDM_FDD1));                  DisableAllMenuItems(GetMenuRef(IDM_FDD1));
Line 631  void HandleMenuChoice(long wParam) { Line 648  void HandleMenuChoice(long wParam) {
                         update |= SYS_UPDATECFG;                          update |= SYS_UPDATECFG;
                         break;                          break;
   
                   case IDM_MEM116:
                           menu_setextmem(11);
                           update |= SYS_UPDATECFG;
                           break;
   
                   case IDM_MEM136:
                           menu_setextmem(13);
                           update |= SYS_UPDATECFG;
                           break;
   
                 case IDM_BMPSAVE:                  case IDM_BMPSAVE:
                         dialog_writebmp();                          dialog_writebmp();
                         break;                          break;
Line 638  void HandleMenuChoice(long wParam) { Line 665  void HandleMenuChoice(long wParam) {
         case IDM_S98LOGGING:          case IDM_S98LOGGING:
             dialog_s98();              dialog_s98();
             break;              break;
   
           case IDM_CALENDAR:
                           initClnd();
               break;
                           
                 case IDM_DISPCLOCK:                  case IDM_DISPCLOCK:
                         menu_setdispclk(np2oscfg.DISPCLK ^ 1);                          menu_setdispclk(np2oscfg.DISPCLK ^ 1);

Removed from v.1.61  
changed lines
  Added in v.1.64


RetroPC.NET-CVS <cvs@retropc.net>