Changeset 164
- Timestamp:
- Nov 27, 2006, 8:35:33 PM (18 years ago)
- Location:
- trunk/Lucide/SOURCE/gui
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/Lucide/SOURCE/gui/lucide.cpp ¶
r161 r164 768 768 case CM_PRINT: 769 769 { 770 PrintDlg *d = new PrintDlg( hWndFrame, doc, docViewer->getCurrentPage() + 1 ); 771 if ( d->showDialog() == DID_OK ) { 770 PrintDlg *d = new PrintDlg( hWndFrame, doc, Lucide::docFileName, docViewer->getCurrentPage() + 1 ); 771 if ( d->showDialog() == DID_OK ) 772 { 772 773 // print 773 774 PrintSetup *p = new PrintSetup; -
TabularUnified trunk/Lucide/SOURCE/gui/print.cpp ¶
r162 r164 309 309 310 310 char tmpps[ CCHMAXPATH ] = ""; 311 if ( psetup->psToFile ) 312 { 313 strcpy( tmpps, title ); 314 char *pointpos = strrchr( tmpps, '.' ); 315 if ( pointpos != NULL ) { 316 *pointpos = 0; 317 } 318 strcat( tmpps, ".ps" ); 319 320 PFILEDLG fd = new FILEDLG; 321 memset( fd, 0, sizeof( FILEDLG ) ); 322 fd->cbSize = sizeof( FILEDLG ); 323 fd->fl = FDS_CENTER | FDS_SAVEAS_DIALOG; 324 strcpy( fd->szFullFile, tmpps ); 325 WinFileDlg( HWND_DESKTOP, hFrame, fd ); 326 if ( fd->lReturn == DID_OK ) { 327 strcpy( tmpps, fd->szFullFile ); 328 delete fd; 329 } 330 else { 331 delete fd; 332 return true; 333 } 311 if ( psetup->psToFile ) { 312 strcpy( tmpps, psetup->psFile ); 334 313 } 335 314 else { -
TabularUnified trunk/Lucide/SOURCE/gui/print.h ¶
r162 r164 57 57 int copies; 58 58 bool psToFile; 59 char psFile[ CCHMAXPATH ]; 59 60 }; 60 61 -
TabularUnified trunk/Lucide/SOURCE/gui/printDlg.cpp ¶
r162 r164 49 49 50 50 51 PrintDlg::PrintDlg( HWND hWndFrame, LuDocument *_doc, long _currentpage )51 PrintDlg::PrintDlg( HWND hWndFrame, LuDocument *_doc, const char *fname, long _currentpage ) 52 52 { 53 53 hFrame = hWndFrame; … … 55 55 scalable = _doc->isScalable( ev ); 56 56 fixed = _doc->isFixedImage( ev ); 57 filename = newstrdup( fname ); 57 58 currentpage = _currentpage; 58 59 pcurForm = new HCINFO; … … 64 65 PrintDlg::~PrintDlg() 65 66 { 67 delete filename; 66 68 delete pcurForm; 67 69 delete psetup; … … 599 601 _this->psetup->psToFile = WinQueryButtonCheckstate( hwnd, IDC_PRINT_TO_FILE ); 600 602 603 if ( _this->psetup->psToFile ) 604 { 605 strcpy( _this->psetup->psFile, _this->filename ); 606 char *pointpos = strrchr( _this->psetup->psFile, '.' ); 607 if ( pointpos != NULL ) { 608 *pointpos = 0; 609 } 610 strcat( _this->psetup->psFile, ".ps" ); 611 612 PFILEDLG fd = new FILEDLG; 613 memset( fd, 0, sizeof( FILEDLG ) ); 614 fd->cbSize = sizeof( FILEDLG ); 615 fd->fl = FDS_CENTER | FDS_SAVEAS_DIALOG; 616 strcpy( fd->szFullFile, _this->psetup->psFile ); 617 WinFileDlg( HWND_DESKTOP, hwnd, fd ); 618 if ( fd->lReturn == DID_OK ) { 619 strcpy( _this->psetup->psFile, fd->szFullFile ); 620 delete fd; 621 } 622 else { 623 delete fd; 624 WinDismissDlg( hwnd, DID_CANCEL ); 625 return (MRESULT)FALSE; 626 } 627 } 628 601 629 WinDismissDlg( hwnd, DID_OK ); 602 630 } -
TabularUnified trunk/Lucide/SOURCE/gui/printDlg.h ¶
r102 r164 44 44 { 45 45 public: 46 PrintDlg( HWND hWndFrame, LuDocument *_doc, long _currentpage );46 PrintDlg( HWND hWndFrame, LuDocument *_doc, const char *fname, long _currentpage ); 47 47 virtual ~PrintDlg(); 48 48 … … 67 67 bool scalable; 68 68 bool fixed; 69 char *filename; 69 70 long currentpage; 70 71 PPRQINFO3 pQueueInfo;
Note:
See TracChangeset
for help on using the changeset viewer.