├── .gitignore ├── Demos ├── Compiled Framedemo │ ├── ARROWS.GIF │ ├── CONTENTS.BMP │ ├── CRHRN1.WAV │ ├── FrameBrowserDemoIcs.exe │ ├── FrameBrowserDemoId10.exe │ ├── FrameDem.exe │ ├── FrameDem64.exe │ ├── GLASS.BMP │ ├── Note.gif │ ├── Order1.gif │ ├── TABLE.BMP │ ├── TabBot.gif │ ├── TabTop.gif │ ├── TryIt.htm │ ├── WMELON.BMP │ ├── WindMill.JPG │ ├── agif2.gif │ ├── arizona.jpg │ ├── blkgreen.htm │ ├── colors.htm │ ├── demo.css │ ├── demo.htm │ ├── gudcolor.htm │ ├── import1.gif │ ├── leftwin.htm │ ├── mail5a.gif │ ├── minus.gif │ ├── music.mid │ ├── pengbrew.png │ ├── plus.gif │ ├── properties.htm │ ├── pyramids.jpg │ ├── readme1.htm │ ├── readme2.htm │ ├── readme3.htm │ ├── sample1.htm │ ├── sample2.htm │ ├── sample3.htm │ ├── smallcheck.gif │ ├── space.htm │ ├── support.htm │ ├── tabltut1.htm │ ├── tabltut2.htm │ ├── tabltut3.htm │ ├── things.htm │ ├── ugly.gif │ └── whatsnew.htm ├── Main Demos │ ├── AuthorizeFormUnit.dfm │ ├── AuthorizeFormUnit.lfm │ ├── AuthorizeFormUnit.pas │ ├── CacheUnit.pas │ ├── DownloadFormUnit.dfm │ ├── DownloadFormUnit.lfm │ ├── DownloadFormUnit.pas │ ├── FBrDemUnit.dfm │ ├── FBrDemUnit.lfm │ ├── FBrDemUnit.pas │ ├── FDemUnit.dfm │ ├── FDemUnit.lfm │ ├── FDemUnit.pas │ ├── Fontdlg.DFM │ ├── Fontdlg.lfm │ ├── Fontdlg.pas │ ├── FrameBrowserDemoIcs.dpr │ ├── FrameBrowserDemoId10.dpr │ ├── FrameBrowserDemoId10.lpi │ ├── FrameDem.dpr │ ├── FrameDem.dproj │ ├── FrameDem.ico │ ├── FrameDem.manifest │ ├── FrameDem.rc │ ├── FrameDem.res │ ├── FrameDemLaz.lpi │ ├── FrameDemLaz.lpr │ ├── FrameDemLaz.res │ ├── FrameDemW.dpr │ ├── FrameDemW.res │ ├── GRID.RES │ ├── Gopage.dfm │ ├── Gopage.lfm │ ├── Gopage.pas │ ├── HtmlDemo.dpr │ ├── HtmlDemo.dproj │ ├── HtmlDemo.res │ ├── HtmlDemoLaz.lpi │ ├── HtmlDemoLaz.lpr │ ├── HtmlDemoLaz.res │ ├── HtmlDemoUtils.pas │ ├── HtmlDemoW.dpr │ ├── HtmlDemoW.res │ ├── Htmlabt.dfm │ ├── Htmlabt.lfm │ ├── Htmlabt.pas │ ├── ImgForm.dfm │ ├── ImgForm.lfm │ ├── ImgForm.pas │ ├── InfoFormUnit.dfm │ ├── InfoFormUnit.lfm │ ├── InfoFormUnit.pas │ ├── LogFormUnit.dfm │ ├── LogFormUnit.lfm │ ├── LogFormUnit.pas │ ├── OptionsId10.inc │ ├── PreviewForm.dfm │ ├── PreviewForm.lfm │ ├── PreviewForm.pas │ ├── PrintStatusForm.dfm │ ├── PrintStatusForm.lfm │ ├── PrintStatusForm.pas │ ├── ProxyFormUnit.dfm │ ├── ProxyFormUnit.lfm │ ├── ProxyFormUnit.pas │ ├── Resources │ │ ├── Ics7 │ │ │ ├── PAGE1.HTM │ │ │ ├── PAGE3.HTM │ │ │ ├── Page0.htm │ │ │ ├── STYLE.CSS │ │ │ ├── XLeft1.htm │ │ │ ├── fbHelpIcs7.rc │ │ │ └── ics_logo.png │ │ ├── Indy10 │ │ │ ├── BuiltWIndy.gif │ │ │ ├── PAGE1.HTM │ │ │ ├── PAGE3.HTM │ │ │ ├── Page0.htm │ │ │ ├── STYLE.CSS │ │ │ ├── XLeft1.htm │ │ │ └── fbHelpIndy10.rc │ │ ├── PAGE4.HTM │ │ ├── PAGE5.HTM │ │ ├── PAGE7.HTM │ │ ├── TabBot.gif │ │ ├── TabTop.gif │ │ └── starcross.avi │ ├── SUBMIT.DFM │ ├── SUBMIT.PAS │ ├── SUBMIT.lfm │ ├── SubmitTNT.PAS │ ├── SubmitTNT.dfm │ ├── UrlConIcs.pas │ ├── UrlConId10.pas │ ├── UrlConVclZip.pas │ ├── demounit.dfm │ ├── demounit.lfm │ ├── demounit.pas │ ├── fbHelpIcs7.res │ ├── fbHelpIndy10.res │ └── manifest.res └── Other Demos │ ├── AVI │ ├── AVIDemo.dpr │ ├── AVIDemo.res │ ├── AVIUnit.dfm │ ├── AVIUnit.lfm │ ├── AVIUnit.pas │ └── AviPanel.htm │ ├── BmpMFile │ ├── BmpDemo.dpr │ ├── BmpDemo.res │ ├── BmpDemoUnit.dfm │ ├── BmpDemoUnit.lfm │ ├── BmpDemoUnit.pas │ ├── MetaDemo.dpr │ ├── MetaDemo.res │ ├── MetaDemoUnit.dfm │ └── MetaDemoUnit.pas │ ├── Edit │ ├── HTMLEd1.dfm │ ├── HTMLEd1.lfm │ ├── HTMLEd1.pas │ ├── HTMLEditor.dpr │ └── HTMLEditor.res │ ├── Flash │ ├── FlashDemo.dpr │ ├── FlashDemo.res │ ├── FlashUnit.dfm │ ├── FlashUnit.lfm │ ├── FlashUnit.pas │ ├── Wait.htm │ ├── Wait.swf │ ├── pbear.htm │ └── pbear.swf │ ├── FrameBrowserUsingIndy9 │ ├── AuthUnit.dfm │ ├── AuthUnit.pas │ ├── CachUnitId.pas │ ├── DownLoadId.dfm │ ├── DownLoadId.pas │ ├── FBUnitId9.dfm │ ├── FBUnitId9.pas │ ├── FrameBrowserId9.dpr │ ├── FrameBrowserId9.res │ ├── GRID.RES │ ├── Gopage.dfm │ ├── Gopage.pas │ ├── HTMLAbt.dfm │ ├── HTMLAbt.pas │ ├── HttpAsyncId9.pas │ ├── PreviewForm.dfm │ ├── PreviewForm.pas │ ├── PrintStatusForm.dfm │ ├── PrintStatusForm.pas │ ├── ProxyDlg.dfm │ ├── ProxyDlg.pas │ ├── Resources │ │ ├── BuiltWIndy.gif │ │ ├── PAGE1.HTM │ │ ├── PAGE3.HTM │ │ ├── PAGE4.HTM │ │ ├── PAGE5.HTM │ │ ├── PAGE7.HTM │ │ ├── Page0.htm │ │ ├── STYLE.CSS │ │ ├── TabBot.gif │ │ ├── TabTop.gif │ │ ├── XLeft1.htm │ │ ├── fbHelp.rc │ │ └── starcross.avi │ ├── UrlConId9.pas │ ├── fbHelp32.res │ └── manifest.res │ ├── HeaderFooter │ ├── Ace.htm │ ├── Ace2.gif │ ├── GRID.RES │ ├── Gopage.dfm │ ├── Gopage.pas │ ├── HFUnit.dfm │ ├── HFUnit.lfm │ ├── HFUnit.pas │ ├── HeaderFooterDemo.dpr │ ├── HeaderFooterDemo.res │ ├── PreviewForm.dfm │ ├── PreviewForm.pas │ ├── PrintStatusForm.dfm │ └── PrintStatusForm.pas │ ├── JavaScriptUsingBesen │ ├── FrameDemJavaScriptUsingBesen.dpr │ ├── FrameDemJavaScriptUsingBesenW.dpr │ ├── HtmlBesen.pas │ ├── JSDemUnit.dfm │ ├── JSDemUnit.lfm │ ├── JSDemUnit.pas │ └── demo.htm │ ├── LiveHtml │ ├── LiveHtml.dpr │ ├── LiveHtml.res │ ├── LiveHtmlForm.dfm │ ├── LiveHtmlForm.pas │ ├── LiveHtmlW.dpr │ └── LiveHtmlW.res │ ├── OnStreamRequest │ ├── Project1.dpr │ ├── Project1.res │ ├── unit1.dfm │ └── unit1.pas │ └── Panel │ ├── Panel.htm │ ├── PanelDemo.dpr │ ├── PanelDemo.res │ ├── PanelUnit.dfm │ ├── PanelUnit.lfm │ └── PanelUnit.pas ├── HtmlHelp ├── HTMLVIEW.hhk ├── THtmlViewer.chm ├── THtmlViewer.hhp ├── html │ ├── _body__attributes.htm │ ├── activeviewer_property.htm │ ├── assign_tbuffer_method.htm │ ├── assignto_tbuffer_method.htm │ ├── asstring_tbuffer_method.htm │ ├── backbuttonenabled_property.htm │ ├── base_property.htm │ ├── basetarget_property.htm │ ├── borderstyle_property.htm │ ├── caretpos_property.htm │ ├── charset_property.htm │ ├── class_hierarchy.htm │ ├── clear_method.htm │ ├── clearhistory_method.htm │ ├── codepage_tbuffer_property.htm │ ├── contents.htm │ ├── convert_tbuffer_method.htm │ ├── copyright.htm │ ├── copytoclipboard_method.htm │ ├── currentfile_property.htm │ ├── defbackground_property.htm │ ├── deffontcolor_property.htm │ ├── deffontname_property.htm │ ├── deffontsize_property.htm │ ├── defhotspotcolor_property.htm │ ├── defoverlinkcolor_property.htm │ ├── defprefontname_property.htm │ ├── defvisitedlinkcolor_property.htm │ ├── displaypostoxy_method.htm │ ├── dither_property.htm │ ├── documentcodepage_property.htm │ ├── dostohtml_function.htm │ ├── event_thtmlvieweronhotspotclick.htm │ ├── event_thtmlvieweronhotspotcovered.htm │ ├── find_method.htm │ ├── finddisplaypos_method.htm │ ├── findsourcepos_method.htm │ ├── formcontrollist_property.htm │ ├── formdata_property.htm │ ├── fulldisplaysize_method.htm │ ├── fvoptions_property.htm │ ├── fwdbuttonenabled_property.htm │ ├── getcharatpos_method.htm │ ├── getpostquery_method.htm │ ├── getseltextbuf_method.htm │ ├── getstring_tbuffer_method.htm │ ├── getviewerurlbase_method.htm │ ├── goback_method.htm │ ├── gofwd_method.htm │ ├── help.css │ ├── history_property.htm │ ├── historyindex_property.htm │ ├── historymaxcount_property.htm │ ├── hscrollbarposition_property.htm │ ├── hscrollbarrange_property.htm │ ├── htmlexpandfilename_method.htm │ ├── htmltodos.htm │ ├── htoptions_property.htm │ ├── idcontrol_property.htm │ ├── iddisplay_property.htm │ ├── imagecachecount_property.htm │ ├── insertimage_method.htm │ ├── linkattributes_property.htm │ ├── linktext_property.htm │ ├── load_method.htm │ ├── loadfrombuffer_method.htm │ ├── loadfromdocument_method.htm │ ├── loadfromfile_method.htm │ ├── loadfromstream_method.htm │ ├── loadfromstring_method.htm │ ├── loadimagefile_method.htm │ ├── loadstrings_method.htm │ ├── loadtargetfromfile_method.htm │ ├── loadtextfile_method.htm │ ├── loadtextstrings_method.htm │ ├── loadurl_method.htm │ ├── makebitmap_method.htm │ ├── makemetafile_method.htm │ ├── makepagedmetafiles_method.htm │ ├── marginheight_and_marginwidth_properties.htm │ ├── maxvertical_property.htm │ ├── name_tbuffer_property.htm │ ├── namelist_property.htm │ ├── nextchar_tbuffer_method.htm │ ├── noselect_property.htm │ ├── numprinterpages_method.htm │ ├── onblankwindowrequest_event.htm │ ├── onbufferrequest_event.htm │ ├── onfilebrowse_event.htm │ ├── onfilerequest_event.htm │ ├── onformsubmit_event.htm │ ├── ongetpostrequest_event.htm │ ├── onhistorychange_event.htm │ ├── onhotspottargetclick_event.htm │ ├── onhotspottargetcovered_event.htm │ ├── onhtstreamrequest_event.htm │ ├── onimageclick_event.htm │ ├── onimageover_event.htm │ ├── onimagerequest_event.htm │ ├── oninclude_event.htm │ ├── onlink_event.htm │ ├── onmeta_event.htm │ ├── onmetarefresh_event.htm │ ├── onmousedouble_event.htm │ ├── onobjectblur_event.htm │ ├── onobjectchange_event.htm │ ├── onobjectclick_event.htm │ ├── onobjectfocus_event.htm │ ├── onobjecttag_event.htm │ ├── onpanelcreate_event.htm │ ├── onpaneldestroy_event.htm │ ├── onpanelprint_event.htm │ ├── onparsebegin_event.htm │ ├── onparseend_event.htm │ ├── onprintheader_and_onprintfooter_events.htm │ ├── onprinthtmlheader_and_onprinthtmlfooter_events.htm │ ├── onprocessing_event.htm │ ├── onprogress_event.htm │ ├── onrightclick_event.htm │ ├── onscript_event.htm │ ├── onsoundrequest_event.htm │ ├── onstreamrequest_event.htm │ ├── onstringsrequest_event.htm │ ├── onviewerclear_event.htm │ ├── openprint__abortprint__and_closeprint_methods.htm │ ├── palette_property.htm │ ├── parentcolor_property.htm │ ├── parentfont_property.htm │ ├── peekchar_tbuffer_method.htm │ ├── position_tbuffer_property.htm │ ├── positionto_method.htm │ ├── print_method.htm │ ├── printmargin_properties.htm │ ├── printscale_property.htm │ ├── processing_property.htm │ ├── prop_thtmlviewer_quirksmode.htm │ ├── prop_thtmlviewerdocumenttitle.htm │ ├── prop_thtmlviewerposition.htm │ ├── ptinobject_method.htm │ ├── reference.htm │ ├── reformat_method.htm │ ├── reformatting.htm │ ├── reload_method.htm │ ├── replaceimage_method.htm │ ├── selectall_method.htm │ ├── sellength_property.htm │ ├── selstart_property.htm │ ├── seltext_property.htm │ ├── serverroot_property.htm │ ├── setting_up_a_history_list.htm │ ├── size_tbuffer_method.htm │ ├── special_html_tags_and_attributes.htm │ ├── supported_elements.htm │ ├── supported_properties.htm │ ├── target_property.htm │ ├── text_property.htm │ ├── tframebrowser_component.htm │ ├── tframebrowser_events.htm │ ├── tframebrowser_methods.htm │ ├── tframebrowser_properties.htm │ ├── tframeviewer_component.htm │ ├── tframeviewer_events.htm │ ├── tframeviewer_methods.htm │ ├── tframeviewer_properties.htm │ ├── tfreelist.htm │ ├── things_you_should_know.htm │ ├── thtmlviewer_component.htm │ ├── thtmlviewer_events.htm │ ├── thtmlviewer_methods.htm │ ├── thtmlviewer_properties.htm │ ├── titleattr_property.htm │ ├── titlehistory_property.htm │ ├── type_tbuffcodepage.htm │ ├── type_tbuffer.htm │ ├── type_tbufferrequestevent.htm │ ├── type_tfilebrowseevent.htm │ ├── type_tfilerequestevent.htm │ ├── type_tformsubmitevent.htm │ ├── type_tgetimageevent.htm │ ├── type_tgetpostrequestevent.htm │ ├── type_tgetpostrequestexevent.htm │ ├── type_tgetstreamevent.htm │ ├── type_thotspotclickevent.htm │ ├── type_thotspotevent.htm │ ├── type_thotspottargetclickevent.htm │ ├── type_thotspottargetevent_.htm │ ├── type_thtchar.htm │ ├── type_thtmlfiletype.htm │ ├── type_thtmlpageprinted.htm │ ├── type_thtobjectevent.htm │ ├── type_thtprogressevent.htm │ ├── type_thtquirksmode.htm │ ├── type_thtstring.htm │ ├── type_thtstrings.htm │ ├── type_timageclickevent.htm │ ├── type_timageoverevent.htm │ ├── type_tincludetype.htm │ ├── type_tlinktype.htm │ ├── type_tmetarefreshtype.htm │ ├── type_tmetatype.htm │ ├── type_tobjectclickevent.htm │ ├── type_tobjecttagevent.htm │ ├── type_tpageprinted.htm │ ├── type_tpanelcreateevent.htm │ ├── type_tpaneldestroyevent.htm │ ├── type_tpanelprintevent.htm │ ├── type_tprocessingevent.htm │ ├── type_trightclickevent.htm │ ├── type_tscriptevent.htm │ ├── type_tsoundtype.htm │ ├── type_tstreamrequestevent.htm │ ├── type_tstringsrequestevent.htm │ ├── type_twindowrequestevent.htm │ ├── url.htm │ ├── url_property.htm │ ├── using_the_tframebrowser_component.htm │ ├── using_the_tframeviewer_component.htm │ ├── using_the_thtmlviewer_component.htm │ ├── viewerfromtarget_method.htm │ ├── viewers_property.htm │ ├── viewimages_property.htm │ ├── visitedmaxcount_property.htm │ ├── vscrollbar__hscrollbar_properties.htm │ ├── vscrollbarposition_property.htm │ ├── vscrollbarrange_property.htm │ ├── waitstream.htm │ └── xytodisplaypos_method.htm ├── htmlview.hhc └── images │ ├── bm0.gif │ ├── bm1.gif │ ├── bm2.gif │ ├── bm3.gif │ ├── bm4.gif │ ├── bm5.gif │ ├── bm6.gif │ ├── bm7.gif │ ├── bm8.gif │ ├── bm9.gif │ ├── smallcheck.gif │ ├── v1110.png │ ├── v114.png │ ├── v115.png │ ├── v116.png │ ├── v117.png │ ├── v118.png │ ├── v119.png │ └── v945.png ├── License.txt ├── Rad Studio 10.1 ├── FrameViewer.dpk └── dclFrameViewer.dpk ├── Rad Studio 10.2 ├── FrameViewer.dpk └── dclFrameViewer.dpk ├── Rad Studio 10.3 ├── FrameViewer.dpk └── dclFrameViewer.dpk ├── Rad Studio 10.4 ├── FrameViewer.dpk └── dclFrameViewer.dpk ├── Rad Studio 10 ├── FrameViewer.dpk └── dclFrameViewer.dpk ├── Rad Studio 11 ├── FrameViewer.dpk └── dclFrameViewer.dpk ├── Rad Studio 12 ├── FrameViewer.dpk └── dclFrameViewer.dpk ├── ReadMe.txt ├── package ├── FRAMVIEW.DCR ├── Frambrwz.dcr ├── FrameViewer09.lpk ├── FrameViewer09.pas ├── FrameViewer2005.dpk ├── FrameViewer2005.res ├── FrameViewer2006.dpk ├── FrameViewer2006.res ├── FrameViewer2007.dpk ├── FrameViewer2007.res ├── FrameViewer2009.dpk ├── FrameViewer2009.res ├── FrameViewer2010.dpk ├── FrameViewer2010.res ├── FrameViewer6.dpk ├── FrameViewer6.res ├── FrameViewer7.dpk ├── FrameViewer7.res ├── FrameViewerXE.dpk ├── FrameViewerXE.res ├── FrameViewerXE2.dpk ├── FrameViewerXE2.res ├── FrameViewerXE3.dpk ├── FrameViewerXE3.res ├── FrameViewerXE4.dpk ├── FrameViewerXE4.res ├── FrameViewerXE5.dpk ├── FrameViewerXE5.res ├── FrameViewerXE6.dpk ├── FrameViewerXE6.res ├── FrameViewerXE7.dpk ├── FrameViewerXE7.res ├── FrameViewerXE7All.groupproj ├── FrameViewerXE8.dpk ├── FrameViewerXE8.res ├── FrameViewerXE8All.groupproj ├── FrameViewerXE9.dpk ├── FrameViewerXE9.dproj ├── FrameViewerXE9.res ├── FrameViewerXE9All.groupproj ├── HTMLVIEW.DCR ├── dclFrameViewerXE.dpk ├── dclFrameViewerXE2.dpk ├── dclFrameViewerXE3.dpk ├── dclFrameViewerXE3.res ├── dclFrameViewerXE4.dpk ├── dclFrameViewerXE4.res ├── dclFrameViewerXE5.dpk ├── dclFrameViewerXE5.res ├── dclFrameViewerXE6.dpk ├── dclFrameViewerXE6.res ├── dclFrameViewerXE7.dpk ├── dclFrameViewerXE7.res ├── dclFrameViewerXE8.dpk ├── dclFrameViewerXE8.res ├── dclFrameViewerXE9.dpk ├── dclFrameViewerXE9.dproj └── dclFrameViewerXE9.res ├── resources └── getit │ ├── GetIt-Logo.html │ ├── GetIt-Logo.png │ ├── HtmlViewer GetIt Submission Information.rtf │ ├── Logo.jpg │ ├── TabBot.gif │ ├── TabTop.gif │ └── WaterMark.png └── source ├── AlphaBlendUn.pas ├── BegaHtmlPrintPreviewForm.pas ├── BegaMetaFilePrinter.pas ├── BegaPreview.dfm ├── BegaPreview.lfm ├── BegaPreview.pas ├── BegaPreviewForm.dfm ├── BegaPreviewForm.lfm ├── BegaPreviewForm.pas ├── BegaPreviewPanel.pas ├── BegaScrollBox.pas ├── BegaZoom.pas ├── BuffConv.pas ├── BuffConvArrays.pas ├── DitherUnit.pas ├── FramBrwz.pas ├── FrameViewerReg.pas ├── GDIPL2A.pas ├── HSLUtils.pas ├── HTMLCompEdit.pas ├── HTMLGif2.pas ├── HTMLSubs.pas ├── HTMLUn2.pas ├── Html32.res ├── HtmlBuffer.pas ├── HtmlCaches.pas ├── HtmlFonts.pas ├── HtmlGlobals.pas ├── HtmlImages.pas ├── HtmlPrinter.pas ├── HtmlSymb.pas ├── Htmlsbs1.pas ├── MetaFilePrinter.pas ├── Obj ├── DelphiZLib.obj ├── adler32.obj ├── compress.obj ├── crc32.obj ├── deflate.obj ├── infback.obj ├── inffast.obj ├── inflate.obj ├── inftrees.obj └── trees.obj ├── ReadHTML.pas ├── StylePars.pas ├── StyleTypes.pas ├── StyleUn.pas ├── URLSubs.pas ├── UrlConn.pas ├── ZoomAndHandCursor.RES ├── framview.pas ├── htmlcomp.lrs ├── htmlcons.inc ├── htmlgif1.pas ├── htmlmisc.pas ├── htmlun2.lrs ├── htmlview.pas ├── msimg32.pas ├── unicodestringslcl.pas ├── vwPrint.pas └── widestringslcl.pas /.gitignore: -------------------------------------------------------------------------------- 1 | **.dcu 2 | **.bmp 3 | **.d 4 | **.ddp 5 | **.drc 6 | **.gex 7 | **.ico 8 | **.ICO 9 | **.identcache 10 | **.log 11 | **.map 12 | **.o 13 | **.ncb 14 | **.sln 15 | **.suo 16 | **.dproj* 17 | **.vcproj* 18 | **.cbproj* 19 | **.exe 20 | **CVS 21 | **__history 22 | **backup 23 | **.*ignore 24 | **.svn 25 | *.*~* 26 | **.bak 27 | **.cfg 28 | **.dof 29 | **.mes 30 | **.dsk 31 | **.lpi 32 | **.*groupproj* 33 | **.tvsconfig 34 | **.local 35 | **.stat 36 | **.gid 37 | **.lpi 38 | **.res 39 | **.otares 40 | **.aqt 41 | *bin 42 | sonar-* 43 | config.default 44 | Thumbs.db 45 | Demos/Main Demos/bin 46 | Demos/Main Demos/lib 47 | Demos/Other Demos/*/bin 48 | Demos/Other Demos/*/lib 49 | Demos/Other Demos/*/cache 50 | package/lib 51 | package/XE2BCB 52 | *eay*.dll 53 | /Demos/Compiled Framedemo/Cache 54 | **.hpp 55 | -------------------------------------------------------------------------------- /Demos/Compiled Framedemo/ARROWS.GIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerndGabriel/HtmlViewer/bd2ffb86d0f127e1da5bb2988180d8900ce836c7/Demos/Compiled Framedemo/ARROWS.GIF -------------------------------------------------------------------------------- /Demos/Compiled Framedemo/CONTENTS.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerndGabriel/HtmlViewer/bd2ffb86d0f127e1da5bb2988180d8900ce836c7/Demos/Compiled Framedemo/CONTENTS.BMP -------------------------------------------------------------------------------- /Demos/Compiled Framedemo/CRHRN1.WAV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerndGabriel/HtmlViewer/bd2ffb86d0f127e1da5bb2988180d8900ce836c7/Demos/Compiled Framedemo/CRHRN1.WAV -------------------------------------------------------------------------------- /Demos/Compiled Framedemo/FrameBrowserDemoIcs.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerndGabriel/HtmlViewer/bd2ffb86d0f127e1da5bb2988180d8900ce836c7/Demos/Compiled Framedemo/FrameBrowserDemoIcs.exe -------------------------------------------------------------------------------- /Demos/Compiled Framedemo/FrameBrowserDemoId10.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerndGabriel/HtmlViewer/bd2ffb86d0f127e1da5bb2988180d8900ce836c7/Demos/Compiled Framedemo/FrameBrowserDemoId10.exe -------------------------------------------------------------------------------- /Demos/Compiled Framedemo/FrameDem.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerndGabriel/HtmlViewer/bd2ffb86d0f127e1da5bb2988180d8900ce836c7/Demos/Compiled Framedemo/FrameDem.exe -------------------------------------------------------------------------------- /Demos/Compiled Framedemo/FrameDem64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerndGabriel/HtmlViewer/bd2ffb86d0f127e1da5bb2988180d8900ce836c7/Demos/Compiled Framedemo/FrameDem64.exe -------------------------------------------------------------------------------- /Demos/Compiled Framedemo/GLASS.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerndGabriel/HtmlViewer/bd2ffb86d0f127e1da5bb2988180d8900ce836c7/Demos/Compiled Framedemo/GLASS.BMP -------------------------------------------------------------------------------- /Demos/Compiled Framedemo/Note.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerndGabriel/HtmlViewer/bd2ffb86d0f127e1da5bb2988180d8900ce836c7/Demos/Compiled Framedemo/Note.gif -------------------------------------------------------------------------------- /Demos/Compiled Framedemo/Order1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerndGabriel/HtmlViewer/bd2ffb86d0f127e1da5bb2988180d8900ce836c7/Demos/Compiled Framedemo/Order1.gif -------------------------------------------------------------------------------- /Demos/Compiled Framedemo/TABLE.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerndGabriel/HtmlViewer/bd2ffb86d0f127e1da5bb2988180d8900ce836c7/Demos/Compiled Framedemo/TABLE.BMP -------------------------------------------------------------------------------- /Demos/Compiled Framedemo/TabBot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerndGabriel/HtmlViewer/bd2ffb86d0f127e1da5bb2988180d8900ce836c7/Demos/Compiled Framedemo/TabBot.gif -------------------------------------------------------------------------------- /Demos/Compiled Framedemo/TabTop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerndGabriel/HtmlViewer/bd2ffb86d0f127e1da5bb2988180d8900ce836c7/Demos/Compiled Framedemo/TabTop.gif -------------------------------------------------------------------------------- /Demos/Compiled Framedemo/TryIt.htm: -------------------------------------------------------------------------------- 1 | 2 |
3 |13 | A black background seems to lend an air of mystery... 14 |
![]() |
19 | 20 | Contents 21 | 22 | 23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
33 | 32 | |
![]() |
HTML Components, Version 11.10
15 |Copyright © 1995-2008 by L. David Baldwin, 2008-2023 by the HtmlViewer Team See below
16 |
19 | What are the HTML Viewer Components? 20 | Files Supplied 21 | Installing the HTML Components 22 | Installing the Help File 23 | |
24 |
25 | UnInstalling the Components 26 | Contacts and Addresses 27 | Acknowledgements 28 | In case of trouble don't mailto this address 29 | |
30 |
![]() |
14 |
15 | 16 | Contents 17 | 18 | 19 | Overview 20 | Compiling the Demo 21 | Using The TFrameBrowser Component 22 | Customizing 23 | Acknowledgements 24 | 25 | 26 | |
![]() |
27 |
28 |
29 | 30 | |
![]() |
14 |
15 | 16 | Contents 17 | 18 | 19 | Overview 20 | Compiling the Demo 21 | Using The TFrameBrowser Component 22 | Customizing 23 | Acknowledgements 24 | 25 | 26 | |
![]() |
27 |
28 |
29 | 30 | |
Version '+Version+
44 | '
19 |
20 | Contents
21 |
22 |
26 | Overview
27 |
28 | Compiling the Demo
29 |
30 | Using The TFrameBrowser Component
31 |
32 | Customizing
33 |
34 | Acknowledge-ments
35 |
36 |
37 | #title
15 | #file
16 |
17 |
18 |
19 |
--------------------------------------------------------------------------------
/Demos/Other Demos/HeaderFooter/Ace2.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BerndGabriel/HtmlViewer/bd2ffb86d0f127e1da5bb2988180d8900ce836c7/Demos/Other Demos/HeaderFooter/Ace2.gif
--------------------------------------------------------------------------------
/Demos/Other Demos/HeaderFooter/GRID.RES:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BerndGabriel/HtmlViewer/bd2ffb86d0f127e1da5bb2988180d8900ce836c7/Demos/Other Demos/HeaderFooter/GRID.RES
--------------------------------------------------------------------------------
/Demos/Other Demos/HeaderFooter/Gopage.dfm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BerndGabriel/HtmlViewer/bd2ffb86d0f127e1da5bb2988180d8900ce836c7/Demos/Other Demos/HeaderFooter/Gopage.dfm
--------------------------------------------------------------------------------
/Demos/Other Demos/HeaderFooter/Gopage.pas:
--------------------------------------------------------------------------------
1 | unit Gopage;
2 |
3 | interface
4 |
5 | uses WinTypes, WinProcs, Classes, Graphics, Forms, Controls, Buttons,
6 | StdCtrls, ExtCtrls, Spin;
7 |
8 | type
9 | TGoPageForm = class(TForm)
10 | OKBtn: TBitBtn;
11 | CancelBtn: TBitBtn;
12 | Bevel1: TBevel;
13 | PageNum: TSpinEdit;
14 | procedure PageNumEnter(Sender: TObject);
15 | procedure PageNumKeyDown(Sender: TObject; var Key: Word;
16 | Shift: TShiftState);
17 | private
18 | { Private declarations }
19 | public
20 | { Public declarations }
21 | end;
22 |
23 | var
24 | GoPageForm: TGoPageForm;
25 |
26 | implementation
27 |
28 | {$R *.dfm}
29 |
30 | procedure TGoPageForm.PageNumEnter(Sender: TObject);
31 | begin
32 | PageNum.SelectAll;
33 | end;
34 |
35 | procedure TGoPageForm.PageNumKeyDown(Sender: TObject; var Key: Word;
36 | Shift: TShiftState);
37 | begin
38 | if Key = 13 then
39 | Begin
40 | Key := 0;
41 | OKBtn.Click;
42 | end;
43 | end;
44 |
45 | end.
46 |
--------------------------------------------------------------------------------
/Demos/Other Demos/HeaderFooter/HFUnit.dfm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BerndGabriel/HtmlViewer/bd2ffb86d0f127e1da5bb2988180d8900ce836c7/Demos/Other Demos/HeaderFooter/HFUnit.dfm
--------------------------------------------------------------------------------
/Demos/Other Demos/HeaderFooter/HeaderFooterDemo.dpr:
--------------------------------------------------------------------------------
1 | program HeaderFooterDemo;
2 |
3 | {$IFDEF FPC}
4 | {$MODE Delphi}
5 | {$ENDIF}
6 |
7 | {A program to demonstrate the ThtmlViewer component}
8 |
9 | uses
10 | {$IFNDEF FPC}
11 | {$ELSE}
12 | Interfaces,
13 | {$ENDIF}
14 | Forms,
15 | HFUnit in 'HFUnit.pas' {Form1};
16 |
17 | {$R *.res}
18 |
19 | begin
20 | Application.Initialize;
21 | Application.CreateForm(TForm1, Form1);
22 | Application.Run;
23 | end.
24 |
--------------------------------------------------------------------------------
/Demos/Other Demos/HeaderFooter/HeaderFooterDemo.res:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BerndGabriel/HtmlViewer/bd2ffb86d0f127e1da5bb2988180d8900ce836c7/Demos/Other Demos/HeaderFooter/HeaderFooterDemo.res
--------------------------------------------------------------------------------
/Demos/Other Demos/HeaderFooter/PreviewForm.dfm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BerndGabriel/HtmlViewer/bd2ffb86d0f127e1da5bb2988180d8900ce836c7/Demos/Other Demos/HeaderFooter/PreviewForm.dfm
--------------------------------------------------------------------------------
/Demos/Other Demos/HeaderFooter/PrintStatusForm.dfm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BerndGabriel/HtmlViewer/bd2ffb86d0f127e1da5bb2988180d8900ce836c7/Demos/Other Demos/HeaderFooter/PrintStatusForm.dfm
--------------------------------------------------------------------------------
/Demos/Other Demos/JavaScriptUsingBesen/demo.htm:
--------------------------------------------------------------------------------
1 |
2 | Hello World
9 |
17 | Panels are essentially equivalent to a TPanel. Hence a panel
18 | may serve as a base for additional VCL controls. In this case, a button has
19 | been added to each panel.
20 |
21 |
22 |
--------------------------------------------------------------------------------
/Demos/Other Demos/Panel/PanelDemo.dpr:
--------------------------------------------------------------------------------
1 | program PanelDemo;
2 |
3 | {$IFDEF FPC}
4 | {$MODE Delphi}
5 | {$ENDIF}
6 |
7 | uses
8 | {$IFNDEF FPC}
9 | {$ELSE}
10 | Interfaces,
11 | {$ENDIF}
12 | Forms,
13 | PanelUnit in 'PanelUnit.pas' {Form1};
14 |
15 | {$R *.res}
16 |
17 | begin
18 | Application.Initialize;
19 | Application.CreateForm(TForm1, Form1);
20 | Application.Run;
21 | end.
22 |
--------------------------------------------------------------------------------
/Demos/Other Demos/Panel/PanelDemo.res:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BerndGabriel/HtmlViewer/bd2ffb86d0f127e1da5bb2988180d8900ce836c7/Demos/Other Demos/Panel/PanelDemo.res
--------------------------------------------------------------------------------
/Demos/Other Demos/Panel/PanelUnit.dfm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BerndGabriel/HtmlViewer/bd2ffb86d0f127e1da5bb2988180d8900ce836c7/Demos/Other Demos/Panel/PanelUnit.dfm
--------------------------------------------------------------------------------
/HtmlHelp/THtmlViewer.chm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BerndGabriel/HtmlViewer/bd2ffb86d0f127e1da5bb2988180d8900ce836c7/HtmlHelp/THtmlViewer.chm
--------------------------------------------------------------------------------
/HtmlHelp/html/activeviewer_property.htm:
--------------------------------------------------------------------------------
1 |
2 |
3 | TFrameViewer and TFrameBrowser components property ActiveViewer: THtmlViewer; Read only and run time only. The ActiveViewer property returns the currently selected or most recently selected THtmlViewer in the Frameset. TBuffer class procedure Assign(Source: TBuffer); virtual; The Assign method copies one buffer to another. TBuffer class procedure AssignTo(Destin: TObject); virtual; The AssignTo method can assign the buffer to a TMemoryStream. TBuffer class function AsString: TBuffString; {$ifdef UseInline} inline; {$endif} The AsString method returns the rest of the buffer converted to unicode. THtmlViewer, TFrameViewer, and TFrameBrowser components property BaseTarget: string; Read only and run time only. The BaseTarget property returns the Target attribute (if any) accompanying the <base> tag. See Also THtmlViewer components property BorderStyle: THTMLBorderStyle; The BorderStyle property works slightly different from that for most Delphi components. BorderStyle may be assigned the following values: htFocusedThe border will appear when the viewer has the focus. htNoneNever any border. htSingleA single line border will always be present. THtmlViewer, TFrameViewer, and TFrameBrowser components property Charset: TFontCharset; The Charset property specifies which character set is to be used. Before changing the character set to anything but DEFAULT_CHARSET, be sure the proper fonts are installed. Character sets which read right to left are currently not supported. THtmlViewer, TFrameViewer, and TFrameBrowser components procedure Clear; The Clear method clears the current document from the view window and deallocates the memory used. THtmlViewer, TFrameViewer, and TFrameBrowser components procedure ClearHistory; The ClearHistory method clears the History List. For additional information on setting up a history list, see Setting up a History List. TBuffer class property CodePage: TBuffCodePage; The property CodePage gets and sets the code page of the byte array in the buffer. THtmlViewer, TFrameViewer components property CurrentFile: String; Read only and run time only. The CurrentFile property returns the full path and filename of the file currently loaded. If no file is loaded or the load was accomplished using the LoadFromBuffer method, CurrentFile will be an empty string. THtmlViewer, TFrameViewer, and TFrameBrowser components property DefHotSpotColor: TColor; DefHotSpotColor sets the viewer's default color for links. This is the color used if the link color is not otherwise specified in the HTML document file. See Also THtmlViewer, TFrameViewer, and TFrameBrowser components Declaration property DefPreFontName String; DefPreFontName sets the viewer's font name for fonts used with the <pre>, <code>, and similar tags. Normally a non-proportional font should be selected. THtmlViewer component property DocumentCodePage: Integer; Read only. The DocumentCodePage property specifies the code page that has been used to read the current document stream or file. URLSubs function DosToHTML(FileName: String): string; The DosToHTML function converts a Dos style filename to one in URL style. If the filename is in URL format to begin with, no change takes place. Note: The file:/// protocol is not added by the DosToHTML function. After the call, S := DosToHTML('c:\Big\Images\Glass.bmp'); S will contain 'c|/Big/Images/Glass.bmp'. THtmlViewer component function FindSourcePos(DisplayPos: integer): integer; Given a character position in the display, FindSourcePos finds the equivalent position in the HTML source document. Note that the display position is that value given by the SelStart property. THtmlViewer, component function GetCharAtPos(Pos: integer; var Ch: WideChar; var Font: TFont): boolean; Given Pos, a position in the display, the character at that position is returned as well as its font. Character position is sequential and starts with 0. The function returns false if Pos is out of range. See also TBuffer class function GetString(FromIndex, UntilIndex: Integer): TBuffString; {$ifdef UseInline} inline; {$endif} The GetString method returns a partial string of the buffer converted to unicode. The partial string starts with the FromIndexth byte and ends before the UntilIndexth byte. TFrameBrowser component function GetViewerURLBase(Viewer: THtmlViewer): string; Given a THtmlViewer currently displayed in TFrameBrowser, this function returns the portion of the URL up to and including the last forward slash. THtmlViewer, TFrameViewer, and TFrameBrowser components property History: TStrings; Read only and run time only. The History property contains a list of the most recently loaded document filenames with the current filename at index 0. For additional information on setting up a history list, see Setting up a History List. THtmlViewer, TFrameViewer, and TFrameBrowser components property HistoryIndex: Integer; Run Time only. The HistoryIndex property shows which history item represents the currently loaded file and file position. Setting HistoryIndex to a new value automatically causes the loading and positioning of the applicable file. For further information on setting up a History list, see Setting up a History List. THtmlViewer, TFrameViewer, and TFrameBrowser components property HistoryMaxCount: Integer; The HistoryMaxCount property determines the number of History items which will be maintained. If HistoryMaxCount is 0, then no history list will be maintained. For further information on setting up a History list, see Setting up a History List. THtmlViewer component property HScrollBarPosition: Integer; The HScrollBarPosition Property gives access to the viewer's horizontal scrollbar. See Also: THtmlViewer component property HScrollBarRange: Integer; The HScrollBarRange Property gives access to the viewer's horizontal scrollbar range value. See Also: HTMLun2 function HTMLToDos(FileName: String): string; The HTMLToDos function converts an HTML style filename to one for Dos. If the filename is in Dos format to begin with, no change takes place. After the call, S := HTMLToDos('file:///c|/Big/Images/Glass.bmp'); S will contain 'c:\Big\Images\Glass.bmp'. THtmlViewer component property IDDisplay[const ID: string]: boolean; The IDDisplay Property provides an easy way to control the display of a block of HTML text. Typical blocks that can be controled include <div>, <p>, <ul>, <form>, <table>, etc. The block tag must contain an ID= attribute to identify it. Setting IDDisplay to False hides the block and setting it to True displays the block. THtmlViewer component property MarginHeight: Integer; property MarginWidth: Integer; These two properties determine the margins around the THtmlViewer display. Values are in pixels. The default vertical margin is 5 and the default horizontal margin is 10. THtmlViewer component property MaxVertical: integer; MaxVertical gives the height in pixels of the document as it is currently formatted. This height may be used to adjust THtmlViewer's height to just fit a small document. Note that MaxVertical will ordinarily change if the document width changes. TBuffer class property Name: TBuffString; The property Name gets and sets the name of the buffer. Usually this would be the URL or filename of the buffer.
27 |
28 |
29 |
30 |
--------------------------------------------------------------------------------
/HtmlHelp/html/namelist_property.htm:
--------------------------------------------------------------------------------
1 |
2 |
3 | THtmlViewer component property NameList: TStringList; Read only and run time only. NameList contains a list of all the anchor names (the Name= attribute of the <A> tag) and ID identifiers (the ID= attributes) contained in the currently displayed document. NameList is used by THtmlViewer. Do not Free this list. THtmlViewer, TFrameViewer, and TFrameBrowser components Declaration property NoSelect: Boolean; Set the NoSelect property to True if you wish to prevent the user from selecting text with the mouse. The default value is False. THtmlViewer, TFrameViewer and TFrameBrowser components property OnHistoryChange: TNotifyEvent; The OnHistoryChange event occurs whenever the history list changes. For further information on history lists, see Setting up a History List. THtmlViewer, TFrameViewer, and TFrameBrowser components property OnImageOver: TImageOverEvent; The OnImageOver event occurs when the mouse is moved over an image. See the TImageOverEvent type for information on the parameters. See also: THtmlViewer, TFrameViewer, and TFrameBrowser components property OnLink: TLinkType; The OnLink event occurs when a <LINK> tag is found while the HTML file is being parsed. See the Type TLinkType description for details on the passed parameters. THtmlViewer, TFrameViewer, and TFrameBrowser components property OnMeta: TMetaType; The OnMeta event occurs when a <METAt> tag is found while the HTML file is being parsed. See the Type TMetaType description for details on the passed parameters. THtmlViewer, TFrameViewer, and TFrameBrowser components property OnMouseDouble: TMouseEvent; The OnMouseDouble event occurs when the mouse left button is double clicked within THtmlViewer or TFrameViewer. THtmlViewer, TFrameViewer, and TFrameBrowser components property OnParseEnd: TNotifyEvent; The OnParseEnd event occurs when parsing is finished. Sender is the THtmlViewer doing the parsing. See Also THtmlViewer, TFrameViewer, and TFrameBrowser components property OnProcessing: TProcessingEvent; The OnProcessing event occurs whenever the viewer either begins or finishes an operation. This event may be used to disable menu items and/or buttons during time consuming operations. See the TProcessingEvent type for information on the parameters. THtmlViewer, TFrameViewer, and TFrameBrowser components Declarations property OnProgress: ThtProgressEvent; The OnProgress event gives information about the progress of parsing and formatting an HTML document when it is loaded. For large documents, this may be a slow operation. See the ThtProgressEvent help topic for information on the parameters. THtmlViewer, TFrameViewer, and TFrameBrowser components property OnScript: TScriptEvent; The OnScript event occurs when a <script> tag is found while the HTML file is being parsed. See the Type TScriptEvent description for details on the passed parameters. THtmlViewer, TFrameViewer, and TFrameBrowser components property OnSoundRequest: TSoundType; The OnSoundRequest event occurs when the <BGSOUND> tag is encountered at load time. See the TSoundType type for information on the parameters. TFrameBrowser component property OnViewerClear: TNotifyEvent; The OnViewerClear event occurs when one of TFrameBrowser's THtmlViewer panes is being cleared or freed. Any pending operations for that THtmlViewer such as images being loaded should be aborted at this time. The Sender parameter for this event is the THtmlViewer being cleared. TBuffer class property Position: Integer; The property Position gets and sets the position in the byte array. The NextChar method will read the next character starting at this Position. THtmlViewer component procedure PositionTo(Dest: String); Dest is a target name defined within the HTML document. PositionTo positions the document display to that location. Viewer.PositionTo('#Contents'); The # sign may be omitted if desired. THtmlViewer, TFrameViewer, and TFrameBrowser components Declarations property PrintScale: Double; The PrintScale Property determines the scale of the printed output. The default value is 1.0 which scales a "screen inch" to one inch on the printer. Larger values allow more print per page and smaller values magnify the printing. Values of 0.75 to 1.25 would be appropriate. See Also THtmlViewer, TFrameViewer, and TFrameBrowser components property QuirksMode: THtQuirksMode; Default is qmStandard. THtmlViewer, TFrameViewer, and TFrameBrowser components property DocumentTitle: String; Read only and run time only. The DocumentTitle property returns the document's title as found between the <title> tags. THtmlViewer component function PtInObject(X, Y: integer; var Obj: TObject): boolean; PtInObject determines if the point, (X,Y), is within a particular displayed object. X and Y are THtmlViewer client coordinates, and Obj is the TObject displayed at that coordinate. Currently, the only objects tested are images (TImageObj). PtInObject may be used to ascertain information about images.
14 | The Reference parameter defines a path for partial filenames found in the document.
15 | Path information is often required if the document is loaded from something other than a file.
16 | Generally, this parameter would be a filename or path name where images or linked documents could be found.
17 | will load the document in String, S, and add the path, 'C:\MyDirectory\', to any partial filenames found in the document. The Reference parameter is optional. THtmlViewer component procedure Reformat; The Reformat method causes the layout of a document to be recalculated. This may be necessary after using IDDisplay to hide or show a block of text. Reformatting occurs mainly when the window width is resized causing line wrap to change. Reformatting can also occur when ViewImages is toggled.
14 |
15 |
16 |
--------------------------------------------------------------------------------
/HtmlHelp/html/reload_method.htm:
--------------------------------------------------------------------------------
1 |
2 |
3 | THtmlViewer, TFrameViewer, and TFrameBrowser components procedure ReLoad; The ReLoad method reloads the previously loaded file or frameset. It take into account the mode in which the file was originally loaded (HTML, text, or image mode). THtmlViewer, TFrameViewer, and TFrameBrowser components procedure SelectAll; The SelectAll method selects all the document text. This might be used to copy all the text to the clipboard. THtmlViewer, TFrameViewer, and TFrameBrowser components property SelText: WideString; Read only and run time only. The SelText property returns the selected text in string form. For TFrameViewer.or TFrameBrowser, this would be the selection in the currently active frame. See Also THtmlViewer, TFrameViewer components property ServerRoot: string; The ServerRoot property establishes an effective root directory on disk. URLs which begin with a slash (or backslash) are considered to be relative to this directory. If no ServerRoot is specified, the root is taken to be the root directory of the current drive. ServerRoot := 'C:\MyDirectory'; The URL: /images/new.gif will be now be translated to: C\MyDirectory\images\new.gif TBuffer class function Size: Integer; {$ifdef UseInline} inline; {$endif} The Size method returns the total number of bytes in the buffer. THtmlViewer, TFrameViewer, and TFrameBrowser components property Target: String; Read only and run time only. The Target property returns the Target attribute (if any) accompanying the most recently selected (left mouse click) URL. The Target attribute specifies the destination window or frame for the URL. See Also THtmlViewer component property Text: ThtString; The Text property is the document's source text. When Freeing or Clearing a TFreeList, all contained TObjects are also Freed. TFreeList is defined in htmlun2.pas. HTMLView.Pas The THtmlViewer component displays single HTML documents. Documents may be loaded from disk files, memory buffers, StringLists, or streams. THtmlViewer, TFrameViewer, and TFrameBrowser components Declaration property TitleHistory: TStrings; Read only and run time only. The TitleHistory property contains a list of the most recently loaded document titles with the current title at index 0. For additional information on setting up a history list, see Setting up a History List. HtmlBuffer.Pas TBuffCodePage = LongInt; Type TBuffCodePage is used for code page numbers. TFileBrowseEvent = procedure(Sender, Obj: TObject; var S: string) of Object; The TMetaType type points to a method that might process the contents of a <META> HTML tag. Sender is the THtmlViewer which encounters the <META> tag. The other three parameters are the values of <META> tag attributes with the same name. See also: TGetStreamEvent = procedure(Sender: TObject; const SRC: string; var Stream: TMemoryStream) of Object; The TGetStreamEvent type is the type for the OnhtStreamRequest event. This event allows a handler to respond with an HTML document in stream form when a request is made for a new document. The parameters are: SRCA string identifying the document requested. StreamThe stream returned by the event handler containing the HTML text. See also: THotSpotEvent = procedure(Sender: TObject; const URL: string) of Object; The THotSpotEvent type is the type for the hot spot covered event. This event occurs when the mouse is positioned over a hypertext link. URL is the string referenced by the hot spot. See also: OnHotSpotCovered Event THotSpotTargetEvent = procedure(Sender: TObject; const Target, URL: string) of Object; The THotSpotTargetEvent type is the type for the TFrameViewer and TFrameBrowser OnHotspotTargetCovered event. This event occurs when the mouse is positioned over a hypertext link. URL is the string referenced by the hot spot and Target is the (optional) associated target window or frame. For TFrameBrowser, URL is expanded into a full URL. See also: HTMLView.Pas THtmlFileType = (HTMLType, TextType, ImgType, XHtmlType, OtherType); Type THtmlFileType indicates a document type. See also: TProgressStage = (psStarting, psRunning, psEnding); ThtProgresstEvent = procedure(Sender: TObject; Stage: TProgressStage; PercentDone: integer) of Object; The ThtProgressEvent type is the type for the OnProgress event. SenderThe THtmlViewer doing the parsing and formatting. StageThe stage in the action. PercentDoneAn approximation to the percentage of completion. Note that the TProgressStage type is defined in Graphics.pas. TImageClickEvent = procedure(Sender, Obj: TObject; Button: TMouseButton; Shift: TShiftState; X, Y: Integer) of Object; The TImageClickEvent type is the type for OnImageClick events. These events occur when the mouse is clicked when over an image. In the above, Sender is the THtmlViewer and Obj is the TImageObj where the click occured. X and Y are the position of the cursor within the image. See also: TImageOverEvent = procedure(Sender, Obj: TObject; Shift: TShiftState; X, Y: Integer) of Object; The TImageOverEvent type is the type for OnImageOver events. These events occur when the mouse is moved over an image. In the above, Sender is the THtmlViewer and Obj is the TImageObj where the click occured. X and Y are the position of the cursor within the image. See also: TLinkType = procedure(Sender: TObject; const Rel, Rev, Href: string) of Object; The TLinkType type points to a method that might process the contents of a <LINK> HTML tag. Sender is the THtmlViewer, TFrameViewer, or TFrameBrowser which encounters the <LINK> tag. The other three parameters are the values of <LINK> tag attributes with the same name. See also: TMetaRefreshType = procedure(Sender: TObject; Delay: integer; const URL: string) of Object; The TMetaRefreshType type points to a method that might process the contents of a <META .Http_Eq="refresh"> tag. Delay is the time delay in seconds and URL, the html document used to refresh the display. These parameters are parsed from the Contents= attribute. Note that the Http_Eq="refresh" Meta event is handled internally for TFrameViewer. See also: TMetaType = procedure(Sender: TObject; const HttpEq, Name, Content: string) of Object; The TMetaType type points to a method that might process the contents of a <META> HTML tag. Sender is the THtmlViewer which encounters the <META> tag. The other three parameters are the values of <META> tag attributes with the same name. Note that the Http_Eq="refresh" Meta event is handled separately in the OnMetaRefresh event for THtmlViewer and internally for TFrameViewer. See also: TPanelDestroyEvent = procedure(Sender: TObject; Panel: ThvPanel) of Object; The TPanelDestroyEvent type is the type for the OnPanelDestroy event. Sender is the THtmlViewer displaying the ThvPanel. Panel is the ThvPanel (similar to TPanel) created for the display. See also: TProcessingEvent = procedure(Sender: TObject; ProcessingOn: boolean) of Object; The TProcessingEvent type is the type for the OnProcessing event. This event occurs whenever the viewer begins or finishes an operation. ProcessingOn is set True at the start of an operation and False when the operation is completed. See also: TScriptEvent = procedure(Sender: TObject; Const Name, Language, Script: String; The TScriptEvent type points to a method that might process the contents of a <script> ... </script> HTML tag sequence. Name and Language are the Name= and Language= attributes recovered from the <script> tag and Script is the entire text between the tags. See also: TSoundType = procedure (Sender: TObject; const SRC: string; Loop: integer; Terminate: boolean) of Object; The TSoundType type is the type for OnSoundRequest events. These events occur when the <BGSOUND> tag is encountered at load time and at any other time when it is appropriate to terminate the sound. In the above, Sender is the THtmlViewer or TFrameViewer loading the document, SRC and Loop are the values of these atttributes, and Terminate is a boolean indicating if the sound should be terminated. TWindowRequestEvent = procedure(Sender: TObject; const Target, URL: string) of Object; The TWindowRequestEvent type is the type for window request events. These events occur when a Target Frame of "_blank" is specified or if the Target name does not match any of the current Frame names. Generally, the user would want to open a new window to handle the URL when this event occurs. See also: A sequence of characters for specifying Internet resources. In HTML documents these specify hypertext link targets, image files, etc. As loosely interpreted for DOS HTML viewers, an URL can be a DOS path and filename. THtmlViewer, TFrameViewer, and TFrameBrowser components Declaration property ViewImages: Boolean The ViewImages property determines whether inline images are drawn or simulated with a standard marker image. If ViewImages is True and an image error occurs, an error image THtmlViewer, TFrameViewer, and TFrameBrowser components property VisitedMaxCount: Integer; The VisitedMaxCount property determines the number of visited links which will be stored. If VisitedMaxCount is 0, then special coloring of visited links will be disabled. The default value is 50. See also: THtmlViewer component property VScrollBarRange: Integer; The VScrollBarRange Property gives access to the viewer's vertical scrollbar range value. See Also: Position Property'+ProgName+'
'+
42 | 'A demo program for the '+CompName+' component'+
43 | '
16 |
43 |
44 |
45 |
46 |
47 |
--------------------------------------------------------------------------------
/Demos/Other Demos/FrameBrowserUsingIndy9/Resources/fbHelp.rc:
--------------------------------------------------------------------------------
1 | // usage: "c:\program files\borland\Delphi4\bin\BRCC32" -fofbHelp32.res fbHelp.rc
2 | // usage: C:\D\DELPHI\BIN\BRCC -fofbHelp16.res fbHelp.rc
3 |
4 |
5 | XLeft1 HTML "Xleft1.htm"
6 | page1 HTML "page1.htm"
7 | page3 HTML "page3.htm"
8 | page0 HTML "page0.htm"
9 | page4 HTML "page4.htm"
10 | page5 HTML "page5.htm"
11 | page6 HTML "page6.htm"
12 | page7 HTML "page7.htm"
13 | style HTML "style.css"
14 | builtwindy GIF "BuiltWindy.gif"
15 | tabbot GIF "tabbot.gif"
16 | tabtop GIF "tabtop.gif"
17 | starcross AVI "starcross.avi"
18 |
19 |
--------------------------------------------------------------------------------
/Demos/Other Demos/FrameBrowserUsingIndy9/Resources/starcross.avi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BerndGabriel/HtmlViewer/bd2ffb86d0f127e1da5bb2988180d8900ce836c7/Demos/Other Demos/FrameBrowserUsingIndy9/Resources/starcross.avi
--------------------------------------------------------------------------------
/Demos/Other Demos/FrameBrowserUsingIndy9/fbHelp32.res:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BerndGabriel/HtmlViewer/bd2ffb86d0f127e1da5bb2988180d8900ce836c7/Demos/Other Demos/FrameBrowserUsingIndy9/fbHelp32.res
--------------------------------------------------------------------------------
/Demos/Other Demos/FrameBrowserUsingIndy9/manifest.res:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BerndGabriel/HtmlViewer/bd2ffb86d0f127e1da5bb2988180d8900ce836c7/Demos/Other Demos/FrameBrowserUsingIndy9/manifest.res
--------------------------------------------------------------------------------
/Demos/Other Demos/HeaderFooter/Ace.htm:
--------------------------------------------------------------------------------
1 |
2 |
3 |
7 |
8 |
9 |
17 |
18 |
23 |
24 |
25 |
38 |
39 |
41 |
42 |
10 |
11 |
12 |
13 | Ace Header-Footer Corp.
14 | Silly Panel Demo
7 |
8 | ActiveViewer Property
17 |
18 |
19 | Applies to
20 |
21 | Description
24 |
25 | See Also:
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
--------------------------------------------------------------------------------
/HtmlHelp/html/assign_tbuffer_method.htm:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Assign Method
16 |
17 |
18 | Applies to
19 |
20 | Declaration
23 |
24 | Description
27 | See also
30 |
31 |
33 |
34 |
35 |
36 |
--------------------------------------------------------------------------------
/HtmlHelp/html/assignto_tbuffer_method.htm:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Assign Method
16 |
17 |
18 | Applies to
19 |
20 | Declaration
23 |
24 | Description
27 | See also
30 |
31 |
33 |
34 |
35 |
36 |
--------------------------------------------------------------------------------
/HtmlHelp/html/asstring_tbuffer_method.htm:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | AsString Method
16 |
17 |
18 | Applies to
19 |
20 | Declaration
23 |
24 | Description
27 | See also
30 |
31 |
35 |
36 |
37 |
38 |
--------------------------------------------------------------------------------
/HtmlHelp/html/basetarget_property.htm:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | BaseTarget Property
16 |
17 |
18 | Applies to
19 |
20 | Description
23 |
24 | BorderStyle Property
17 |
18 |
19 | Applies to
20 |
21 | Declaration
24 |
25 | Charset Property
17 |
18 |
19 | Applies to
20 |
21 | Declaration
24 |
25 | Clear Method
16 |
17 |
18 | Applies to
19 |
20 | Declaration
23 |
24 | Description
27 |
28 | ClearHistory Method
17 |
18 |
19 | Applies to
20 |
21 | Declaration
24 |
25 | Description
28 |
29 | CodePage Property
16 |
17 |
18 | Applies to
19 | Declaration
22 | Description
25 | See also
28 |
29 |
32 |
33 |
34 |
35 |
--------------------------------------------------------------------------------
/HtmlHelp/html/copyright.htm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BerndGabriel/HtmlViewer/bd2ffb86d0f127e1da5bb2988180d8900ce836c7/HtmlHelp/html/copyright.htm
--------------------------------------------------------------------------------
/HtmlHelp/html/currentfile_property.htm:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | CurrentFile Property
16 |
17 |
18 | Applies to
19 |
20 | Declaration
23 |
24 | DefHotSpotColor Property
17 |
18 |
19 | Applies to
20 |
21 | Declaration
24 |
25 | Description
28 |
29 | DefPreFontName Property
17 |
18 |
19 | Applies to
20 |
21 | Description
28 |
29 | DocumentCodePage Property
17 |
18 |
19 | Applies to
20 |
21 | Declaration
24 |
25 | Description
28 |
29 | DosToHTML Function
16 |
17 |
18 | Unit
19 |
20 | Syntax
23 |
24 | Description
27 |
28 | Example
33 |
34 | See Also:
41 |
42 |
43 |
44 |
45 |
46 |
--------------------------------------------------------------------------------
/HtmlHelp/html/findsourcepos_method.htm:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | FindSourcePos Method
16 |
17 |
18 | Applies to
19 |
20 | Declaration
23 |
24 | Description
27 |
28 | See Also:
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
--------------------------------------------------------------------------------
/HtmlHelp/html/getcharatpos_method.htm:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | GetCharAtPos Method
17 |
18 |
19 | Applies to
20 |
21 | Declaration
24 |
25 | Description
28 |
29 | GetString Method
16 |
17 |
18 | Applies to
19 |
20 | Declaration
23 |
24 | Description
27 | See also
31 |
32 |
35 |
36 |
37 |
38 |
--------------------------------------------------------------------------------
/HtmlHelp/html/getviewerurlbase_method.htm:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | GetViewerURLBase Method
16 |
17 |
18 | Applies to
19 |
20 | Declaration
23 |
24 | Description
27 |
28 | History Property
16 |
17 |
18 | Applies to
19 |
20 | Declaration
23 |
24 | HistoryIndex Property
16 |
17 |
18 | Applies to
19 |
20 | Declaration
23 |
24 | HistoryMaxCount Property
17 |
18 |
19 | Applies to
20 |
21 | Declaration
24 |
25 | HScrollBarPosition Property
17 |
18 |
19 | Applies to
20 |
21 | Declaration
24 |
25 | Description
28 |
29 | HScrollBarRange Property
17 |
18 |
19 | Applies to
20 |
21 | Declaration
24 |
25 | HTMLToDos Function
16 |
17 |
18 | Unit
19 |
20 | Syntax
23 |
24 | Description
27 |
28 | Example
31 |
32 | See Also:
39 |
40 |
41 |
42 |
43 |
44 |
--------------------------------------------------------------------------------
/HtmlHelp/html/iddisplay_property.htm:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | IDDisplay Property
16 |
17 |
18 | Applies to
19 |
20 | Declaration
23 |
24 | See Also:
29 |
30 |
31 |
32 |
33 |
34 |
--------------------------------------------------------------------------------
/HtmlHelp/html/marginheight_and_marginwidth_properties.htm:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | MarginHeight and MarginWidth Properties
17 |
18 |
19 | Applies to
20 |
21 | Declaration
24 |
25 | MaxVertical Property
16 |
17 |
18 | Applies to
19 |
20 | Description
23 |
24 | Name Property
16 |
17 |
18 | Applies to
19 | Declaration
22 | Description
25 | NameList Property
16 |
17 |
18 | Applies to
19 |
20 | Declaration
23 |
24 | NoSelect Property
16 |
17 |
18 | Applies to
19 |
20 | Description
27 |
28 | OnHistoryChange Event
17 |
18 |
19 | Applies to
20 |
21 | Declaration
24 |
25 | Description
28 |
29 | OnImageOver Event
16 |
17 |
18 | Applies to
19 |
20 | Declaration
23 |
24 | Description
27 |
28 | OnLink Event
16 |
17 |
18 | Applies to
19 |
20 | Declaration
23 |
24 | Description
27 |
28 | OnMeta Event
16 |
17 |
18 | Applies to
19 |
20 | Declaration
23 |
24 | Description
27 |
28 | OnMouseDouble Event
16 |
17 |
18 | Applies to
19 |
20 | Declaration
23 |
24 | Description
27 |
28 | OnParseEnd Event
17 |
18 |
19 | Applies to
20 |
21 | Declaration
24 |
25 | Description
28 |
29 | OnProcessing Event
16 |
17 |
18 | Applies to
19 |
20 | Declaration
23 |
24 | Description
27 |
28 | OnProgress Event
17 |
18 |
19 | Applies to
20 |
21 | Description
28 |
29 | OnScript Event
17 |
18 |
19 | Applies to
20 |
21 | Declaration
24 |
25 | Description
28 |
29 | OnSoundRequest Event
16 |
17 |
18 | Applies to
19 |
20 | Declaration
23 |
24 | Description
27 |
28 | OnViewerClear Event
16 |
17 |
18 | Applies to
19 |
20 | Declaration
23 |
24 | Description
27 |
28 | Position Property
16 |
17 |
18 | Applies to
19 | Declaration
22 | Description
25 | See also
29 |
30 |
33 |
34 |
35 |
36 |
--------------------------------------------------------------------------------
/HtmlHelp/html/positionto_method.htm:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | PositionTo Method
17 |
18 |
19 | Applies to
20 |
21 | Declaration
24 |
25 | Description
28 |
29 | Example
32 |
33 | PrintScale Property
17 |
18 |
19 | Applies to
20 |
21 | QuirksMode Property
17 |
18 |
19 | Applies to
20 |
21 | Declaration
24 |
25 | DocumentTitle Property
17 |
18 |
19 | Applies to
20 |
21 | Declaration
24 |
25 | PtInObject Method
16 |
17 |
18 | Applies to
19 |
20 | Declaration
23 |
24 | Description
27 |
28 | Reference Parameter
12 |
13 | Usage Example:
20 |
21 | Viewer.LoadFromString(S, 'C:\MyDirectory\');
22 |
23 | Reformat Method
16 |
17 |
18 | Applies to
19 |
20 | Declaration
23 |
24 | Description
27 |
28 | See Also:
31 |
32 |
33 |
34 |
35 |
36 |
--------------------------------------------------------------------------------
/HtmlHelp/html/reformatting.htm:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Reformatting THtmlViewer Content
12 |
13 | Reload Method
16 |
17 |
18 | Applies to
19 |
20 | Declaration
23 |
24 | Description
27 |
28 | SelectAll Method
17 |
18 |
19 | Applies to
20 |
21 | Declaration
24 |
25 | Description
28 |
29 | See Also:
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
--------------------------------------------------------------------------------
/HtmlHelp/html/seltext_property.htm:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | SelText Property
16 |
17 |
18 | Applies to
19 |
20 | Declaration
23 |
24 | Description
27 |
28 | ServerRoot Property
16 |
17 |
18 | Applies to
19 |
20 | Description
23 |
24 | Example
29 |
30 | Size Method
16 |
17 |
18 | Applies to
19 |
20 | Declaration
23 |
24 | Description
27 | See also
30 |
31 |
33 |
34 |
35 |
36 |
--------------------------------------------------------------------------------
/HtmlHelp/html/target_property.htm:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Target Property
16 |
17 |
18 | Applies to
19 |
20 | Declaration
23 |
24 | Description
27 |
28 | Text Property
17 |
18 |
19 | Applies to
20 |
21 | Declaration
24 |
25 | TFreeList is similar to TList but all contained elements must be descendents of TObject.
12 |
13 |
14 |
16 | Properties
17 | Methods
18 | Events
19 | Tasks
20 | THtmlViewer Component
21 |
22 | Unit
23 |
24 | Description
27 |
28 | See Also:
31 |
32 |
35 |
36 |
37 |
38 |
--------------------------------------------------------------------------------
/HtmlHelp/html/titlehistory_property.htm:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | TitleHistory Property
16 |
17 |
18 | Applies to
19 |
20 | TBuffCodePage Class
16 |
17 |
18 | Unit
19 | Declaration
22 | Description
25 | Type TFileBrowseEvent
12 |
13 |
14 | Declaration
15 |
16 | Description
19 |
20 | Type TGetStreamEvent
16 |
17 |
18 | Declaration
19 |
20 | Description
25 |
26 | Type THotSpotEvent
16 |
17 |
18 | Declaration
19 |
20 | Description
25 |
26 | Type THotSpotTargetEvent;
12 |
13 |
14 | Declaration
15 |
16 | Description
21 |
22 | Type THtmlFileType
17 |
18 |
19 | Unit
20 |
21 | Declaration
24 |
25 | Description
28 |
29 | Type ThtProgressEvent
12 |
13 |
14 | Declaration
15 |
16 | Description
23 |
24 | Type TImageClickEvent
12 |
13 |
14 | Declaration
15 |
16 | Description
21 |
22 | Type TImageOverEvent
12 |
13 |
14 | Declaration
15 |
16 | Description
21 |
22 | Type TLinkType
12 |
13 |
14 | Declaration
15 |
16 | Description
21 |
22 | Type TMetaRefreshType
12 |
13 |
14 | Declaration
15 |
16 | Description
21 |
22 | Type TMetaType
12 |
13 |
14 | Declaration
15 |
16 | Description
21 |
22 | Type TPanelDestroyEvent
16 |
17 |
18 | Declaration
19 |
20 | Description
23 |
24 | Type TProcessingEvent
12 |
13 |
14 | Declaration
15 |
16 | Description
21 |
22 | Type TScriptEvent
12 |
13 |
14 | Declaration
15 |
16 | Description
19 |
20 | TSoundType Type
12 |
13 |
14 | Declaration
15 |
16 | Description
21 |
22 | Type TWindowRequestEvent
12 |
13 |
14 | Declaration
15 |
16 | Description
21 |
22 | URL - Uniform Resource Locator
12 |
13 |
14 | ViewImages Property
17 |
18 |
19 | Applies to
20 |
21 | Description
28 |
29 | is displayed.
VisitedMaxCount Property
17 |
18 |
19 | Applies to
20 |
21 | Declaration
24 |
25 | VScrollBarRange Property
17 |
18 |
19 | Applies to
20 |
21 | Declaration
24 |
25 | WaitStream is defined in htmlun2.pas. Include htmlun2 in your Uses clause.
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/HtmlHelp/images/bm0.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BerndGabriel/HtmlViewer/bd2ffb86d0f127e1da5bb2988180d8900ce836c7/HtmlHelp/images/bm0.gif
--------------------------------------------------------------------------------
/HtmlHelp/images/bm1.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BerndGabriel/HtmlViewer/bd2ffb86d0f127e1da5bb2988180d8900ce836c7/HtmlHelp/images/bm1.gif
--------------------------------------------------------------------------------
/HtmlHelp/images/bm2.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BerndGabriel/HtmlViewer/bd2ffb86d0f127e1da5bb2988180d8900ce836c7/HtmlHelp/images/bm2.gif
--------------------------------------------------------------------------------
/HtmlHelp/images/bm3.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BerndGabriel/HtmlViewer/bd2ffb86d0f127e1da5bb2988180d8900ce836c7/HtmlHelp/images/bm3.gif
--------------------------------------------------------------------------------
/HtmlHelp/images/bm4.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BerndGabriel/HtmlViewer/bd2ffb86d0f127e1da5bb2988180d8900ce836c7/HtmlHelp/images/bm4.gif
--------------------------------------------------------------------------------
/HtmlHelp/images/bm5.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BerndGabriel/HtmlViewer/bd2ffb86d0f127e1da5bb2988180d8900ce836c7/HtmlHelp/images/bm5.gif
--------------------------------------------------------------------------------
/HtmlHelp/images/bm6.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BerndGabriel/HtmlViewer/bd2ffb86d0f127e1da5bb2988180d8900ce836c7/HtmlHelp/images/bm6.gif
--------------------------------------------------------------------------------
/HtmlHelp/images/bm7.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BerndGabriel/HtmlViewer/bd2ffb86d0f127e1da5bb2988180d8900ce836c7/HtmlHelp/images/bm7.gif
--------------------------------------------------------------------------------
/HtmlHelp/images/bm8.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BerndGabriel/HtmlViewer/bd2ffb86d0f127e1da5bb2988180d8900ce836c7/HtmlHelp/images/bm8.gif
--------------------------------------------------------------------------------
/HtmlHelp/images/bm9.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BerndGabriel/HtmlViewer/bd2ffb86d0f127e1da5bb2988180d8900ce836c7/HtmlHelp/images/bm9.gif
--------------------------------------------------------------------------------
/HtmlHelp/images/smallcheck.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BerndGabriel/HtmlViewer/bd2ffb86d0f127e1da5bb2988180d8900ce836c7/HtmlHelp/images/smallcheck.gif
--------------------------------------------------------------------------------
/HtmlHelp/images/v1110.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BerndGabriel/HtmlViewer/bd2ffb86d0f127e1da5bb2988180d8900ce836c7/HtmlHelp/images/v1110.png
--------------------------------------------------------------------------------
/HtmlHelp/images/v114.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BerndGabriel/HtmlViewer/bd2ffb86d0f127e1da5bb2988180d8900ce836c7/HtmlHelp/images/v114.png
--------------------------------------------------------------------------------
/HtmlHelp/images/v115.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BerndGabriel/HtmlViewer/bd2ffb86d0f127e1da5bb2988180d8900ce836c7/HtmlHelp/images/v115.png
--------------------------------------------------------------------------------
/HtmlHelp/images/v116.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BerndGabriel/HtmlViewer/bd2ffb86d0f127e1da5bb2988180d8900ce836c7/HtmlHelp/images/v116.png
--------------------------------------------------------------------------------
/HtmlHelp/images/v117.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BerndGabriel/HtmlViewer/bd2ffb86d0f127e1da5bb2988180d8900ce836c7/HtmlHelp/images/v117.png
--------------------------------------------------------------------------------
/HtmlHelp/images/v118.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BerndGabriel/HtmlViewer/bd2ffb86d0f127e1da5bb2988180d8900ce836c7/HtmlHelp/images/v118.png
--------------------------------------------------------------------------------
/HtmlHelp/images/v119.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BerndGabriel/HtmlViewer/bd2ffb86d0f127e1da5bb2988180d8900ce836c7/HtmlHelp/images/v119.png
--------------------------------------------------------------------------------
/HtmlHelp/images/v945.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BerndGabriel/HtmlViewer/bd2ffb86d0f127e1da5bb2988180d8900ce836c7/HtmlHelp/images/v945.png
--------------------------------------------------------------------------------
/Rad Studio 10.1/dclFrameViewer.dpk:
--------------------------------------------------------------------------------
1 | package dclFrameViewer;
2 | {$R *.res}
3 | {$IFDEF IMPLICITBUILDING This IFDEF should not be used by users}
4 | {$ALIGN 8}
5 | {$ASSERTIONS ON}
6 | {$BOOLEVAL OFF}
7 | {$DEBUGINFO OFF}
8 | {$EXTENDEDSYNTAX ON}
9 | {$IMPORTEDDATA ON}
10 | {$IOCHECKS ON}
11 | {$LOCALSYMBOLS ON}
12 | {$LONGSTRINGS ON}
13 | {$OPENSTRINGS ON}
14 | {$OPTIMIZATION OFF}
15 | {$OVERFLOWCHECKS OFF}
16 | {$RANGECHECKS OFF}
17 | {$REFERENCEINFO ON}
18 | {$SAFEDIVIDE OFF}
19 | {$STACKFRAMES ON}
20 | {$TYPEDADDRESS OFF}
21 | {$VARSTRINGCHECKS ON}
22 | {$WRITEABLECONST OFF}
23 | {$MINENUMSIZE 1}
24 | {$IMAGEBASE $400000}
25 | {$DEFINE DEBUG}
26 | {$ENDIF IMPLICITBUILDING}
27 | {$DESCRIPTION 'THtmlViewer, TFrameViewer, and TFrameBrowser'}
28 | {$LIBSUFFIX '240'}
29 | {$DESIGNONLY}
30 | {$IMPLICITBUILD ON}
31 |
32 | requires
33 | rtl,
34 | vcl,
35 | designide,
36 | vclimg,
37 | soaprtl,
38 | VclSmp,
39 | FrameViewer;
40 |
41 | contains
42 | FrameViewerReg in '..\source\FrameViewerReg.pas',
43 | HTMLCompEdit in '..\source\HTMLCompEdit.pas';
44 |
45 | end.
46 |
--------------------------------------------------------------------------------
/Rad Studio 10.2/dclFrameViewer.dpk:
--------------------------------------------------------------------------------
1 | package dclFrameViewer;
2 | {$R *.res}
3 | {$IFDEF IMPLICITBUILDING This IFDEF should not be used by users}
4 | {$ALIGN 8}
5 | {$ASSERTIONS ON}
6 | {$BOOLEVAL OFF}
7 | {$DEBUGINFO OFF}
8 | {$EXTENDEDSYNTAX ON}
9 | {$IMPORTEDDATA ON}
10 | {$IOCHECKS ON}
11 | {$LOCALSYMBOLS ON}
12 | {$LONGSTRINGS ON}
13 | {$OPENSTRINGS ON}
14 | {$OPTIMIZATION OFF}
15 | {$OVERFLOWCHECKS OFF}
16 | {$RANGECHECKS OFF}
17 | {$REFERENCEINFO ON}
18 | {$SAFEDIVIDE OFF}
19 | {$STACKFRAMES ON}
20 | {$TYPEDADDRESS OFF}
21 | {$VARSTRINGCHECKS ON}
22 | {$WRITEABLECONST OFF}
23 | {$MINENUMSIZE 1}
24 | {$IMAGEBASE $400000}
25 | {$DEFINE DEBUG}
26 | {$ENDIF IMPLICITBUILDING}
27 | {$DESCRIPTION 'THtmlViewer, TFrameViewer, and TFrameBrowser'}
28 | {$LIBSUFFIX '250'}
29 | {$DESIGNONLY}
30 | {$IMPLICITBUILD ON}
31 |
32 | requires
33 | rtl,
34 | vcl,
35 | designide,
36 | vclimg,
37 | soaprtl,
38 | VclSmp,
39 | FrameViewer;
40 |
41 | contains
42 | FrameViewerReg in '..\source\FrameViewerReg.pas',
43 | HTMLCompEdit in '..\source\HTMLCompEdit.pas';
44 |
45 | end.
46 |
--------------------------------------------------------------------------------
/Rad Studio 10.3/dclFrameViewer.dpk:
--------------------------------------------------------------------------------
1 | package dclFrameViewer;
2 | {$R *.res}
3 | {$IFDEF IMPLICITBUILDING This IFDEF should not be used by users}
4 | {$ALIGN 8}
5 | {$ASSERTIONS ON}
6 | {$BOOLEVAL OFF}
7 | {$DEBUGINFO OFF}
8 | {$EXTENDEDSYNTAX ON}
9 | {$IMPORTEDDATA ON}
10 | {$IOCHECKS ON}
11 | {$LOCALSYMBOLS ON}
12 | {$LONGSTRINGS ON}
13 | {$OPENSTRINGS ON}
14 | {$OPTIMIZATION OFF}
15 | {$OVERFLOWCHECKS OFF}
16 | {$RANGECHECKS OFF}
17 | {$REFERENCEINFO ON}
18 | {$SAFEDIVIDE OFF}
19 | {$STACKFRAMES ON}
20 | {$TYPEDADDRESS OFF}
21 | {$VARSTRINGCHECKS ON}
22 | {$WRITEABLECONST OFF}
23 | {$MINENUMSIZE 1}
24 | {$IMAGEBASE $400000}
25 | {$DEFINE DEBUG}
26 | {$ENDIF IMPLICITBUILDING}
27 | {$DESCRIPTION 'THtmlViewer, TFrameViewer, and TFrameBrowser'}
28 | {$LIBSUFFIX '260'}
29 | {$DESIGNONLY}
30 | {$IMPLICITBUILD ON}
31 |
32 | requires
33 | rtl,
34 | vcl,
35 | designide,
36 | vclimg,
37 | soaprtl,
38 | VclSmp,
39 | FrameViewer;
40 |
41 | contains
42 | FrameViewerReg in '..\source\FrameViewerReg.pas',
43 | HTMLCompEdit in '..\source\HTMLCompEdit.pas';
44 |
45 | end.
46 |
--------------------------------------------------------------------------------
/Rad Studio 10.4/dclFrameViewer.dpk:
--------------------------------------------------------------------------------
1 | package dclFrameViewer;
2 | {$R *.res}
3 | {$IFDEF IMPLICITBUILDING This IFDEF should not be used by users}
4 | {$ALIGN 8}
5 | {$ASSERTIONS ON}
6 | {$BOOLEVAL OFF}
7 | {$DEBUGINFO OFF}
8 | {$EXTENDEDSYNTAX ON}
9 | {$IMPORTEDDATA ON}
10 | {$IOCHECKS ON}
11 | {$LOCALSYMBOLS ON}
12 | {$LONGSTRINGS ON}
13 | {$OPENSTRINGS ON}
14 | {$OPTIMIZATION OFF}
15 | {$OVERFLOWCHECKS OFF}
16 | {$RANGECHECKS OFF}
17 | {$REFERENCEINFO ON}
18 | {$SAFEDIVIDE OFF}
19 | {$STACKFRAMES ON}
20 | {$TYPEDADDRESS OFF}
21 | {$VARSTRINGCHECKS ON}
22 | {$WRITEABLECONST OFF}
23 | {$MINENUMSIZE 1}
24 | {$IMAGEBASE $400000}
25 | {$DEFINE DEBUG}
26 | {$ENDIF IMPLICITBUILDING}
27 | {$DESCRIPTION 'THtmlViewer, TFrameViewer, and TFrameBrowser'}
28 | {$LIBSUFFIX '270'}
29 | {$DESIGNONLY}
30 | {$IMPLICITBUILD ON}
31 |
32 | requires
33 | rtl,
34 | vcl,
35 | designide,
36 | vclimg,
37 | soaprtl,
38 | VclSmp,
39 | FrameViewer;
40 |
41 | contains
42 | FrameViewerReg in '..\source\FrameViewerReg.pas',
43 | HTMLCompEdit in '..\source\HTMLCompEdit.pas';
44 |
45 | end.
46 |
--------------------------------------------------------------------------------
/Rad Studio 10/dclFrameViewer.dpk:
--------------------------------------------------------------------------------
1 | package dclFrameViewer;
2 | {$R *.res}
3 | {$IFDEF IMPLICITBUILDING This IFDEF should not be used by users}
4 | {$ALIGN 8}
5 | {$ASSERTIONS ON}
6 | {$BOOLEVAL OFF}
7 | {$DEBUGINFO OFF}
8 | {$EXTENDEDSYNTAX ON}
9 | {$IMPORTEDDATA ON}
10 | {$IOCHECKS ON}
11 | {$LOCALSYMBOLS ON}
12 | {$LONGSTRINGS ON}
13 | {$OPENSTRINGS ON}
14 | {$OPTIMIZATION OFF}
15 | {$OVERFLOWCHECKS OFF}
16 | {$RANGECHECKS OFF}
17 | {$REFERENCEINFO ON}
18 | {$SAFEDIVIDE OFF}
19 | {$STACKFRAMES ON}
20 | {$TYPEDADDRESS OFF}
21 | {$VARSTRINGCHECKS ON}
22 | {$WRITEABLECONST OFF}
23 | {$MINENUMSIZE 1}
24 | {$IMAGEBASE $400000}
25 | {$DEFINE DEBUG}
26 | {$ENDIF IMPLICITBUILDING}
27 | {$DESCRIPTION 'THtmlViewer, TFrameViewer, and TFrameBrowser'}
28 | {$LIBSUFFIX '230'}
29 | {$DESIGNONLY}
30 | {$IMPLICITBUILD ON}
31 |
32 | requires
33 | rtl,
34 | vcl,
35 | designide,
36 | vclimg,
37 | soaprtl,
38 | VclSmp,
39 | FrameViewer;
40 |
41 | contains
42 | FrameViewerReg in '..\source\FrameViewerReg.pas',
43 | HTMLCompEdit in '..\source\HTMLCompEdit.pas';
44 |
45 | end.
46 |
--------------------------------------------------------------------------------
/Rad Studio 11/dclFrameViewer.dpk:
--------------------------------------------------------------------------------
1 | package dclFrameViewer;
2 | {$R *.res}
3 | {$IFDEF IMPLICITBUILDING This IFDEF should not be used by users}
4 | {$ALIGN 8}
5 | {$ASSERTIONS ON}
6 | {$BOOLEVAL OFF}
7 | {$DEBUGINFO OFF}
8 | {$EXTENDEDSYNTAX ON}
9 | {$IMPORTEDDATA ON}
10 | {$IOCHECKS ON}
11 | {$LOCALSYMBOLS ON}
12 | {$LONGSTRINGS ON}
13 | {$OPENSTRINGS ON}
14 | {$OPTIMIZATION OFF}
15 | {$OVERFLOWCHECKS OFF}
16 | {$RANGECHECKS OFF}
17 | {$REFERENCEINFO ON}
18 | {$SAFEDIVIDE OFF}
19 | {$STACKFRAMES ON}
20 | {$TYPEDADDRESS OFF}
21 | {$VARSTRINGCHECKS ON}
22 | {$WRITEABLECONST OFF}
23 | {$MINENUMSIZE 1}
24 | {$IMAGEBASE $400000}
25 | {$DEFINE DEBUG}
26 | {$ENDIF IMPLICITBUILDING}
27 | {$DESCRIPTION 'THtmlViewer, TFrameViewer, and TFrameBrowser'}
28 | {$LIBSUFFIX '280'}
29 | {$DESIGNONLY}
30 | {$IMPLICITBUILD ON}
31 |
32 | requires
33 | rtl,
34 | vcl,
35 | designide,
36 | vclimg,
37 | soaprtl,
38 | VclSmp,
39 | FrameViewer;
40 |
41 | contains
42 | FrameViewerReg in '..\source\FrameViewerReg.pas',
43 | HTMLCompEdit in '..\source\HTMLCompEdit.pas';
44 |
45 | end.
46 |
--------------------------------------------------------------------------------
/Rad Studio 12/dclFrameViewer.dpk:
--------------------------------------------------------------------------------
1 | package dclFrameViewer;
2 | {$R *.res}
3 | {$IFDEF IMPLICITBUILDING This IFDEF should not be used by users}
4 | {$ALIGN 8}
5 | {$ASSERTIONS ON}
6 | {$BOOLEVAL OFF}
7 | {$DEBUGINFO OFF}
8 | {$EXTENDEDSYNTAX ON}
9 | {$IMPORTEDDATA ON}
10 | {$IOCHECKS ON}
11 | {$LOCALSYMBOLS ON}
12 | {$LONGSTRINGS ON}
13 | {$OPENSTRINGS ON}
14 | {$OPTIMIZATION OFF}
15 | {$OVERFLOWCHECKS OFF}
16 | {$RANGECHECKS OFF}
17 | {$REFERENCEINFO ON}
18 | {$SAFEDIVIDE OFF}
19 | {$STACKFRAMES ON}
20 | {$TYPEDADDRESS OFF}
21 | {$VARSTRINGCHECKS ON}
22 | {$WRITEABLECONST OFF}
23 | {$MINENUMSIZE 1}
24 | {$IMAGEBASE $400000}
25 | {$DEFINE DEBUG}
26 | {$ENDIF IMPLICITBUILDING}
27 | {$DESCRIPTION 'THtmlViewer, TFrameViewer, and TFrameBrowser'}
28 | {$LIBSUFFIX '290'}
29 | {$DESIGNONLY}
30 | {$IMPLICITBUILD ON}
31 |
32 | requires
33 | rtl,
34 | vcl,
35 | designide,
36 | vclimg,
37 | soaprtl,
38 | VclSmp,
39 | FrameViewer;
40 |
41 | contains
42 | FrameViewerReg in '..\source\FrameViewerReg.pas',
43 | HTMLCompEdit in '..\source\HTMLCompEdit.pas';
44 |
45 | end.
46 |
--------------------------------------------------------------------------------
/package/FRAMVIEW.DCR:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BerndGabriel/HtmlViewer/bd2ffb86d0f127e1da5bb2988180d8900ce836c7/package/FRAMVIEW.DCR
--------------------------------------------------------------------------------
/package/Frambrwz.dcr:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BerndGabriel/HtmlViewer/bd2ffb86d0f127e1da5bb2988180d8900ce836c7/package/Frambrwz.dcr
--------------------------------------------------------------------------------
/package/FrameViewer09.pas:
--------------------------------------------------------------------------------
1 | { This file was automatically created by Lazarus. Do not edit!
2 | This source is only used to compile and install the package.
3 | }
4 |
5 | unit FrameViewer09;
6 |
7 | {$warn 5023 off : no warning about unused units}
8 | interface
9 |
10 | uses
11 | DitherUnit, FramBrwz, FrameViewerReg, FramView, HtmlBuffer, HtmlGif1,
12 | HTMLGif2, HtmlGlobals, HtmlMisc, Htmlsbs1, HTMLSubs, HtmlView, ReadHTML,
13 | StylePars, StyleUn, URLSubs, msimg32, AlphaBlendUn, HSLUtils, BuffConv,
14 | BuffConvArrays, HtmlSymb, BegaHtmlPrintPreviewForm, BegaMetaFilePrinter,
15 | BegaPreview, BegaPreviewForm, BegaPreviewPanel, BegaScrollBox, BegaZoom,
16 | GDIPL2A, HtmlCaches, HtmlFonts, HtmlImages, MetaFilePrinter, StyleTypes,
17 | vwPrint, UrlConn, HtmlPrinter, HTMLUn2, LazarusPackageIntf;
18 |
19 | implementation
20 |
21 | procedure Register;
22 | begin
23 | RegisterUnit('FrameViewerReg', @FrameViewerReg.Register);
24 | end;
25 |
26 | initialization
27 | RegisterPackage('FrameViewer09', @Register);
28 | end.
29 |
--------------------------------------------------------------------------------
/package/FrameViewer2005.res:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BerndGabriel/HtmlViewer/bd2ffb86d0f127e1da5bb2988180d8900ce836c7/package/FrameViewer2005.res
--------------------------------------------------------------------------------
/package/FrameViewer2006.res:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BerndGabriel/HtmlViewer/bd2ffb86d0f127e1da5bb2988180d8900ce836c7/package/FrameViewer2006.res
--------------------------------------------------------------------------------
/package/FrameViewer2007.res:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BerndGabriel/HtmlViewer/bd2ffb86d0f127e1da5bb2988180d8900ce836c7/package/FrameViewer2007.res
--------------------------------------------------------------------------------
/package/FrameViewer2009.res:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BerndGabriel/HtmlViewer/bd2ffb86d0f127e1da5bb2988180d8900ce836c7/package/FrameViewer2009.res
--------------------------------------------------------------------------------
/package/FrameViewer2010.res:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BerndGabriel/HtmlViewer/bd2ffb86d0f127e1da5bb2988180d8900ce836c7/package/FrameViewer2010.res
--------------------------------------------------------------------------------
/package/FrameViewer6.res:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BerndGabriel/HtmlViewer/bd2ffb86d0f127e1da5bb2988180d8900ce836c7/package/FrameViewer6.res
--------------------------------------------------------------------------------
/package/FrameViewer7.res:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BerndGabriel/HtmlViewer/bd2ffb86d0f127e1da5bb2988180d8900ce836c7/package/FrameViewer7.res
--------------------------------------------------------------------------------
/package/FrameViewerXE.res:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BerndGabriel/HtmlViewer/bd2ffb86d0f127e1da5bb2988180d8900ce836c7/package/FrameViewerXE.res
--------------------------------------------------------------------------------
/package/FrameViewerXE2.res:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BerndGabriel/HtmlViewer/bd2ffb86d0f127e1da5bb2988180d8900ce836c7/package/FrameViewerXE2.res
--------------------------------------------------------------------------------
/package/FrameViewerXE3.res:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BerndGabriel/HtmlViewer/bd2ffb86d0f127e1da5bb2988180d8900ce836c7/package/FrameViewerXE3.res
--------------------------------------------------------------------------------
/package/FrameViewerXE4.res:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BerndGabriel/HtmlViewer/bd2ffb86d0f127e1da5bb2988180d8900ce836c7/package/FrameViewerXE4.res
--------------------------------------------------------------------------------
/package/FrameViewerXE5.res:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BerndGabriel/HtmlViewer/bd2ffb86d0f127e1da5bb2988180d8900ce836c7/package/FrameViewerXE5.res
--------------------------------------------------------------------------------
/package/FrameViewerXE6.res:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BerndGabriel/HtmlViewer/bd2ffb86d0f127e1da5bb2988180d8900ce836c7/package/FrameViewerXE6.res
--------------------------------------------------------------------------------
/package/FrameViewerXE7.res:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BerndGabriel/HtmlViewer/bd2ffb86d0f127e1da5bb2988180d8900ce836c7/package/FrameViewerXE7.res
--------------------------------------------------------------------------------
/package/FrameViewerXE8.res:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BerndGabriel/HtmlViewer/bd2ffb86d0f127e1da5bb2988180d8900ce836c7/package/FrameViewerXE8.res
--------------------------------------------------------------------------------
/package/FrameViewerXE9.res:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BerndGabriel/HtmlViewer/bd2ffb86d0f127e1da5bb2988180d8900ce836c7/package/FrameViewerXE9.res
--------------------------------------------------------------------------------
/package/HTMLVIEW.DCR:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BerndGabriel/HtmlViewer/bd2ffb86d0f127e1da5bb2988180d8900ce836c7/package/HTMLVIEW.DCR
--------------------------------------------------------------------------------
/package/dclFrameViewerXE.dpk:
--------------------------------------------------------------------------------
1 | package dclFrameViewerXE;
2 |
3 | {$R *.res}
4 | {$IFDEF IMPLICITBUILDING This IFDEF should not be used by users}
5 | {$ALIGN 8}
6 | {$ASSERTIONS ON}
7 | {$BOOLEVAL OFF}
8 | {$DEBUGINFO ON}
9 | {$EXTENDEDSYNTAX ON}
10 | {$IMPORTEDDATA ON}
11 | {$IOCHECKS ON}
12 | {$LOCALSYMBOLS ON}
13 | {$LONGSTRINGS ON}
14 | {$OPENSTRINGS ON}
15 | {$OPTIMIZATION OFF}
16 | {$OVERFLOWCHECKS OFF}
17 | {$RANGECHECKS OFF}
18 | {$REFERENCEINFO ON}
19 | {$SAFEDIVIDE OFF}
20 | {$STACKFRAMES ON}
21 | {$TYPEDADDRESS OFF}
22 | {$VARSTRINGCHECKS ON}
23 | {$WRITEABLECONST OFF}
24 | {$MINENUMSIZE 1}
25 | {$IMAGEBASE $400000}
26 | {$DEFINE DEBUG}
27 | {$ENDIF IMPLICITBUILDING}
28 | {$DESCRIPTION 'THtmlViewer, TFrameViewer, and TFrameBrowser'}
29 | {$DESIGNONLY}
30 | {$IMPLICITBUILD ON}
31 |
32 | requires
33 | rtl,
34 | vcl,
35 | designide,
36 | vclimg,
37 | soaprtl,
38 | VclSmp,
39 | FrameViewerXE;
40 |
41 | contains
42 | FrameViewerReg in '..\source\FrameViewerReg.pas',
43 | HTMLCompEdit in '..\source\HTMLCompEdit.pas';
44 |
45 | end.
46 |
--------------------------------------------------------------------------------
/package/dclFrameViewerXE2.dpk:
--------------------------------------------------------------------------------
1 | package dclFrameViewerXE2;
2 |
3 | {$R *.res}
4 | {$IFDEF IMPLICITBUILDING This IFDEF should not be used by users}
5 | {$ALIGN 8}
6 | {$ASSERTIONS ON}
7 | {$BOOLEVAL OFF}
8 | {$DEBUGINFO ON}
9 | {$EXTENDEDSYNTAX ON}
10 | {$IMPORTEDDATA ON}
11 | {$IOCHECKS ON}
12 | {$LOCALSYMBOLS ON}
13 | {$LONGSTRINGS ON}
14 | {$OPENSTRINGS ON}
15 | {$OPTIMIZATION OFF}
16 | {$OVERFLOWCHECKS OFF}
17 | {$RANGECHECKS OFF}
18 | {$REFERENCEINFO ON}
19 | {$SAFEDIVIDE OFF}
20 | {$STACKFRAMES ON}
21 | {$TYPEDADDRESS OFF}
22 | {$VARSTRINGCHECKS ON}
23 | {$WRITEABLECONST OFF}
24 | {$MINENUMSIZE 1}
25 | {$IMAGEBASE $400000}
26 | {$DEFINE DEBUG}
27 | {$ENDIF IMPLICITBUILDING}
28 | {$DESCRIPTION 'THtmlViewer, TFrameViewer, and TFrameBrowser'}
29 | {$DESIGNONLY}
30 | {$IMPLICITBUILD ON}
31 |
32 | requires
33 | rtl,
34 | vcl,
35 | designide,
36 | vclimg,
37 | soaprtl,
38 | VclSmp,
39 | FrameViewerXE2;
40 |
41 | contains
42 | FrameViewerReg in '..\source\FrameViewerReg.pas',
43 | HTMLCompEdit in '..\source\HTMLCompEdit.pas';
44 |
45 | end.
46 |
--------------------------------------------------------------------------------
/package/dclFrameViewerXE3.dpk:
--------------------------------------------------------------------------------
1 | package dclFrameViewerXE3;
2 |
3 | {$R *.res}
4 | {$IFDEF IMPLICITBUILDING This IFDEF should not be used by users}
5 | {$ALIGN 8}
6 | {$ASSERTIONS ON}
7 | {$BOOLEVAL OFF}
8 | {$DEBUGINFO ON}
9 | {$EXTENDEDSYNTAX ON}
10 | {$IMPORTEDDATA ON}
11 | {$IOCHECKS ON}
12 | {$LOCALSYMBOLS ON}
13 | {$LONGSTRINGS ON}
14 | {$OPENSTRINGS ON}
15 | {$OPTIMIZATION OFF}
16 | {$OVERFLOWCHECKS OFF}
17 | {$RANGECHECKS OFF}
18 | {$REFERENCEINFO ON}
19 | {$SAFEDIVIDE OFF}
20 | {$STACKFRAMES ON}
21 | {$TYPEDADDRESS OFF}
22 | {$VARSTRINGCHECKS ON}
23 | {$WRITEABLECONST OFF}
24 | {$MINENUMSIZE 1}
25 | {$IMAGEBASE $400000}
26 | {$DEFINE DEBUG}
27 | {$ENDIF IMPLICITBUILDING}
28 | {$DESCRIPTION 'THtmlViewer, TFrameViewer, and TFrameBrowser'}
29 | {$DESIGNONLY}
30 | {$IMPLICITBUILD ON}
31 |
32 | requires
33 | rtl,
34 | vcl,
35 | designide,
36 | vclimg,
37 | soaprtl,
38 | VclSmp,
39 | FrameViewerXE3;
40 |
41 | contains
42 | FrameViewerReg in '..\source\FrameViewerReg.pas',
43 | HTMLCompEdit in '..\source\HTMLCompEdit.pas';
44 |
45 | end.
46 |
--------------------------------------------------------------------------------
/package/dclFrameViewerXE3.res:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BerndGabriel/HtmlViewer/bd2ffb86d0f127e1da5bb2988180d8900ce836c7/package/dclFrameViewerXE3.res
--------------------------------------------------------------------------------
/package/dclFrameViewerXE4.dpk:
--------------------------------------------------------------------------------
1 | package dclFrameViewerXE4;
2 |
3 | {$R *.res}
4 | {$IFDEF IMPLICITBUILDING This IFDEF should not be used by users}
5 | {$ALIGN 8}
6 | {$ASSERTIONS ON}
7 | {$BOOLEVAL OFF}
8 | {$DEBUGINFO ON}
9 | {$EXTENDEDSYNTAX ON}
10 | {$IMPORTEDDATA ON}
11 | {$IOCHECKS ON}
12 | {$LOCALSYMBOLS ON}
13 | {$LONGSTRINGS ON}
14 | {$OPENSTRINGS ON}
15 | {$OPTIMIZATION OFF}
16 | {$OVERFLOWCHECKS OFF}
17 | {$RANGECHECKS OFF}
18 | {$REFERENCEINFO ON}
19 | {$SAFEDIVIDE OFF}
20 | {$STACKFRAMES ON}
21 | {$TYPEDADDRESS OFF}
22 | {$VARSTRINGCHECKS ON}
23 | {$WRITEABLECONST OFF}
24 | {$MINENUMSIZE 1}
25 | {$IMAGEBASE $400000}
26 | {$DEFINE DEBUG}
27 | {$ENDIF IMPLICITBUILDING}
28 | {$DESCRIPTION 'THtmlViewer, TFrameViewer, and TFrameBrowser'}
29 | {$DESIGNONLY}
30 | {$IMPLICITBUILD ON}
31 |
32 | requires
33 | rtl,
34 | vcl,
35 | designide,
36 | vclimg,
37 | soaprtl,
38 | VclSmp,
39 | FrameViewerXE4;
40 |
41 | contains
42 | FrameViewerReg in '..\source\FrameViewerReg.pas',
43 | HTMLCompEdit in '..\source\HTMLCompEdit.pas';
44 |
45 | end.
46 |
--------------------------------------------------------------------------------
/package/dclFrameViewerXE4.res:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BerndGabriel/HtmlViewer/bd2ffb86d0f127e1da5bb2988180d8900ce836c7/package/dclFrameViewerXE4.res
--------------------------------------------------------------------------------
/package/dclFrameViewerXE5.dpk:
--------------------------------------------------------------------------------
1 | package dclFrameViewerXE5;
2 |
3 | {$R *.res}
4 | {$IFDEF IMPLICITBUILDING This IFDEF should not be used by users}
5 | {$ALIGN 8}
6 | {$ASSERTIONS ON}
7 | {$BOOLEVAL OFF}
8 | {$DEBUGINFO ON}
9 | {$EXTENDEDSYNTAX ON}
10 | {$IMPORTEDDATA ON}
11 | {$IOCHECKS ON}
12 | {$LOCALSYMBOLS ON}
13 | {$LONGSTRINGS ON}
14 | {$OPENSTRINGS ON}
15 | {$OPTIMIZATION OFF}
16 | {$OVERFLOWCHECKS OFF}
17 | {$RANGECHECKS OFF}
18 | {$REFERENCEINFO ON}
19 | {$SAFEDIVIDE OFF}
20 | {$STACKFRAMES ON}
21 | {$TYPEDADDRESS OFF}
22 | {$VARSTRINGCHECKS ON}
23 | {$WRITEABLECONST OFF}
24 | {$MINENUMSIZE 1}
25 | {$IMAGEBASE $400000}
26 | {$DEFINE DEBUG}
27 | {$ENDIF IMPLICITBUILDING}
28 | {$DESCRIPTION 'THtmlViewer, TFrameViewer, and TFrameBrowser'}
29 | {$DESIGNONLY}
30 | {$IMPLICITBUILD ON}
31 |
32 | requires
33 | rtl,
34 | vcl,
35 | designide,
36 | vclimg,
37 | soaprtl,
38 | VclSmp,
39 | FrameViewerXE5;
40 |
41 | contains
42 | FrameViewerReg in '..\source\FrameViewerReg.pas',
43 | HTMLCompEdit in '..\source\HTMLCompEdit.pas';
44 |
45 | end.
46 |
--------------------------------------------------------------------------------
/package/dclFrameViewerXE5.res:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BerndGabriel/HtmlViewer/bd2ffb86d0f127e1da5bb2988180d8900ce836c7/package/dclFrameViewerXE5.res
--------------------------------------------------------------------------------
/package/dclFrameViewerXE6.dpk:
--------------------------------------------------------------------------------
1 | package dclFrameViewerXE6;
2 |
3 | {$R *.res}
4 | {$IFDEF IMPLICITBUILDING This IFDEF should not be used by users}
5 | {$ALIGN 8}
6 | {$ASSERTIONS ON}
7 | {$BOOLEVAL OFF}
8 | {$DEBUGINFO ON}
9 | {$EXTENDEDSYNTAX ON}
10 | {$IMPORTEDDATA ON}
11 | {$IOCHECKS ON}
12 | {$LOCALSYMBOLS ON}
13 | {$LONGSTRINGS ON}
14 | {$OPENSTRINGS ON}
15 | {$OPTIMIZATION OFF}
16 | {$OVERFLOWCHECKS OFF}
17 | {$RANGECHECKS OFF}
18 | {$REFERENCEINFO ON}
19 | {$SAFEDIVIDE OFF}
20 | {$STACKFRAMES ON}
21 | {$TYPEDADDRESS OFF}
22 | {$VARSTRINGCHECKS ON}
23 | {$WRITEABLECONST OFF}
24 | {$MINENUMSIZE 1}
25 | {$IMAGEBASE $400000}
26 | {$DEFINE DEBUG}
27 | {$ENDIF IMPLICITBUILDING}
28 | {$DESCRIPTION 'THtmlViewer, TFrameViewer, and TFrameBrowser'}
29 | {$DESIGNONLY}
30 | {$IMPLICITBUILD ON}
31 |
32 | requires
33 | rtl,
34 | vcl,
35 | designide,
36 | vclimg,
37 | soaprtl,
38 | VclSmp,
39 | FrameViewerXE6;
40 |
41 | contains
42 | FrameViewerReg in '..\source\FrameViewerReg.pas',
43 | HTMLCompEdit in '..\source\HTMLCompEdit.pas';
44 |
45 | end.
46 |
--------------------------------------------------------------------------------
/package/dclFrameViewerXE6.res:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BerndGabriel/HtmlViewer/bd2ffb86d0f127e1da5bb2988180d8900ce836c7/package/dclFrameViewerXE6.res
--------------------------------------------------------------------------------
/package/dclFrameViewerXE7.dpk:
--------------------------------------------------------------------------------
1 | package dclFrameViewerXE7;
2 |
3 | {$R *.res}
4 | {$IFDEF IMPLICITBUILDING This IFDEF should not be used by users}
5 | {$ALIGN 8}
6 | {$ASSERTIONS ON}
7 | {$BOOLEVAL OFF}
8 | {$DEBUGINFO OFF}
9 | {$EXTENDEDSYNTAX ON}
10 | {$IMPORTEDDATA ON}
11 | {$IOCHECKS ON}
12 | {$LOCALSYMBOLS ON}
13 | {$LONGSTRINGS ON}
14 | {$OPENSTRINGS ON}
15 | {$OPTIMIZATION OFF}
16 | {$OVERFLOWCHECKS OFF}
17 | {$RANGECHECKS OFF}
18 | {$REFERENCEINFO ON}
19 | {$SAFEDIVIDE OFF}
20 | {$STACKFRAMES ON}
21 | {$TYPEDADDRESS OFF}
22 | {$VARSTRINGCHECKS ON}
23 | {$WRITEABLECONST OFF}
24 | {$MINENUMSIZE 1}
25 | {$IMAGEBASE $400000}
26 | {$DEFINE DEBUG}
27 | {$ENDIF IMPLICITBUILDING}
28 | {$DESIGNONLY}
29 | {$IMPLICITBUILD ON}
30 |
31 | requires
32 | rtl,
33 | vcl,
34 | designide,
35 | vclimg,
36 | soaprtl,
37 | VclSmp,
38 | FrameViewerXE7;
39 |
40 | contains
41 | FrameViewerReg in '..\source\FrameViewerReg.pas',
42 | HTMLCompEdit in '..\source\HTMLCompEdit.pas';
43 |
44 | end.
45 |
--------------------------------------------------------------------------------
/package/dclFrameViewerXE7.res:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BerndGabriel/HtmlViewer/bd2ffb86d0f127e1da5bb2988180d8900ce836c7/package/dclFrameViewerXE7.res
--------------------------------------------------------------------------------
/package/dclFrameViewerXE8.dpk:
--------------------------------------------------------------------------------
1 | package dclFrameViewerXE8;
2 |
3 | {$R *.res}
4 | {$IFDEF IMPLICITBUILDING This IFDEF should not be used by users}
5 | {$ALIGN 8}
6 | {$ASSERTIONS ON}
7 | {$BOOLEVAL OFF}
8 | {$DEBUGINFO OFF}
9 | {$EXTENDEDSYNTAX ON}
10 | {$IMPORTEDDATA ON}
11 | {$IOCHECKS ON}
12 | {$LOCALSYMBOLS ON}
13 | {$LONGSTRINGS ON}
14 | {$OPENSTRINGS ON}
15 | {$OPTIMIZATION OFF}
16 | {$OVERFLOWCHECKS OFF}
17 | {$RANGECHECKS OFF}
18 | {$REFERENCEINFO ON}
19 | {$SAFEDIVIDE OFF}
20 | {$STACKFRAMES ON}
21 | {$TYPEDADDRESS OFF}
22 | {$VARSTRINGCHECKS ON}
23 | {$WRITEABLECONST OFF}
24 | {$MINENUMSIZE 1}
25 | {$IMAGEBASE $400000}
26 | {$DEFINE DEBUG}
27 | {$ENDIF IMPLICITBUILDING}
28 | {$DESIGNONLY}
29 | {$IMPLICITBUILD ON}
30 |
31 | requires
32 | rtl,
33 | vcl,
34 | designide,
35 | vclimg,
36 | soaprtl,
37 | VclSmp,
38 | FrameViewerXE8;
39 |
40 | contains
41 | FrameViewerReg in '..\source\FrameViewerReg.pas',
42 | HTMLCompEdit in '..\source\HTMLCompEdit.pas';
43 |
44 | end.
45 |
--------------------------------------------------------------------------------
/package/dclFrameViewerXE8.res:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BerndGabriel/HtmlViewer/bd2ffb86d0f127e1da5bb2988180d8900ce836c7/package/dclFrameViewerXE8.res
--------------------------------------------------------------------------------
/package/dclFrameViewerXE9.dpk:
--------------------------------------------------------------------------------
1 | package dclFrameViewerXE9;
2 |
3 | {$R *.res}
4 | {$IFDEF IMPLICITBUILDING This IFDEF should not be used by users}
5 | {$ALIGN 8}
6 | {$ASSERTIONS ON}
7 | {$BOOLEVAL OFF}
8 | {$DEBUGINFO OFF}
9 | {$EXTENDEDSYNTAX ON}
10 | {$IMPORTEDDATA ON}
11 | {$IOCHECKS ON}
12 | {$LOCALSYMBOLS ON}
13 | {$LONGSTRINGS ON}
14 | {$OPENSTRINGS ON}
15 | {$OPTIMIZATION OFF}
16 | {$OVERFLOWCHECKS OFF}
17 | {$RANGECHECKS OFF}
18 | {$REFERENCEINFO ON}
19 | {$SAFEDIVIDE OFF}
20 | {$STACKFRAMES ON}
21 | {$TYPEDADDRESS OFF}
22 | {$VARSTRINGCHECKS ON}
23 | {$WRITEABLECONST OFF}
24 | {$MINENUMSIZE 1}
25 | {$IMAGEBASE $400000}
26 | {$DEFINE DEBUG}
27 | {$ENDIF IMPLICITBUILDING}
28 | {$DESCRIPTION 'THtmlViewer, TFrameViewer, and TFrameBrowser'}
29 | {$DESIGNONLY}
30 | {$IMPLICITBUILD ON}
31 |
32 | requires
33 | rtl,
34 | vcl,
35 | designide,
36 | vclimg,
37 | soaprtl,
38 | VclSmp,
39 | FrameViewerXE9;
40 |
41 | contains
42 | FrameViewerReg in '..\source\FrameViewerReg.pas',
43 | HTMLCompEdit in '..\source\HTMLCompEdit.pas';
44 |
45 | end.
46 |
--------------------------------------------------------------------------------
/package/dclFrameViewerXE9.res:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BerndGabriel/HtmlViewer/bd2ffb86d0f127e1da5bb2988180d8900ce836c7/package/dclFrameViewerXE9.res
--------------------------------------------------------------------------------
/resources/getit/GetIt-Logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BerndGabriel/HtmlViewer/bd2ffb86d0f127e1da5bb2988180d8900ce836c7/resources/getit/GetIt-Logo.png
--------------------------------------------------------------------------------
/resources/getit/Logo.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BerndGabriel/HtmlViewer/bd2ffb86d0f127e1da5bb2988180d8900ce836c7/resources/getit/Logo.jpg
--------------------------------------------------------------------------------
/resources/getit/TabBot.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BerndGabriel/HtmlViewer/bd2ffb86d0f127e1da5bb2988180d8900ce836c7/resources/getit/TabBot.gif
--------------------------------------------------------------------------------
/resources/getit/TabTop.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BerndGabriel/HtmlViewer/bd2ffb86d0f127e1da5bb2988180d8900ce836c7/resources/getit/TabTop.gif
--------------------------------------------------------------------------------
/resources/getit/WaterMark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BerndGabriel/HtmlViewer/bd2ffb86d0f127e1da5bb2988180d8900ce836c7/resources/getit/WaterMark.png
--------------------------------------------------------------------------------
/source/BegaPreviewForm.dfm:
--------------------------------------------------------------------------------
1 | object BegaCustomPrintPreviewForm: TBegaCustomPrintPreviewForm
2 | Left = 431
3 | Top = 144
4 | Caption = 'Print preview'
5 | ClientHeight = 768
6 | ClientWidth = 1008
7 | Color = clBtnFace
8 | Font.Charset = DEFAULT_CHARSET
9 | Font.Color = clWindowText
10 | Font.Height = -11
11 | Font.Name = 'MS Shell Dlg 2'
12 | Font.Style = []
13 | OldCreateOrder = False
14 | Position = poOwnerFormCenter
15 | PixelsPerInch = 96
16 | TextHeight = 13
17 | end
18 |
--------------------------------------------------------------------------------
/source/BegaPreviewForm.lfm:
--------------------------------------------------------------------------------
1 | object BegaCustomPrintPreviewForm: TBegaCustomPrintPreviewForm
2 | Left = 363
3 | Height = 806
4 | Top = 142
5 | Width = 1020
6 | Caption = 'Print preview'
7 | Color = clBtnFace
8 | Font.Color = clWindowText
9 | Font.Height = -11
10 | Font.Name = 'MS Shell Dlg 2'
11 | Position = poOwnerFormCenter
12 | LCLVersion = '2.2.0.4'
13 | end
14 |
--------------------------------------------------------------------------------
/source/BuffConv.pas:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BerndGabriel/HtmlViewer/bd2ffb86d0f127e1da5bb2988180d8900ce836c7/source/BuffConv.pas
--------------------------------------------------------------------------------
/source/BuffConvArrays.pas:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BerndGabriel/HtmlViewer/bd2ffb86d0f127e1da5bb2988180d8900ce836c7/source/BuffConvArrays.pas
--------------------------------------------------------------------------------
/source/GDIPL2A.pas:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BerndGabriel/HtmlViewer/bd2ffb86d0f127e1da5bb2988180d8900ce836c7/source/GDIPL2A.pas
--------------------------------------------------------------------------------
/source/Html32.res:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BerndGabriel/HtmlViewer/bd2ffb86d0f127e1da5bb2988180d8900ce836c7/source/Html32.res
--------------------------------------------------------------------------------
/source/Obj/DelphiZLib.obj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BerndGabriel/HtmlViewer/bd2ffb86d0f127e1da5bb2988180d8900ce836c7/source/Obj/DelphiZLib.obj
--------------------------------------------------------------------------------
/source/Obj/adler32.obj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BerndGabriel/HtmlViewer/bd2ffb86d0f127e1da5bb2988180d8900ce836c7/source/Obj/adler32.obj
--------------------------------------------------------------------------------
/source/Obj/compress.obj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BerndGabriel/HtmlViewer/bd2ffb86d0f127e1da5bb2988180d8900ce836c7/source/Obj/compress.obj
--------------------------------------------------------------------------------
/source/Obj/crc32.obj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BerndGabriel/HtmlViewer/bd2ffb86d0f127e1da5bb2988180d8900ce836c7/source/Obj/crc32.obj
--------------------------------------------------------------------------------
/source/Obj/deflate.obj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BerndGabriel/HtmlViewer/bd2ffb86d0f127e1da5bb2988180d8900ce836c7/source/Obj/deflate.obj
--------------------------------------------------------------------------------
/source/Obj/infback.obj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BerndGabriel/HtmlViewer/bd2ffb86d0f127e1da5bb2988180d8900ce836c7/source/Obj/infback.obj
--------------------------------------------------------------------------------
/source/Obj/inffast.obj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BerndGabriel/HtmlViewer/bd2ffb86d0f127e1da5bb2988180d8900ce836c7/source/Obj/inffast.obj
--------------------------------------------------------------------------------
/source/Obj/inflate.obj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BerndGabriel/HtmlViewer/bd2ffb86d0f127e1da5bb2988180d8900ce836c7/source/Obj/inflate.obj
--------------------------------------------------------------------------------
/source/Obj/inftrees.obj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BerndGabriel/HtmlViewer/bd2ffb86d0f127e1da5bb2988180d8900ce836c7/source/Obj/inftrees.obj
--------------------------------------------------------------------------------
/source/Obj/trees.obj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BerndGabriel/HtmlViewer/bd2ffb86d0f127e1da5bb2988180d8900ce836c7/source/Obj/trees.obj
--------------------------------------------------------------------------------
/source/URLSubs.pas:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BerndGabriel/HtmlViewer/bd2ffb86d0f127e1da5bb2988180d8900ce836c7/source/URLSubs.pas
--------------------------------------------------------------------------------
/source/ZoomAndHandCursor.RES:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/BerndGabriel/HtmlViewer/bd2ffb86d0f127e1da5bb2988180d8900ce836c7/source/ZoomAndHandCursor.RES
--------------------------------------------------------------------------------