Diff for /np2/win9x/dialog/dialogs.cpp between versions 1.9 and 1.14

version 1.9, 2005/03/20 23:48:03 version 1.14, 2007/12/16 14:58:25
Line 1 Line 1
 #include        "compiler.h"  #include        "compiler.h"
   #include        "resource.h"
 #include        "strres.h"  #include        "strres.h"
 #include        "bmpdata.h"  #include        "bmpdata.h"
 #include        "oemtext.h"  #include        "oemtext.h"
 #include        "dosio.h"  #include        "dosio.h"
 #include        "commng.h"  #include        "commng.h"
 #include        "dialogs.h"  #include        "dialogs.h"
   #include        "np2.h"
 #if defined(MT32SOUND_DLL)  #if defined(MT32SOUND_DLL)
 #include        "mt32snd.h"  #include        "mt32snd.h"
 #endif  #endif
Line 12 Line 14
   
 const TCHAR str_nc[] = _T("N/C");  const TCHAR str_nc[] = _T("N/C");
   
 const TCHAR str_int0[] = _T("INT0");  
 const TCHAR str_int1[] = _T("INT1");  
 const TCHAR str_int2[] = _T("INT2");  
 const TCHAR str_int4[] = _T("INT4");  
 const TCHAR str_int5[] = _T("INT5");  
 const TCHAR str_int6[] = _T("INT6");  
   
   // ---- enable
   
 // ---- file select  void dlgs_enablebyautocheck(HWND hWnd, UINT uID, UINT uCheckID)
   {
           EnableWindow(GetDlgItem(hWnd, uID),
                           (SendDlgItemMessage(hWnd, uCheckID, BM_GETCHECK, 0, 0) != 0));
   }
   
 BOOL dlgs_selectfile(HWND hWnd, const FILESEL *item,  void dlgs_disablebyautocheck(HWND hWnd, UINT uID, UINT uCheckID)
                                                                                 OEMCHAR *path, UINT size, int *ro) {  {
           EnableWindow(GetDlgItem(hWnd, uID),
                           (SendDlgItemMessage(hWnd, uCheckID, BM_GETCHECK, 0, 0) == 0));
   
         OPENFILENAME    ofn;  }
   
   
   // ---- file select
   
   static BOOL openFileParam(LPOPENFILENAME lpOFN, PCFSPARAM pcParam,
                                                           OEMCHAR *pszPath, UINT uSize,
                                                           BOOL (WINAPI * fnAPI)(LPOPENFILENAME lpofn))
   {
           HINSTANCE       hInstance;
           LPTSTR          lpszTitle;
           LPTSTR          lpszFilter;
           LPTSTR          lpszDefExt;
           LPTSTR          p;
 #if defined(OSLANG_UTF8)  #if defined(OSLANG_UTF8)
         TCHAR                   _path[MAX_PATH];          TCHAR           szPath[MAX_PATH];
 #endif  #endif  // defined(OSLANG_UTF8)
           BOOL            bResult;
   
         if ((item == NULL) || (path == NULL) || (size == 0)) {          if ((lpOFN == NULL) || (pcParam == NULL) ||
                 return(FALSE);                  (pszPath == NULL) || (uSize == 0) || (fnAPI == NULL))
           {
                   return FALSE;
         }          }
         ZeroMemory(&ofn, sizeof(OPENFILENAME));  
         ofn.lStructSize = sizeof(OPENFILENAME);          hInstance = g_hInstance;
         ofn.hwndOwner = hWnd;  
         ofn.lpstrFilter = item->filter;          if (!HIWORD(pcParam->lpszTitle))
         ofn.nFilterIndex = item->defindex;          {
 #if defined(OSLANG_UTF8)                  lpszTitle = lockstringresource(hInstance, pcParam->lpszTitle);
         oemtotchar(_path, NELEMENTS(_path), path, -1);                  lpOFN->lpstrTitle = lpszTitle;
         ofn.lpstrFile = _path;  
         ofn.nMaxFile = NELEMENTS(_path);  
 #else  
         ofn.lpstrFile = path;  
         ofn.nMaxFile = size;  
 #endif  
         ofn.Flags = OFN_FILEMUSTEXIST;  
         ofn.lpstrDefExt = item->ext;  
         ofn.lpstrTitle = item->title;  
         if (!GetOpenFileName(&ofn)) {  
                 return(FALSE);  
         }          }
 #if defined(OSLANG_UTF8)          else
         tchartooem(path, NELEMENTS(path), _path, -1);          {
 #endif                  lpszTitle = NULL;
         if (ro) {                  lpOFN->lpstrTitle = pcParam->lpszTitle;
                 *ro = ofn.Flags & OFN_READONLY;  
         }          }
         return(TRUE);  
 }  
   
 BOOL dlgs_selectwritefile(HWND hWnd, const FILESEL *item,          if (!HIWORD(pcParam->lpszFilter))
                                                                                         OEMCHAR *path, UINT size) {          {
                   lpszFilter = lockstringresource(hInstance, pcParam->lpszFilter);
                   lpOFN->lpstrFilter = lpszFilter;
           }
           else
           {
                   lpszFilter = NULL;
                   lpOFN->lpstrFilter = pcParam->lpszFilter;
           }
   
         OPENFILENAME    ofn;          if (!HIWORD(pcParam->lpszDefExt))
 #if defined(OSLANG_UTF8)          {
         TCHAR                   _path[MAX_PATH];                  lpszDefExt = lockstringresource(hInstance, pcParam->lpszDefExt);
 #endif                  lpOFN->lpstrDefExt = lpszDefExt;
           }
           else
           {
                   lpszDefExt = NULL;
                   lpOFN->lpstrDefExt = pcParam->lpszDefExt;
           }
   
           lpOFN->nFilterIndex = pcParam->nFilterIndex;
   
         if ((item == NULL) || (path == NULL) || (size == 0)) {  
                 return(FALSE);          p = lpszFilter;
           if (p)
           {
                   while(*p != '\0')
                   {
   #if !defined(_UNICODE)
                           if (IsDBCSLeadByte((BYTE)*p))
                           {
                                   p += 2;
                                   continue;
                           }
   #endif  // !defined(_UNICODE)
                           if (*p == '|')
                           {
                                   *p = '\0';
                           }
                           p++;
                   }
         }          }
         ZeroMemory(&ofn, sizeof(OPENFILENAME));  
         ofn.lStructSize = sizeof(OPENFILENAME);  
         ofn.hwndOwner = hWnd;  
         ofn.lpstrFilter = item->filter;  
         ofn.nFilterIndex = item->defindex;  
 #if defined(OSLANG_UTF8)  #if defined(OSLANG_UTF8)
         oemtotchar(_path, NELEMENTS(_path), path, -1);          oemtotchar(szPath, NELEMENTS(szPath), pszPath, -1);
         ofn.lpstrFile = _path;          lpOFN->lpstrFile = szPath;
         ofn.nMaxFile = NELEMENTS(_path);          lpOFN->nMaxFile = NELEMENTS(szPath);
 #else  #else   // defined(OSLANG_UTF8)
         ofn.lpstrFile = path;          lpOFN->lpstrFile = pszPath;
         ofn.nMaxFile = size;          lpOFN->nMaxFile = uSize;
 #endif  #endif  // defined(OSLANG_UTF8)
         ofn.Flags = OFN_OVERWRITEPROMPT | OFN_HIDEREADONLY;  
         ofn.lpstrDefExt = item->ext;          bResult = (*fnAPI)(lpOFN);
         ofn.lpstrTitle = item->title;  
         if (!GetSaveFileName(&ofn)) {  
                 return(FALSE);  
         }  
 #if defined(OSLANG_UTF8)  #if defined(OSLANG_UTF8)
         tchartooem(path, NELEMENTS(path), _path, -1);          if (bResult)
 #endif          {
         return(TRUE);                  tchartooem(pszPath, uSize, szPath, -1);
           }
   #endif  // defined(OSLANG_UTF8)
   
           if (lpszTitle)
           {
                   unlockstringresource(lpszTitle);
           }
           if (lpszFilter)
           {
                   unlockstringresource(lpszFilter);
           }
           if (lpszDefExt)
           {
                   unlockstringresource(lpszDefExt);
           }
   
           return bResult;
 }  }
   
 BOOL dlgs_selectwritenum(HWND hWnd, const FILESEL *item,  BOOL dlgs_openfile(HWND hWnd, PCFSPARAM pcParam,
                                                                                         OEMCHAR *path, UINT size) {                                                                          OEMCHAR *pszPath, UINT uSize, int *pnRO)
   {
           OPENFILENAME    ofn;
           BOOL                    bResult;
   
         OEMCHAR *file;          ZeroMemory(&ofn, sizeof(ofn));
         OEMCHAR *p;          ofn.lStructSize = sizeof(ofn);
         OEMCHAR *q;          ofn.hwndOwner = hWnd;
         UINT    i;          ofn.Flags = OFN_FILEMUSTEXIST;
         BOOL    r;  
           if (pnRO == NULL)
           {
                   ofn.Flags |= OFN_HIDEREADONLY;
           }
   
           bResult = openFileParam(&ofn, pcParam, pszPath, uSize, GetOpenFileName);
   
         if ((item == NULL) || (path == NULL) || (size == 0)) {          if ((bResult) && (pnRO != NULL))
                 return(FALSE);          {
                   *pnRO = ofn.Flags & OFN_READONLY;
         }          }
         file = (OEMCHAR *)_MALLOC((size + 16) * sizeof(OEMCHAR), path);  
         if (file == NULL) {          return bResult;
                 return(FALSE);  }
         }  
         p = file_getname(path);  BOOL dlgs_createfile(HWND hWnd, PCFSPARAM pcParam,
         milstr_ncpy(file, path, size);                                                                                                  OEMCHAR *pszPath, UINT uSize)
         file_cutname(file);  {
         q = file + OEMSTRLEN(file);          OPENFILENAME    ofn;
   
         for (i=0; i<10000; i++) {          ZeroMemory(&ofn, sizeof(ofn));
                 OEMSPRINTF(q, p, i);          ofn.lStructSize = sizeof(ofn);
                 if (file_attr(file) == (short)-1) {          ofn.hwndOwner = hWnd;
           ofn.Flags = OFN_OVERWRITEPROMPT | OFN_HIDEREADONLY;
           return openFileParam(&ofn, pcParam, pszPath, uSize, GetSaveFileName);
   }
   
   BOOL dlgs_createfilenum(HWND hWnd, PCFSPARAM pcParam,
                                                                                                   OEMCHAR *pszPath, UINT uSize)
   {
           OEMCHAR *pszNum[4];
           OEMCHAR *pszFile;
           UINT uCount;
           UINT uPos;
   
           if (!pszPath)
           {
                   return FALSE;
           }
   
           ZeroMemory(pszNum, sizeof(pszNum));
           pszFile = file_getname(pszPath);
           uCount = 0;
           while(1)
           {
                   pszFile = milstr_chr(pszPath, '#');
                   if (!pszFile)
                   {
                           break;
                   }
                   *pszFile = '0';
                   pszNum[uCount] = pszFile;
                   uCount = (uCount + 1) % NELEMENTS(pszNum);
                   pszFile++;
           }
   
           while(file_attr(pszPath) != (short)-1)
           {
                   uPos = max(uCount, NELEMENTS(pszNum));
                   while(uPos)
                   {
                           pszFile = pszNum[(uPos - 1) % NELEMENTS(pszNum)];
                           *pszFile = *pszFile + 1;
                           if (*pszFile < ('0' + 10))
                           {
                                   break;
                           }
                           *pszFile = '0';
                           uPos--;
                   }
                   if (!uPos)
                   {
                         break;                          break;
                 }                  }
         }          }
         r = dlgs_selectwritefile(hWnd, item, file, size);          return dlgs_createfile(hWnd, pcParam, pszPath, uSize);
         if (r) {  
                 milstr_ncpy(path, file, size);  
         }  
         _MFREE(file);  
         return(r);  
 }  }
   
   
 // ---- mimpi def file  // ---- mimpi def file
   
 static const TCHAR mimpi_title[] = _T("Open MIMPI define file");  static const FSPARAM fpMIMPI =
 static const TCHAR mimpi_ext[] = _T("def");  {
 static const TCHAR mimpi_filter[] = _T("MIMPI define file(*.def)\0*.def\0");          MAKEINTRESOURCE(IDS_MIMPITITLE),
 static const FILESEL mimpi = {mimpi_title, mimpi_ext, mimpi_filter, 1};          MAKEINTRESOURCE(IDS_MIMPIEXT),
           MAKEINTRESOURCE(IDS_MIMPIFILTER),
           1
   };
   
 void dlgs_browsemimpidef(HWND hWnd, UINT16 res) {  void dlgs_browsemimpidef(HWND hWnd, UINT16 res) {
   
Line 148  const OEMCHAR *p; Line 253  const OEMCHAR *p;
   
         subwnd = GetDlgItem(hWnd, res);          subwnd = GetDlgItem(hWnd, res);
         GetWindowText(subwnd, path, NELEMENTS(path));          GetWindowText(subwnd, path, NELEMENTS(path));
         if (dlgs_selectfile(hWnd, &mimpi, path, NELEMENTS(path), NULL)) {          if (dlgs_openfile(hWnd, &fpMIMPI, path, NELEMENTS(path), NULL)) {
                 p = path;                  p = path;
         }          }
         else {          else {
Line 172  void dlgs_setliststr(HWND hWnd, UINT16 r Line 277  void dlgs_setliststr(HWND hWnd, UINT16 r
 }  }
   
 void dlgs_setlistuint32(HWND hWnd, UINT16 res, const UINT32 *item, UINT items) {  void dlgs_setlistuint32(HWND hWnd, UINT16 res, const UINT32 *item, UINT items) {
   
         HWND    wnd;          HWND    wnd;
         UINT    i;          UINT    i;
         OEMCHAR str[16];          OEMCHAR str[16];
Line 184  void dlgs_setlistuint32(HWND hWnd, UINT1 Line 288  void dlgs_setlistuint32(HWND hWnd, UINT1
         }          }
 }  }
   
   void dlgs_setcbitem(HWND hWnd, UINT uID, PCCBPARAM pcItem, UINT uItems)
   {
           HWND    hItem;
           UINT    i;
           LPCTSTR lpcszStr;
           TCHAR   szString[128];
           int             nIndex;
   
           hItem = GetDlgItem(hWnd, uID);
           for (i=0; i<uItems; i++)
           {
                   lpcszStr = pcItem[i].lpcszString;
                   if (!HIWORD(lpcszStr))
                   {
                           if (!loadstringresource(g_hInstance, LOWORD(lpcszStr),
                                                                                           szString, NELEMENTS(szString)))
                           {
                                   continue;
                           }
                           lpcszStr = szString;
                   }
                   nIndex = SendMessage(hItem, CB_ADDSTRING, 0, (LPARAM)lpcszStr);
                   if (nIndex >= 0)
                   {
                           SendMessage(hItem, CB_SETITEMDATA,
                                                                   (WPARAM)nIndex, (LPARAM)pcItem[i].nItemData);
                   }
           }
   }
   
   void dlgs_setcbnumber(HWND hWnd, UINT uID, PCCBNPARAM pcItem, UINT uItems)
   {
           HWND    hItem;
           UINT    i;
           TCHAR   szValue[16];
           int             nIndex;
   
           hItem = GetDlgItem(hWnd, uID);
           for (i=0; i<uItems; i++)
           {
                   wsprintf(szValue, str_u, pcItem[i].uValue);
                   nIndex = SendMessage(hItem, CB_ADDSTRING, 0, (LPARAM)szValue);
                   if (nIndex >= 0)
                   {
                           SendMessage(hItem, CB_SETITEMDATA,
                                                                   (WPARAM)nIndex, (LPARAM)pcItem[i].nItemData);
                   }
           }
   }
   
   void dlgs_setcbcur(HWND hWnd, UINT uID, int nItemData)
   {
           HWND    hItem;
           int             nItems;
           int             i;
   
           hItem = GetDlgItem(hWnd, uID);
           nItems = SendMessage(hItem, CB_GETCOUNT, 0, 0);
           for (i=0; i<nItems; i++)
           {
                   if (SendMessage(hItem, CB_GETITEMDATA, (WPARAM)i, 0) == nItemData)
                   {
                           SendMessage(hItem, CB_SETCURSEL, (WPARAM)i, 0);
                           break;
                   }
           }
   }
   
   int dlgs_getcbcur(HWND hWnd, UINT uID, int nDefault)
   {
           HWND    hItem;
           int             nPos;
   
           hItem = GetDlgItem(hWnd, uID);
           nPos = SendMessage(hItem, CB_GETCURSEL, 0, 0);
           if (nPos >= 0)
           {
                   return SendMessage(hItem, CB_GETITEMDATA, (WPARAM)nPos, 0);
           }
           return nDefault;
   }
   
   
 // ---- MIDIデバイスのリスト  // ---- MIDIデバイスのリスト
   
Line 260  void dlgs_setlistmidiin(HWND hWnd, UINT1 Line 446  void dlgs_setlistmidiin(HWND hWnd, UINT1
 }  }
   
   
   
 // ---- draw  // ---- draw
   
 void dlgs_drawbmp(HDC hdc, UINT8 *bmp) {  void dlgs_drawbmp(HDC hdc, UINT8 *bmp) {
Line 299  dsdb_err1: Line 486  dsdb_err1:
         _MFREE(bmp);          _MFREE(bmp);
 }  }
   
   
   // ----
   
   BOOL dlgs_getitemrect(HWND hWnd, UINT uID, RECT *pRect)
   {
           HWND    hItem;
           POINT   pt;
   
           if (pRect == NULL)
           {
                   return FALSE;
           }
           hItem = GetDlgItem(hWnd, uID);
           if (!GetWindowRect(hItem, pRect))
           {
                   return FALSE;
           }
           ZeroMemory(&pt, sizeof(pt));
           if (!ClientToScreen(hWnd, &pt))
           {
                   return FALSE;
           }
           pRect->left -= pt.x;
           pRect->top -= pt.y;
           pRect->right -= pt.x;
           pRect->bottom -= pt.y;
           return TRUE;
   }
   

Removed from v.1.9  
changed lines
  Added in v.1.14


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