1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-08-14 13:30:48 +03:00

0021985: Vista/WIndows 7 compatibility issues reported by the community

WNT_Window::Dump method calls were replaced with V3dView::Dump calls
Type casts were removed
Added supported image formats in file filters of Export methods, edited documentation for Image_AlienPixMap  class
Supported image formats filter for 2dsample was extended
This commit is contained in:
aba
2012-12-07 14:21:46 +04:00
parent 2210f3484a
commit 3994ec417f
5 changed files with 35 additions and 40 deletions

View File

@@ -127,7 +127,9 @@ void OCC_2dView::OnInitialUpdate()
void OCC_2dView::OnFileExportImage()
{
CFileDialog dlg(FALSE,_T("*.BMP"),NULL,OFN_HIDEREADONLY | OFN_OVERWRITEPROMPT,
_T("BMP Files (*.BMP)|*.bmp |GIF Files (*.GIF)|*.gif | XWD Files (*.XWD)|*.xwd||"),
_T("BMP Files (*.BMP)|*.bmp |GIF Files (*.GIF)|*.gif | PNG Files (*.PNG)|*.png"
"|JPEG Files (*.JPEG)|*.jpeg | PPM Files (*.PPM)|*.ppm | TIFF Files (*.TIFF)"
"|*.tiff | TGA Files (*.TGA)|*.tga | EXR Files (*.EXR)|*.exr||"),
NULL );
if (dlg.DoModal() == IDOK)
@@ -136,10 +138,6 @@ if (dlg.DoModal() == IDOK)
CString filename = dlg.GetPathName();
Handle(WNT_Window) aWNTWindow=
Handle(WNT_Window)::DownCast(myV2dView->Driver()->Window());
CString ext = dlg.GetFileExt();
if (ext == "bmp") aWNTWindow->SetOutputFormat ( WNT_TOI_BMP );
if (ext == "gif") aWNTWindow->SetOutputFormat ( WNT_TOI_GIF );
if (ext == "xwd") aWNTWindow->SetOutputFormat ( WNT_TOI_XWD );
aWNTWindow->Dump ((Standard_CString)(LPCTSTR)filename);
SetCursor(AfxGetApp()->LoadStandardCursor(IDC_ARROW));
}