1999-04-25 20:31:35 +02:00
|
|
|
/*
|
|
|
|
* COMMDLG - File Dialogs
|
|
|
|
*
|
|
|
|
* Copyright 1994 Martin Ayotte
|
|
|
|
* Copyright 1996 Albrecht Kleine
|
2002-03-10 00:29:33 +01:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library 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
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
1999-04-25 20:31:35 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include "winbase.h"
|
2000-11-28 23:40:56 +01:00
|
|
|
#include "winnls.h"
|
2003-01-21 20:32:21 +01:00
|
|
|
#include "winternl.h"
|
1999-04-25 20:31:35 +02:00
|
|
|
#include "commdlg.h"
|
2003-01-21 20:32:21 +01:00
|
|
|
#include "cdlg.h"
|
|
|
|
#include "wine/unicode.h"
|
2002-03-10 00:29:33 +01:00
|
|
|
#include "wine/debug.h"
|
1999-04-25 20:31:35 +02:00
|
|
|
|
2002-03-10 00:29:33 +01:00
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(commdlg);
|
1999-04-25 20:31:35 +02:00
|
|
|
|
|
|
|
/***********************************************************************
|
2001-06-19 05:34:07 +02:00
|
|
|
* GetFileTitleA (COMDLG32.@)
|
1999-04-25 20:31:35 +02:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
short WINAPI GetFileTitleA(LPCSTR lpFile, LPSTR lpTitle, UINT cbBuf)
|
|
|
|
{
|
2003-01-21 20:32:21 +01:00
|
|
|
int ret;
|
|
|
|
UNICODE_STRING strWFile;
|
|
|
|
LPWSTR lpWTitle;
|
|
|
|
|
|
|
|
RtlCreateUnicodeStringFromAsciiz(&strWFile, lpFile);
|
|
|
|
lpWTitle = RtlAllocateHeap( GetProcessHeap(), 0, cbBuf*sizeof(WCHAR));
|
|
|
|
ret = GetFileTitleW(strWFile.Buffer, lpWTitle, cbBuf);
|
|
|
|
if (!ret) WideCharToMultiByte( CP_ACP, 0, lpWTitle, -1, lpTitle, cbBuf, NULL, NULL );
|
|
|
|
RtlFreeUnicodeString( &strWFile );
|
|
|
|
RtlFreeHeap( GetProcessHeap(), 0, lpWTitle );
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
1999-04-25 20:31:35 +02:00
|
|
|
|
2003-01-21 20:32:21 +01:00
|
|
|
/***********************************************************************
|
|
|
|
* GetFileTitleW (COMDLG32.@)
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
short WINAPI GetFileTitleW(LPCWSTR lpFile, LPWSTR lpTitle, UINT cbBuf)
|
|
|
|
{
|
|
|
|
int i, len;
|
|
|
|
static const WCHAR brkpoint[] = {'*','[',']'};
|
1999-06-12 17:45:58 +02:00
|
|
|
TRACE("(%p %p %d); \n", lpFile, lpTitle, cbBuf);
|
1999-04-25 20:31:35 +02:00
|
|
|
|
2000-02-20 19:54:04 +01:00
|
|
|
if(lpFile == NULL || lpTitle == NULL)
|
1999-04-25 20:31:35 +02:00
|
|
|
return -1;
|
|
|
|
|
2003-01-21 20:32:21 +01:00
|
|
|
len = strlenW(lpFile);
|
1999-04-25 20:31:35 +02:00
|
|
|
|
|
|
|
if (len == 0)
|
|
|
|
return -1;
|
|
|
|
|
2003-01-21 20:32:21 +01:00
|
|
|
if(strpbrkW(lpFile, brkpoint))
|
1999-04-25 20:31:35 +02:00
|
|
|
return -1;
|
|
|
|
|
|
|
|
len--;
|
|
|
|
|
|
|
|
if(lpFile[len] == '/' || lpFile[len] == '\\' || lpFile[len] == ':')
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
for(i = len; i >= 0; i--)
|
|
|
|
{
|
|
|
|
if (lpFile[i] == '/' || lpFile[i] == '\\' || lpFile[i] == ':')
|
|
|
|
{
|
|
|
|
i++;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(i == -1)
|
|
|
|
i++;
|
|
|
|
|
2003-01-21 20:32:21 +01:00
|
|
|
TRACE("---> '%s' \n", debugstr_w(&lpFile[i]));
|
2002-06-01 01:06:46 +02:00
|
|
|
|
2003-01-21 20:32:21 +01:00
|
|
|
len = strlenW(lpFile+i)+1;
|
1999-04-25 20:31:35 +02:00
|
|
|
if(cbBuf < len)
|
|
|
|
return len;
|
|
|
|
|
2003-01-21 20:32:21 +01:00
|
|
|
strcpyW(lpTitle, &lpFile[i]);
|
1999-04-25 20:31:35 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
2001-07-02 21:59:40 +02:00
|
|
|
* GetFileTitle (COMMDLG.27)
|
1999-04-25 20:31:35 +02:00
|
|
|
*/
|
|
|
|
short WINAPI GetFileTitle16(LPCSTR lpFile, LPSTR lpTitle, UINT16 cbBuf)
|
|
|
|
{
|
|
|
|
return GetFileTitleA(lpFile, lpTitle, cbBuf);
|
|
|
|
}
|