00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051
00052
00053
00054
00055
00056
00057
00058
00059
00060
00061
00062
00063
00064
00065
00066
00067
00068
00069
00070
00071
00072
00073
00074
00075
00076
00077
00078
00079
00080
00081
00082
00083
00084
00085
00086
00087
00088
00089
00090
00091
00092
00093
00094
00095
00096
00097
00098
00099
00100 #include "camtypes.h"
00101
00102
00103
00104
00105 #include "crthumb.h"
00106 #include "sgfonts.h"
00107
00108 #include "urlimp.h"
00109 #include "fileutil.h"
00110
00111
00112 #include "urldlg.h"
00113
00114 #include "gendwnd.h"
00115
00116
00117 #include "filedlgs.h"
00118
00119 #include "pngfiltr.h"
00120
00121 #include "sgindgen.h"
00122
00123 #include "sgfonts.h"
00124 #include "camelot.h"
00125 #include "menucmds.h"
00126
00127 extern CCamApp NEAR theApp;
00128
00129 #ifdef _DEBUG
00130 CC_IMPLEMENT_DYNCREATE(OpCreateFontThumbnails, OpMenuImport)
00131 CC_IMPLEMENT_DYNCREATE(OpConvertFileFormats, Operation)
00132 BOOL OpConvertFileFormats::active = FALSE;
00133
00134
00135
00136
00137
00138
00139
00140
00141
00142
00143
00144
00145
00146
00147
00148
00149
00150
00151
00152
00153
00154 BOOL OpCreateFontThumbnails::Init()
00155 {
00156 return RegisterOpDescriptor(
00157 0,
00158 _R(IDS_CREATEFONTTHUMBNAILS),
00159 CC_RUNTIME_CLASS(OpCreateFontThumbnails),
00160 OPTOKEN_CREATEFONTTHUMBNAILS,
00161 GetState,
00162 0,
00163 _R(IDBBL_CREATEFONTTHUMBNAILS),
00164 _R(IDD_BARCONTROLSTORE),
00165 _R(IDC_FILEURLIMPORT),
00166 SYSTEMBAR_FILE,
00167 TRUE,
00168 FALSE,
00169 TRUE,
00170 0,
00171 0
00172 );
00173
00174 }
00175
00176 BOOL OpConvertFileFormats::Init()
00177 {
00178 return RegisterOpDescriptor(
00179 0,
00180 _R(IDS_CONVERTFILEFORMATS),
00181 CC_RUNTIME_CLASS(OpConvertFileFormats),
00182 OPTOKEN_CONVERTFILEFORMATS,
00183 GetState,
00184 0,
00185 _R(IDBBL_CONVERTFILEFORMATS),
00186 _R(IDD_BARCONTROLSTORE),
00187 _R(IDC_FILEURLIMPORT),
00188 SYSTEMBAR_FILE,
00189 TRUE,
00190 FALSE,
00191 TRUE,
00192 0,
00193 0
00194 );
00195
00196 }
00197
00198
00199
00200
00201
00202
00203
00204
00205
00206
00207
00208
00209 void OpCreateFontThumbnails::Do(OpDescriptor*)
00210 {
00211
00212
00213 CFileDialog dlgIndex(TRUE);
00214
00215 dlgIndex.DoModal();
00216
00217 PathName pthIndex=(const TCHAR*) dlgIndex.GetPathName();
00218
00219
00220 CCDiskFile fileIndex(1024, FALSE, TRUE);
00221
00222 fileIndex.open(pthIndex, ios::in | ios::binary);
00223
00224
00225 fileIndex.InitLexer();
00226
00227 fileIndex.SetDelimiters("\r\n");
00228 fileIndex.SetCommentMarker('#');
00229 fileIndex.SetWhitespace("\t");
00230
00231
00232 const TCHAR* TokenBuf = fileIndex.GetTokenBuf();
00233
00234
00235 LexTokenType tokType=TOKEN_NORMAL;
00236
00237
00238
00239 while (tokType != TOKEN_EOF && camStrcmp(TokenBuf, "START")!=0)
00240 {
00241
00242 fileIndex.GetToken();
00243
00244
00245 tokType = fileIndex.GetTokenType();
00246 }
00247
00248
00249 while (tokType!=TOKEN_EOF)
00250 {
00251
00252 fileIndex.GetToken();
00253
00254
00255 tokType = fileIndex.GetTokenType();
00256
00257
00258 TCHAR* pcFindPtr=camStrchr(TokenBuf, ',');
00259
00260
00261 if (pcFindPtr)
00262 {
00263
00264 pcFindPtr=camStrninc(pcFindPtr, 2);
00265
00266
00267 if (pcFindPtr && *pcFindPtr!='\0')
00268 {
00269
00270
00271
00272 TCHAR* pcSecondComma=camStrchr(pcFindPtr, ',');
00273
00274 if (!pcSecondComma)
00275 break;
00276
00277
00278
00279 String_256 strFontName;
00280
00281 while (pcFindPtr && pcFindPtr!=pcSecondComma && *pcFindPtr!='\0')
00282 {
00283 strFontName+=(*pcFindPtr);
00284 pcFindPtr=camStrinc(pcFindPtr);
00285 }
00286
00287
00288
00289
00290 pcFindPtr=camStrninc(pcSecondComma, 2);
00291
00292
00293
00294 String_256 strFontID;
00295
00296 while (pcFindPtr && *pcFindPtr!=',' && *pcFindPtr!='\0')
00297 {
00298 strFontID+=(*pcFindPtr);
00299 pcFindPtr=camStrinc(pcFindPtr);
00300 }
00301
00302
00303 INT32 lFontID=atol(strFontID);
00304
00305
00306 SGDisplayPreviewFonts* pFontItem=FindFontFromName(strFontName);
00307
00308
00309 if (pFontItem)
00310 {
00311
00312
00313 CreateThumbnailFiles(pFontItem, lFontID, pthIndex);
00314 }
00315 }
00316 }
00317 }
00318 }
00319
00320
00321
00322
00323
00324
00325
00326
00327
00328
00329
00330
00331
00332
00333
00334
00335
00336
00337 void OpConvertFileFormats::Do(OpDescriptor*)
00338 {
00339 ERROR3 ("Please read the following comments BEFORE using this op!");
00340
00343
00344
00345 String_256 SearchPath = TEXT ("d:\\clipart\\xara\\");
00346
00347 String_256 FileSpecifier = SearchPath;
00348 FileSpecifier += TEXT("*.art");
00349 String_256 FileSpecifier2 = TEXT("xar");
00350
00353
00354 BOOL ok = FileUtil::StartFindingFiles(&FileSpecifier);
00355 active = TRUE;
00356 String_256 Filename;
00357 while (ok)
00358 {
00359
00360 ok = FileUtil::FindNextFile(&Filename);
00361 String_256 FilePath = SearchPath;
00362 FilePath += Filename;
00363 PathName Path (FilePath);
00364
00365 if (ok)
00366 {
00367 CDocument* pDoc = theApp.OpenDocumentFile((TCHAR*)FilePath);
00368 if (pDoc!=NULL)
00369 {
00370
00371 theApp.MakeDocumentNative(pDoc, &Path);
00372
00373 Path.SetType (FileSpecifier2);
00374 String_256 newPath = Path.GetPath ();
00375 pDoc->DoSave ((TCHAR*) newPath, TRUE);
00376
00377 FileCloseAction ();
00378 }
00379 }
00380 }
00381 active = FALSE;
00382 FileUtil::StopFindingFiles ();
00383 }
00384
00385
00386
00387
00388
00389
00390
00391
00392
00393
00394
00395
00396
00397
00398
00399 void OpCreateFontThumbnails::CreateThumbnailFiles(SGDisplayPreviewFonts* pFontItem, INT32 lFontID, PathName pthIndex)
00400 {
00401
00402
00403
00404 for (INT32 iDMode=0; iDMode<3; iDMode++)
00405 {
00406
00407 SGDisplayPreviewFonts::DMode=iDMode;
00408
00409
00410 KernelBitmap* pThisBitmap=NULL;
00411
00412 pFontItem->CreateThumbnail(&pThisBitmap);
00413
00414
00415 PNGFilter* pPNGFilter=(PNGFilter*) Filter::FindFilterFromID(FILTERID_PREVIEW_PNG);
00416
00417 if (pPNGFilter==NULL)
00418 return;
00419
00420
00421 CCDiskFile fileThumb(1024, FALSE, TRUE);
00422
00423
00424 TCHAR buf[256];
00425
00426 switch (iDMode)
00427 {
00428 case 0:
00429 wsprintf(buf, TEXT("F%05liL.png"), lFontID);
00430 break;
00431 case 2:
00432 wsprintf(buf, TEXT("F%05liS.png"), lFontID);
00433 break;
00434 case 1:
00435 case 3:
00436 default:
00437 wsprintf(buf, TEXT("F%05liM.png"), lFontID);
00438 break;
00439 }
00440
00441 PathName pthThumb=pthIndex;
00442
00443 String_256 strThumbFile=buf;
00444
00445 pthThumb.SetFileNameAndType(strThumbFile);
00446
00447
00448 pPNGFilter->DoExportBitmap(this, &fileThumb, &pthThumb, pThisBitmap);
00449
00450
00451 if (pThisBitmap)
00452 delete pThisBitmap;
00453 }
00454 }
00455
00456
00457
00458
00459
00460
00461
00462
00463
00464
00465
00466
00467
00468
00469
00470
00471
00472
00473
00474
00475
00476
00477
00478
00479
00480
00481
00482
00483
00484
00485
00486
00487
00488
00489
00490
00491
00492
00493
00494
00495
00496
00497
00498
00499
00500
00501
00502
00503
00504
00505
00506
00507
00508
00509
00510
00511
00512
00513
00514
00515
00516
00517
00518
00519
00520
00521
00522
00523
00524
00525
00526
00527
00528
00529
00530
00531
00532
00533
00534
00535
00536
00537
00538
00539
00540
00541
00542
00543
00544
00545
00546
00547
00548
00549
00550
00551
00552
00553
00554
00555
00556
00557
00558
00559
00560
00561
00562
00563
00564
00565
00566
00567
00568
00569
00570
00571
00572
00573
00574
00575
00576 SGDisplayPreviewFonts* OpCreateFontThumbnails::FindFontFromName(String_256& strName)
00577 {
00578
00579 FontsSGallery* pGallery=FontsSGallery::ThisGallery;
00580
00581 if (!pGallery)
00582 return NULL;
00583
00584
00585 SGDisplayRoot* pTree=pGallery->GetDisplayTree();
00586
00587 if (!pTree)
00588 return NULL;
00589
00590
00591
00592
00593 String_256 strCorrectedName=strName;
00594
00595 INT32 iSpace=strCorrectedName.FindNextChar(' ');
00596
00597 while(iSpace>=0)
00598 {
00599 strCorrectedName.Remove(iSpace, 1);
00600 iSpace=strCorrectedName.FindNextChar(' ');
00601 }
00602
00603
00604 INT32 iItalic=strCorrectedName.Sub(String_256("Italic"));
00605
00606 while(iItalic>=0)
00607 {
00608 strCorrectedName.Remove(iItalic, 6);
00609 strCorrectedName.Insert(&String_256("Ital"), iItalic);
00610 iItalic=strCorrectedName.Sub(String_256("Italic"));
00611 }
00612
00613
00614 if (strCorrectedName==String_256("CacheExtraBold"))
00615 strCorrectedName="CacheExtra";
00616
00617 else if (strCorrectedName==String_256("CalmarItal"))
00618 strCorrectedName="CalmariItal";
00619
00620 else if (strCorrectedName==String_256("SerpentineDBolItal"))
00621 strCorrectedName="SerpentineDBol";
00622
00623 else if (strCorrectedName==String_256("TimesNewRoman"))
00624 strCorrectedName="Times New Roman";
00625
00626 else if (strCorrectedName==String_256("AbbessRegular"))
00627 strCorrectedName= "Abbess";
00628
00629 else if (strCorrectedName==String_256("BalthazarRegular"))
00630 strCorrectedName= "Balthazar";
00631
00632 else if (strCorrectedName==String_256("KlingBoldBold"))
00633 strCorrectedName= "KlingBold";
00634
00635 else if (strCorrectedName==String_256("MargaretRegular"))
00636 strCorrectedName= "Margaret";
00637
00638 else if (strCorrectedName==String_256("PhrasticMediumRegular"))
00639 strCorrectedName= "PhrasticMedium";
00640
00641 else if (strCorrectedName==String_256("TarzanRegular"))
00642 strCorrectedName= "Tarzan";
00643
00644 else if (strCorrectedName==String_256("BorealisRegular"))
00645 strCorrectedName= "Borealis";
00646
00647 else if (strCorrectedName.Sub(String_256("FontBank")) == 0)
00648 strCorrectedName.Remove(0, 8);
00649
00650 else if (strCorrectedName==String_256("GaramondAmericanRegular"))
00651 strCorrectedName= "GaramondAmerican";
00652
00653
00654 pGallery->SelectItems(TRUE);
00655
00656
00657 SGDisplayNode* pThisItem = pTree->FindNextSelectedItem(NULL);
00658
00659 static BOOL skipall = FALSE;
00660
00661
00662 while (pThisItem)
00663 {
00664
00665 if (pThisItem->IsKindOf(CC_RUNTIME_CLASS(SGTTFItem)))
00666 {
00667
00668 SGTTFItem* pTTFItem=(SGTTFItem*) pThisItem;
00669
00670
00671
00672 LOGFONT* pLogFont=pTTFItem->CachedLogFont;
00673
00674 if (!pLogFont)
00675 continue;
00676
00677 String_256 strDescription=pLogFont->lfFaceName;
00678
00679
00680 if (camStrncmp(strDescription, strCorrectedName, strCorrectedName.Length())==0)
00681 {
00682
00683 return pTTFItem;
00684 }
00685
00686 if (!skipall)
00687 {
00688
00689 if (strCorrectedName.Sub(strDescription) == 0)
00690 {
00691
00692 if (strCorrectedName==String_256("GaramondAmerican"))
00693 {
00694 if (strDescription==String_256("GaramondAmerican"))
00695 {
00696 TRACEALL( _T("Matched %s with %s\n"), (TCHAR*)strCorrectedName, (TCHAR*)strDescription);
00697 return pTTFItem;
00698 }
00699 }
00700
00701
00702 else if (camStrstr(strCorrectedName, "BoldItal") != 0)
00703 {
00704 if (camStrstr(strDescription, "BoldItal") != 0)
00705 {
00706 TRACEALL( _T("Matched %s with %s\n"), (TCHAR*)strCorrectedName, (TCHAR*)strDescription);
00707 return pTTFItem;
00708 }
00709 }
00710
00711
00712 else if (camStrstr(strCorrectedName, "HeavyItal") != 0)
00713 {
00714 if (camStrstr(strDescription, "HeavyItal") != 0)
00715 {
00716 TRACEALL( _T("Matched %s with %s\n"), (TCHAR*)strCorrectedName, (TCHAR*)strDescription);
00717 return pTTFItem;
00718 }
00719 }
00720
00721
00722 else if (camStrstr(strCorrectedName, "Heavy") != 0)
00723 {
00724 if (camStrstr(strDescription, "Heavy") != 0)
00725 {
00726 TRACEALL( _T("Matched %s with %s\n"), (TCHAR*)strCorrectedName, (TCHAR*)strDescription);
00727 return pTTFItem;
00728 }
00729 }
00730
00731
00732 else if (camStrstr(strCorrectedName, "Bold") != 0)
00733 {
00734 if (camStrstr(strDescription, "Bold") != 0)
00735 {
00736 TRACEALL( _T("Matched %s with %s\n"), (TCHAR*)strCorrectedName, (TCHAR*)strDescription);
00737 return pTTFItem;
00738 }
00739 }
00740
00741
00742 else if (camStrstr(strCorrectedName, "Ital") != 0)
00743 {
00744 if (camStrstr(strDescription, "Ital") != 0)
00745 {
00746 TRACEALL( _T("Matched %s with %s\n"), (TCHAR*)strCorrectedName, (TCHAR*)strDescription);
00747 return pTTFItem;
00748 }
00749 }
00750
00751
00752 else if (camStrstr(strCorrectedName, "Engraved") != 0)
00753 {
00754 if (camStrstr(strDescription, "Engraved") != 0)
00755 {
00756 TRACEALL( _T("Matched %s with %s\n"), (TCHAR*)strCorrectedName, (TCHAR*)strDescription);
00757 return pTTFItem;
00758 }
00759 }
00760
00761
00762 else
00763 {
00764 TRACEALL( _T("Matched %s with %s\n"), (TCHAR*)strCorrectedName, (TCHAR*)strDescription);
00765 return pTTFItem;
00766 }
00767 }
00768 }
00769 }
00770
00771 else if (pThisItem->IsKindOf(CC_RUNTIME_CLASS(SGATMItem)))
00772 {
00773
00774 SGATMItem* pATMItem=(SGATMItem*) pThisItem;
00775
00776
00777
00778 LOGFONT* pLogFont=pATMItem->CachedLogFont;
00779
00780 if (!pLogFont)
00781 continue;
00782
00783 String_256 strDescription=pLogFont->lfFaceName;
00784
00785
00786 if (camStrncmp(strDescription, strCorrectedName, strCorrectedName.Length())==0)
00787 {
00788
00789 return pATMItem;
00790 }
00791
00792 if (!skipall)
00793 {
00794
00795 if (strCorrectedName.Sub(strDescription) == 0)
00796 {
00797
00798 if (strCorrectedName==String_256("GaramondAmerican"))
00799 {
00800 if (strDescription==String_256("GaramondAmerican"))
00801 {
00802 TRACEALL( _T("Matched %s with %s\n"), (TCHAR*)strCorrectedName, (TCHAR*)strDescription);
00803 return pATMItem;
00804 }
00805 }
00806
00807
00808 else if (camStrstr(strCorrectedName, "BoldItal") != 0)
00809 {
00810 if (camStrstr(strDescription, "BoldItal") != 0)
00811 {
00812 TRACEALL( _T("Matched %s with %s\n"), (TCHAR*)strCorrectedName, (TCHAR*)strDescription);
00813 return pATMItem;
00814 }
00815 }
00816
00817
00818 else if (camStrstr(strCorrectedName, "HeavyItal") != 0)
00819 {
00820 if (camStrstr(strDescription, "HeavyItal") != 0)
00821 {
00822 TRACEALL( _T("Matched %s with %s\n"), (TCHAR*)strCorrectedName, (TCHAR*)strDescription);
00823 return pATMItem;
00824 }
00825 }
00826
00827
00828 else if (camStrstr(strCorrectedName, "Heavy") != 0)
00829 {
00830 if (camStrstr(strDescription, "Heavy") != 0)
00831 {
00832 TRACEALL( _T("Matched %s with %s\n"), (TCHAR*)strCorrectedName, (TCHAR*)strDescription);
00833 return pATMItem;
00834 }
00835 }
00836
00837
00838 else if (camStrstr(strCorrectedName, "Bold") != 0)
00839 {
00840 if (camStrstr(strDescription, "Bold") != 0)
00841 {
00842 TRACEALL( _T("Matched %s with %s\n"), (TCHAR*)strCorrectedName, (TCHAR*)strDescription);
00843 return pATMItem;
00844 }
00845 }
00846
00847
00848 else if (camStrstr(strCorrectedName, "Ital") != 0)
00849 {
00850 if (camStrstr(strDescription, "Ital") != 0)
00851 {
00852 TRACEALL( _T("Matched %s with %s\n"), (TCHAR*)strCorrectedName, (TCHAR*)strDescription);
00853 return pATMItem;
00854 }
00855 }
00856
00857
00858 else if (camStrstr(strCorrectedName, "Engraved") != 0)
00859 {
00860 if (camStrstr(strDescription, "Engraved") != 0)
00861 {
00862 TRACEALL( _T("Matched %s with %s\n"), (TCHAR*)strCorrectedName, (TCHAR*)strDescription);
00863 return pATMItem;
00864 }
00865 }
00866
00867
00868 else
00869 {
00870 TRACEALL( _T("Matched %s with %s\n"), (TCHAR*)strCorrectedName, (TCHAR*)strDescription);
00871 return pATMItem;
00872 }
00873 }
00874 }
00875 }
00876
00877
00878 pThisItem = pTree->FindNextSelectedItem(pThisItem);
00879
00880 }
00881
00882
00883 return NULL;
00884 }
00885
00886
00887
00888
00889
00890
00891
00892
00893
00894
00895
00896
00897
00898 OpCreateFontThumbnails::OpCreateFontThumbnails()
00899 {
00900
00901 }
00902
00903 OpConvertFileFormats::OpConvertFileFormats()
00904 {
00905
00906 }
00907
00908
00909
00910
00911
00912
00913
00914
00915
00916
00917
00918
00919
00920 OpState OpCreateFontThumbnails::GetState(String_256*, OpDescriptor*)
00921 {
00922 OpState OpSt;
00923
00924 OpSt.Greyed=FALSE;
00925
00926 return OpSt;
00927 }
00928
00929 OpState OpConvertFileFormats::GetState(String_256*, OpDescriptor*)
00930 {
00931 OpState OpSt;
00932
00933 OpSt.Greyed=FALSE;
00934
00935 return OpSt;
00936 }
00937
00938 #endif //DEBUG