├── !~Library ├── AlignEdit │ ├── AlignEdit.dcu │ ├── AlignEdit.pas │ ├── AlignEditPackage.cfg │ ├── AlignEditPackage.dcu │ ├── AlignEditPackage.dof │ ├── AlignEditPackage.dpk │ └── AlignEditPackage.res └── CoolTrayIcon │ ├── CoolTrayIcon.chm │ ├── CoolTrayIcon.dcr │ ├── CoolTrayIcon.dcu │ ├── CoolTrayIcon.pas │ ├── CoolTrayIcon_D5.dpk │ ├── CoolTrayIcon_D6plus.cfg │ ├── CoolTrayIcon_D6plus.dcu │ ├── CoolTrayIcon_D6plus.dof │ ├── CoolTrayIcon_D6plus.dpk │ ├── CoolTrayIcon_D6plus.identcache │ ├── CoolTrayIcon_D6plus.res │ ├── CoolTrayTest.exe │ ├── RegisterTrayIcons.dcu │ ├── RegisterTrayIcons.pas │ ├── SimpleTimer.dcu │ ├── SimpleTimer.pas │ ├── TextTrayIcon.dcr │ ├── TextTrayIcon.dcu │ ├── TextTrayIcon.pas │ ├── convert_cti_projects.txt │ ├── convert_st_projects.txt │ ├── demos │ ├── CoolService │ │ ├── CoolService.dpr │ │ ├── CoolService.res │ │ ├── CoolTrayService.bat │ │ ├── Service.dfm │ │ ├── Service.pas │ │ └── readme.txt │ ├── CoolTrayTest │ │ ├── CoolTrayTest.dpr │ │ ├── CoolTrayTest.res │ │ ├── CtMain.dfm │ │ ├── CtMain.pas │ │ └── TrayIcon.ico │ ├── CustomHint1 │ │ ├── CustomHint.dpr │ │ ├── CustomHint.res │ │ ├── Main.dfm │ │ └── Main.pas │ ├── CustomHint2 │ │ ├── BigHint.dfm │ │ ├── BigHint.pas │ │ ├── BigHintDemo.dpr │ │ ├── BigHintDemo.res │ │ └── images.res │ ├── MinimizeAnimation │ │ ├── Main.dfm │ │ ├── Main.pas │ │ ├── MinimizeAnimation.dpr │ │ ├── MinimizeAnimation.res │ │ ├── TrayAnimation.pas │ │ ├── animation.ico │ │ └── readme.txt │ ├── StartHidden │ │ ├── Main.dfm │ │ ├── Main.pas │ │ ├── StartHidden.dpr │ │ └── StartHidden.res │ ├── TextTrayTest │ │ ├── TextTrayTest.dpr │ │ ├── TextTrayTest.res │ │ ├── TrayText.ico │ │ ├── TtMain.dfm │ │ ├── TtMain.pas │ │ └── bubble.ico │ └── TrayDraw │ │ ├── CtDraw.dfm │ │ ├── CtDraw.pas │ │ ├── TrayDraw.dpr │ │ ├── TrayDraw.ico │ │ └── TrayDraw.res │ ├── docs │ ├── CoolTrayIcon.html │ ├── DEMOS.TXT │ ├── History - CoolTrayIcon.txt │ ├── History - SimpleTimer.txt │ ├── History - TextTrayIcon.txt │ ├── SimpleTimer.html │ └── TextTrayIcon.html │ ├── install.txt │ └── readme.txt ├── Configs.dcu ├── Configs.pas ├── ForAll.dcu ├── ForAll.pas ├── Icon_16_98.ico ├── Icon_16_old.ico ├── Icon_16_xp.ico ├── Icon_full.ico ├── Lang ├── Belarusian.chm ├── Belarusian.lng ├── Bulgarian.lng ├── Chinese (Simplified).chm ├── Chinese (Simplified).lng ├── Dutch.lng ├── English.chm ├── English.lng ├── English │ ├── English.hhc │ ├── English.hhk │ ├── English.hhp │ ├── aboutprogram.htm │ ├── backaddress.htm │ ├── commandlineparams.htm │ ├── createaliases.htm │ ├── distrcontext.htm │ ├── faq.htm │ ├── historycreated.htm │ ├── hotkeys.htm │ ├── runaliases.htm │ ├── samples.htm │ ├── senks.htm │ ├── shareware.htm │ ├── systemperfomance.htm │ └── working.htm ├── Esperanto.lng ├── French.lng ├── German.lng ├── Korean.lng ├── Russian.chm ├── Russian.lng ├── Russian │ ├── Russian.hhc │ ├── Russian.hhk │ ├── Russian.hhp │ ├── aboutprogram.htm │ ├── backaddress.htm │ ├── commandlineparams.htm │ ├── createaliases.htm │ ├── distrcontext.htm │ ├── faq.htm │ ├── historycreated.htm │ ├── hotkeys.htm │ ├── runaliases.htm │ ├── samples.htm │ ├── senks.htm │ ├── shareware.htm │ ├── systemperfomance.htm │ └── working.htm ├── Spanish.lng ├── Turkish.lng ├── Ukrainian.lng └── descript.ion ├── Plugins.dcu ├── Plugins.pas ├── Plugins ├── !~megaold │ ├── tar_amp │ │ ├── Source │ │ │ ├── LangProc.dcu │ │ │ ├── LangProc.pas │ │ │ ├── Media.dcu │ │ │ ├── Media.pas │ │ │ ├── tar_amp.dll │ │ │ ├── tar_amp.dpr │ │ │ └── tar_amp.dsk │ │ ├── tar_amp.dll │ │ ├── tar_amp.ini │ │ ├── tar_amp_en.htm │ │ └── tar_amp_ru.htm │ ├── tar_change │ │ ├── Help_en │ │ │ ├── change_en.gif │ │ │ └── index_en.html │ │ ├── Help_ru │ │ │ ├── change_ru.gif │ │ │ └── index_ru.html │ │ ├── Source │ │ │ ├── ChMain.ddp │ │ │ ├── ChMain.dfm │ │ │ ├── ChMain.pas │ │ │ ├── PicList.pas │ │ │ ├── tar_change.cfg │ │ │ ├── tar_change.dof │ │ │ ├── tar_change.dpr │ │ │ └── tar_change.dsk │ │ ├── tar_change.dll │ │ ├── tar_change.ini │ │ ├── tar_change_en.chm │ │ └── tar_change_ru.chm │ ├── tar_clip │ │ ├── Source │ │ │ ├── CLIP.ICO │ │ │ ├── Common.dcu │ │ │ ├── Common.pas │ │ │ ├── Main.dcu │ │ │ ├── Main.dfm │ │ │ ├── Main.pas │ │ │ ├── OPT.ICO │ │ │ ├── Option.dcu │ │ │ ├── Option.dfm │ │ │ ├── Option.pas │ │ │ ├── Target.bmp │ │ │ ├── WIN.ICO │ │ │ ├── Wins.dcu │ │ │ ├── Wins.dfm │ │ │ ├── Wins.pas │ │ │ ├── tar_clip.cfg │ │ │ ├── tar_clip.dll │ │ │ ├── tar_clip.dof │ │ │ ├── tar_clip.dpr │ │ │ ├── tar_clip.dsk │ │ │ ├── tar_clip.res │ │ │ └── tar_clip.~dsk │ │ ├── tar_clip.dll │ │ ├── tar_clip.ini │ │ └── tar_clip_ru.htm │ ├── tar_clipboard │ │ ├── tar_clipboard.dll │ │ ├── tar_clipboard.dll.pec2bac │ │ ├── tar_clipboard.ini │ │ └── tar_clipboard_ru.txt │ ├── tar_hotkey │ │ ├── Help_en │ │ │ ├── get_en.gif │ │ │ └── index_en.html │ │ ├── Help_ru │ │ │ ├── get_ru.gif │ │ │ └── index_ru.html │ │ ├── HotSrc │ │ │ ├── Hotkey.pas │ │ │ ├── Unit1.ddp │ │ │ ├── Unit1.dfm │ │ │ ├── Unit1.pas │ │ │ ├── tar_hotkey.cfg │ │ │ ├── tar_hotkey.dof │ │ │ ├── tar_hotkey.dpr │ │ │ └── tar_hotkey.dsk │ │ ├── KHook.dll │ │ ├── KHookSrc │ │ │ ├── KHook.asm │ │ │ ├── KHook.bat │ │ │ └── KHook.def │ │ ├── tar_hotkey.dll │ │ ├── tar_hotkey.ini │ │ ├── tar_hotkey_en.chm │ │ └── tar_hotkey_ru.chm │ ├── tar_hotkeys │ │ ├── frmTARHookUnit.dcu │ │ ├── frmTARHookUnit.ddp │ │ ├── frmTARHookUnit.dfm │ │ ├── frmTARHookUnit.pas │ │ ├── frmTARHookUnit.~ddp │ │ ├── frmTARHookUnit.~dfm │ │ ├── frmTARHookUnit.~pas │ │ ├── tar_hotkeys.cfg │ │ ├── tar_hotkeys.dll │ │ ├── tar_hotkeys.dll.pec2bac │ │ ├── tar_hotkeys.dof │ │ ├── tar_hotkeys.dpr │ │ ├── tar_hotkeys.dsk │ │ ├── tar_hotkeys.ini │ │ ├── tar_hotkeys.~dpr │ │ ├── tar_hotkeys.~dsk │ │ ├── tar_hotkeys_en.txt │ │ └── tar_hotkeys_ru.txt │ ├── tar_log │ │ ├── tar_log.dll │ │ ├── tar_log.dpr │ │ ├── tar_log.dsk │ │ └── tar_log.~dsk │ ├── tar_misc │ │ ├── Clear.bmp │ │ ├── Help_en │ │ │ ├── Example_en.htm │ │ │ ├── Example_en.txt │ │ │ ├── Id3_en.gif │ │ │ ├── book2_en.gif │ │ │ ├── book2_en.html │ │ │ ├── book_en.gif │ │ │ ├── book_en.html │ │ │ ├── cutter_en.gif │ │ │ ├── exe2swf_en.gif │ │ │ ├── id3_en.html │ │ │ ├── index_en.html │ │ │ ├── list2_en.gif │ │ │ ├── list_en.gif │ │ │ ├── list_en.html │ │ │ ├── m3u_en.gif │ │ │ ├── param_en.gif │ │ │ ├── patch_en.gif │ │ │ ├── pcopy_en.gif │ │ │ ├── renumber_en.gif │ │ │ ├── tar_misc_en.hhp │ │ │ ├── txthtm_en.gif │ │ │ └── txthtm_en.html │ │ ├── Help_ru │ │ │ ├── Example_ru.htm │ │ │ ├── Example_ru.txt │ │ │ ├── Id3_ru.gif │ │ │ ├── book2_ru.gif │ │ │ ├── book2_ru.html │ │ │ ├── book_ru.gif │ │ │ ├── book_ru.html │ │ │ ├── cutter_ru.gif │ │ │ ├── exe2swf_ru.gif │ │ │ ├── id3_ru.html │ │ │ ├── index_ru.html │ │ │ ├── list2_ru.gif │ │ │ ├── list_ru.gif │ │ │ ├── list_ru.html │ │ │ ├── m3u_ru.gif │ │ │ ├── param_ru.gif │ │ │ ├── patch_ru.gif │ │ │ ├── pcopy_ru.gif │ │ │ ├── renumber_ru.gif │ │ │ ├── tar_misc_ru.hhp │ │ │ ├── txthtm_ru.gif │ │ │ └── txthtm_ru.html │ │ ├── Source │ │ │ ├── Booklet.dcu │ │ │ ├── Booklet.ddp │ │ │ ├── Booklet.dfm │ │ │ ├── Booklet.pas │ │ │ ├── Common.dcu │ │ │ ├── Common.pas │ │ │ ├── Cutter.dcu │ │ │ ├── Cutter.ddp │ │ │ ├── Cutter.dfm │ │ │ ├── Cutter.pas │ │ │ ├── Exe2Swf.dcu │ │ │ ├── Exe2Swf.ddp │ │ │ ├── Exe2Swf.dfm │ │ │ ├── Exe2Swf.pas │ │ │ ├── FMXUtils.dcu │ │ │ ├── FMXUtils.pas │ │ │ ├── Id3Obj.dcu │ │ │ ├── Id3Obj.pas │ │ │ ├── Id3er.dcu │ │ │ ├── Id3er.ddp │ │ │ ├── Id3er.dfm │ │ │ ├── Id3er.pas │ │ │ ├── Lister2.dcu │ │ │ ├── Lister2.ddp │ │ │ ├── Lister2.dfm │ │ │ ├── Lister2.pas │ │ │ ├── M3uf.dcu │ │ │ ├── M3uf.ddp │ │ │ ├── M3uf.dfm │ │ │ ├── M3uf.pas │ │ │ ├── Main.dcu │ │ │ ├── Main.ddp │ │ │ ├── Main.dfm │ │ │ ├── Main.pas │ │ │ ├── Media.dcu │ │ │ ├── Media.pas │ │ │ ├── PCopy.dcu │ │ │ ├── PCopy.ddp │ │ │ ├── PCopy.dfm │ │ │ ├── PCopy.pas │ │ │ ├── Param.dcu │ │ │ ├── Param.ddp │ │ │ ├── Param.dfm │ │ │ ├── Param.pas │ │ │ ├── Patcher.dcu │ │ │ ├── Patcher.ddp │ │ │ ├── Patcher.dfm │ │ │ ├── Patcher.pas │ │ │ ├── Ren.dcu │ │ │ ├── Ren.ddp │ │ │ ├── Ren.dfm │ │ │ ├── Ren.pas │ │ │ ├── Rew.dcu │ │ │ ├── Rew.ddp │ │ │ ├── Rew.dfm │ │ │ ├── Rew.pas │ │ │ ├── Scan.dcu │ │ │ ├── Scan.ddp │ │ │ ├── Scan.dfm │ │ │ ├── Scan.pas │ │ │ ├── TextProc.dcu │ │ │ ├── TextProc.pas │ │ │ ├── Txt2htm.dcu │ │ │ ├── Txt2htm.ddp │ │ │ ├── Txt2htm.dfm │ │ │ ├── Txt2htm.pas │ │ │ ├── tar_misc.cfg │ │ │ ├── tar_misc.dll │ │ │ ├── tar_misc.dof │ │ │ ├── tar_misc.dpr │ │ │ ├── tar_misc.dsk │ │ │ ├── tar_misc.res │ │ │ └── tar_misc.~dsk │ │ ├── tar_misc.dll │ │ ├── tar_misc.ini │ │ ├── tar_misc_en.chm │ │ └── tar_misc_ru.chm │ ├── tar_test │ │ ├── test.cfg │ │ ├── test.dll │ │ ├── test.dof │ │ ├── test.dpr │ │ ├── test.dsk │ │ ├── test.~dpr │ │ └── test.~dsk │ ├── tar_timer │ │ ├── Help_en │ │ │ ├── index_en.html │ │ │ ├── shed_en.gif │ │ │ └── timer_en.gif │ │ ├── Help_ru │ │ │ ├── index_ru.html │ │ │ ├── shed_ru.gif │ │ │ └── timer_ru.gif │ │ ├── Source │ │ │ ├── Common.dcu │ │ │ ├── Common.pas │ │ │ ├── InOut.dcu │ │ │ ├── InOut.pas │ │ │ ├── Main.dcu │ │ │ ├── Main.dfm │ │ │ ├── Main.pas │ │ │ ├── WinCron.dcu │ │ │ ├── WinCron.pas │ │ │ ├── WinTimer.dcu │ │ │ ├── WinTimer.pas │ │ │ ├── tar_timer.cfg │ │ │ ├── tar_timer.dof │ │ │ ├── tar_timer.dpr │ │ │ ├── tar_timer.dsk │ │ │ ├── tar_timer.res │ │ │ └── tar_timer.~dsk │ │ ├── tar_timer.dll │ │ ├── tar_timer.ini │ │ ├── tar_timer_en.chm │ │ └── tar_timer_ru.chm │ ├── tar_tray │ │ ├── tar_tray.dll │ │ ├── tar_tray_hook.dll │ │ └── tar_tray_ru.txt │ ├── tar_upd │ │ ├── UnzDll.dll │ │ ├── tar_upd.dll │ │ ├── tar_upd.exe │ │ ├── tar_upd.ini │ │ └── tar_upd_ru.txt │ └── tarp_convertors │ │ ├── tarp_convertors.dll │ │ ├── tarp_convertors_en.txt │ │ └── tarp_convertors_ru.txt ├── !~old │ ├── tar_clipboard │ │ ├── tar_clipboard.dll │ │ ├── tar_clipboard.dll.pec2bac │ │ ├── tar_clipboard.ini │ │ └── tar_clipboard_ru.txt │ ├── tar_easygo │ │ ├── BaseScripts.dll │ │ ├── NetSearch.dll │ │ ├── Power.dll │ │ ├── TimeSync.dll │ │ ├── Winamp.dll │ │ ├── tar_easygo.cfg │ │ ├── tar_easygo.dll │ │ ├── tar_easygo.dll.pec2bac │ │ ├── tar_easygo.dof │ │ ├── tar_easygo.dpr │ │ ├── tar_easygo.dsk │ │ ├── tar_easygo.~dpr │ │ ├── tar_easygo.~dsk │ │ └── tar_easygo_ru.txt │ ├── tar_hotkeys │ │ ├── frmTARHookUnit.dcu │ │ ├── frmTARHookUnit.ddp │ │ ├── frmTARHookUnit.dfm │ │ ├── frmTARHookUnit.pas │ │ ├── frmTARHookUnit.~ddp │ │ ├── frmTARHookUnit.~dfm │ │ ├── frmTARHookUnit.~pas │ │ ├── tar_hotkeys.cfg │ │ ├── tar_hotkeys.dll │ │ ├── tar_hotkeys.dll.pec2bac │ │ ├── tar_hotkeys.dof │ │ ├── tar_hotkeys.dpr │ │ ├── tar_hotkeys.dsk │ │ ├── tar_hotkeys.ini │ │ ├── tar_hotkeys.~dpr │ │ ├── tar_hotkeys.~dsk │ │ ├── tar_hotkeys_en.txt │ │ └── tar_hotkeys_ru.txt │ ├── tar_math │ │ ├── FuncParser.dcu │ │ ├── FuncParser.pas │ │ ├── FuncParser.~pas │ │ ├── hob.dcu │ │ ├── hob.pas │ │ ├── tar_math.cfg │ │ ├── tar_math.dll │ │ ├── tar_math.dll.pec2bac │ │ ├── tar_math.dof │ │ ├── tar_math.dpr │ │ ├── tar_math.dsk │ │ ├── tar_math.ini │ │ ├── tar_math.~dpr │ │ ├── tar_math.~dsk │ │ ├── tar_math_en.txt │ │ └── tar_math_ru.txt │ ├── tar_mydll │ │ ├── tar_mydll.cfg │ │ ├── tar_mydll.dll │ │ ├── tar_mydll.dll.pec2bac │ │ ├── tar_mydll.dof │ │ ├── tar_mydll.dpr │ │ ├── tar_mydll.dsk │ │ ├── tar_mydll.~dpr │ │ └── tar_mydll.~dsk │ ├── tar_mydll_c │ │ ├── tar_mydll.cpp │ │ ├── tar_mydll.dll │ │ └── tar_mydll.h │ ├── tar_proc │ │ ├── tar_proc.cfg │ │ ├── tar_proc.dll │ │ ├── tar_proc.dof │ │ ├── tar_proc.dpr │ │ ├── tar_proc.dsk │ │ ├── tar_proc.~dpr │ │ ├── tar_proc.~dsk │ │ └── tar_proc_ru.txt │ ├── tar_system │ │ ├── cdeject.dcu │ │ ├── cdeject.pas │ │ ├── cdeject.~pas │ │ ├── tar_system.cfg │ │ ├── tar_system.dll │ │ ├── tar_system.dof │ │ ├── tar_system.dpr │ │ ├── tar_system.dsk │ │ ├── tar_system.~dpr │ │ ├── tar_system.~dsk │ │ ├── tar_system_en.txt │ │ ├── tar_system_ru.txt │ │ └── Как получить все dial-up соединения.txt │ ├── tar_test │ │ ├── test.cfg │ │ ├── test.dll │ │ ├── test.dof │ │ ├── test.dpr │ │ ├── test.dsk │ │ ├── test.~dpr │ │ └── test.~dsk │ ├── tar_timer │ │ ├── Common.pas │ │ ├── FMXUTILS.PAS │ │ ├── FTimer.dfm │ │ ├── FTimer.pas │ │ ├── Tar_Timer.dll │ │ ├── Tar_timer_en.txt │ │ ├── Tar_timer_ru.txt │ │ ├── Timer.dof │ │ └── Timer.dpr │ ├── tar_tray │ │ ├── tar_tray.dll │ │ ├── tar_tray_hook.dll │ │ └── tar_tray_ru.txt │ ├── tar_upd │ │ ├── UnzDll.dll │ │ ├── tar_upd.dll │ │ ├── tar_upd.exe │ │ ├── tar_upd.ini │ │ └── tar_upd_ru.txt │ ├── tar_urlcompleter │ │ ├── domains.txt │ │ ├── tar_urlcompleter.cfg │ │ ├── tar_urlcompleter.dll │ │ ├── tar_urlcompleter.dll.pec2bac │ │ ├── tar_urlcompleter.dof │ │ ├── tar_urlcompleter.dpr │ │ ├── tar_urlcompleter.dsk │ │ ├── tar_urlcompleter.~dpr │ │ ├── tar_urlcompleter.~dsk │ │ └── tar_urlcompleter_ru.txt │ ├── tar_winamp │ │ ├── tar_winamp.dll │ │ ├── tar_winamp.dpr │ │ ├── tar_winamp.dsk │ │ ├── tar_winamp.~dsk │ │ └── tar_winamp_ru.txt │ └── tarp_convertors │ │ ├── tarp_convertors.dll │ │ ├── tarp_convertors_en.txt │ │ └── tarp_convertors_ru.txt ├── sample.zip ├── tar_amp │ ├── LangProc.dcu │ ├── LangProc.pas │ ├── Media.dcu │ ├── Media.pas │ ├── tar_amp.cfg │ ├── tar_amp.dll │ ├── tar_amp.dof │ ├── tar_amp.dpr │ ├── tar_amp.dsk │ ├── tar_amp.ini │ ├── tar_amp.res │ ├── tar_amp.~dpr │ ├── tar_amp.~dsk │ ├── tar_amp_en.htm │ └── tar_amp_ru.htm ├── tar_clip │ ├── CLIP.ICO │ ├── Common.dcu │ ├── Common.pas │ ├── Main.dcu │ ├── Main.dfm │ ├── Main.pas │ ├── OPT.ICO │ ├── Option.dcu │ ├── Option.dfm │ ├── Option.pas │ ├── Target.bmp │ ├── WIN.ICO │ ├── Wins.dcu │ ├── Wins.dfm │ ├── Wins.pas │ ├── tar_clip.cfg │ ├── tar_clip.dll │ ├── tar_clip.dof │ ├── tar_clip.dpr │ ├── tar_clip.dsk │ ├── tar_clip.ini │ ├── tar_clip.res │ └── tar_clip_ru.htm ├── tar_easygo │ ├── BaseScripts.dll │ ├── NetSearch.dll │ ├── Power.dll │ ├── TimeSync.dll │ ├── Winamp.dll │ ├── tar_easygo.cfg │ ├── tar_easygo.dll │ ├── tar_easygo.dll.pec2bac │ ├── tar_easygo.dof │ ├── tar_easygo.dpr │ ├── tar_easygo.dsk │ ├── tar_easygo.~dpr │ ├── tar_easygo.~dsk │ └── tar_easygo_ru.txt ├── tar_math │ ├── FuncParser.dcu │ ├── FuncParser.pas │ ├── FuncParser.~pas │ ├── hob.dcu │ ├── hob.pas │ ├── tar_math.cfg │ ├── tar_math.dll │ ├── tar_math.dll.pec2bac │ ├── tar_math.dof │ ├── tar_math.dpr │ ├── tar_math.dsk │ ├── tar_math.ini │ ├── tar_math.~dpr │ ├── tar_math.~dsk │ ├── tar_math_en.txt │ └── tar_math_ru.txt ├── tar_mydll │ ├── tar_mydll.cfg │ ├── tar_mydll.dll │ ├── tar_mydll.dll.pec2bac │ ├── tar_mydll.dof │ ├── tar_mydll.dpr │ ├── tar_mydll.dsk │ ├── tar_mydll.~dpr │ └── tar_mydll.~dsk ├── tar_mydll_c │ ├── tar_mydll.cpp │ ├── tar_mydll.dll │ └── tar_mydll.h ├── tar_system │ ├── cdeject.dcu │ ├── cdeject.pas │ ├── cdeject.~pas │ ├── tar_system.cfg │ ├── tar_system.dll │ ├── tar_system.dof │ ├── tar_system.dpr │ ├── tar_system.dsk │ ├── tar_system.~dpr │ ├── tar_system.~dsk │ ├── tar_system_en.txt │ ├── tar_system_ru.txt │ └── Как получить все dial-up соединения.txt └── tar_urlcompleter │ ├── domains.txt │ ├── tar_urlcompleter.cfg │ ├── tar_urlcompleter.dll │ ├── tar_urlcompleter.dll.pec2bac │ ├── tar_urlcompleter.dof │ ├── tar_urlcompleter.dpr │ ├── tar_urlcompleter.dsk │ ├── tar_urlcompleter.~dpr │ ├── tar_urlcompleter.~dsk │ └── tar_urlcompleter_ru.txt ├── README.md ├── Settings.dcu ├── Settings.pas ├── Sounds ├── 01execinternal.wav ├── 02execalias.wav ├── 03execsysalias.wav ├── 04execurl.wav ├── 05execemail.wav ├── 06execfolder.wav ├── 07execfile.wav ├── 08execplugin.wav └── 09exeallother.wav ├── Static.dcu ├── Static.pas ├── TypeAndRun.cfg ├── TypeAndRun.dof ├── TypeAndRun.dpr ├── TypeAndRun.dsk ├── TypeAndRun.exe ├── TypeAndRun.res ├── Wishes.txt ├── XPTheme.res ├── about.bmp ├── about_1.bmp ├── about_1_low.bmp ├── about_2.bmp ├── about_2_low.bmp ├── about_3.bmp ├── about_3_low.bmp ├── frmAboutUnit.dcu ├── frmAboutUnit.ddp ├── frmAboutUnit.dfm ├── frmAboutUnit.pas ├── frmConsoleUnit.dcu ├── frmConsoleUnit.ddp ├── frmConsoleUnit.dfm ├── frmConsoleUnit.pas ├── frmHintUnit.dcu ├── frmHintUnit.ddp ├── frmHintUnit.dfm ├── frmHintUnit.pas ├── frmSettingsUnit.dcu ├── frmSettingsUnit.ddp ├── frmSettingsUnit.dfm ├── frmSettingsUnit.pas ├── frmTypeDownDropUnit.dcu ├── frmTypeDownDropUnit.ddp ├── frmTypeDownDropUnit.dfm └── frmTypeDownDropUnit.pas /!~Library/AlignEdit/AlignEdit.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/!~Library/AlignEdit/AlignEdit.dcu -------------------------------------------------------------------------------- /!~Library/AlignEdit/AlignEdit.pas: -------------------------------------------------------------------------------- 1 | unit AlignEdit; 2 | 3 | interface 4 | 5 | uses 6 | Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, 7 | StdCtrls; 8 | 9 | type 10 | 11 | TAlign = (eaLeft, eaCenter, eaRight); 12 | 13 | TAlignEdit = class(TEdit) 14 | private 15 | { Private-Deklarationen } 16 | FAlign: TAlign; 17 | procedure SetAlign(const Value: TAlign); 18 | protected 19 | { Protected-Deklarationen } 20 | procedure CreateParams(var Params: TCreateParams); override; 21 | public 22 | { Public-Deklarationen } 23 | constructor Create(AOwner: TComponent); override; 24 | published 25 | { Published-Deklarationen } 26 | property Alignment: TAlign read FAlign write SetAlign default eaLeft; 27 | end; 28 | 29 | procedure Register; 30 | 31 | implementation 32 | 33 | constructor TAlignEdit.Create(Aowner: TComponent); 34 | begin 35 | inherited Create(AOwner); 36 | FAlign := eaLeft; 37 | end; 38 | 39 | procedure TAlignEdit.SetAlign(const Value: TAlign); 40 | begin 41 | if FAlign <> Value then 42 | begin 43 | FAlign := Value; 44 | RecreateWnd; 45 | end; 46 | end; 47 | 48 | procedure TAlignEdit.CreateParams(var Params: TCreateParams); 49 | begin 50 | inherited; 51 | case FAlign of 52 | eaLeft: Params.Style := Params.Style or ES_LEFT; 53 | eaCenter: Params.Style := Params.Style or ES_CENTER; 54 | eaRight: Params.Style := Params.Style or ES_RIGHT; 55 | end; 56 | end; 57 | 58 | procedure Register; 59 | begin 60 | RegisterComponents('Standard', [TAlignEdit]); 61 | end; 62 | 63 | end. -------------------------------------------------------------------------------- /!~Library/AlignEdit/AlignEditPackage.cfg: -------------------------------------------------------------------------------- 1 | -$A8 2 | -$B- 3 | -$C+ 4 | -$D+ 5 | -$E- 6 | -$F- 7 | -$G+ 8 | -$H+ 9 | -$I+ 10 | -$J- 11 | -$K- 12 | -$L+ 13 | -$M- 14 | -$N+ 15 | -$O+ 16 | -$P+ 17 | -$Q- 18 | -$R- 19 | -$S- 20 | -$T- 21 | -$U- 22 | -$V+ 23 | -$W- 24 | -$X+ 25 | -$YD 26 | -$Z1 27 | -cg 28 | -AWinTypes=Windows;WinProcs=Windows;DbiTypes=BDE;DbiProcs=BDE;DbiErrs=BDE; 29 | -H+ 30 | -W+ 31 | -M 32 | -$M16384,1048576 33 | -K$00400000 34 | -LE"c:\program files\borland\delphi7\Projects\Bpl" 35 | -LN"c:\program files\borland\delphi7\Projects\Bpl" 36 | -Z 37 | -w-UNSAFE_TYPE 38 | -w-UNSAFE_CODE 39 | -w-UNSAFE_CAST 40 | -------------------------------------------------------------------------------- /!~Library/AlignEdit/AlignEditPackage.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/!~Library/AlignEdit/AlignEditPackage.dcu -------------------------------------------------------------------------------- /!~Library/AlignEdit/AlignEditPackage.dpk: -------------------------------------------------------------------------------- 1 | package AlignEditPackage; 2 | 3 | {$R *.res} 4 | {$ALIGN 8} 5 | {$ASSERTIONS ON} 6 | {$BOOLEVAL OFF} 7 | {$DEBUGINFO ON} 8 | {$EXTENDEDSYNTAX ON} 9 | {$IMPORTEDDATA ON} 10 | {$IOCHECKS ON} 11 | {$LOCALSYMBOLS ON} 12 | {$LONGSTRINGS ON} 13 | {$OPENSTRINGS ON} 14 | {$OPTIMIZATION ON} 15 | {$OVERFLOWCHECKS OFF} 16 | {$RANGECHECKS OFF} 17 | {$REFERENCEINFO ON} 18 | {$SAFEDIVIDE OFF} 19 | {$STACKFRAMES OFF} 20 | {$TYPEDADDRESS OFF} 21 | {$VARSTRINGCHECKS ON} 22 | {$WRITEABLECONST OFF} 23 | {$MINENUMSIZE 1} 24 | {$IMAGEBASE $400000} 25 | {$IMPLICITBUILD OFF} 26 | 27 | requires 28 | rtl, 29 | vcl; 30 | 31 | contains 32 | AlignEdit in 'AlignEdit.pas'; 33 | 34 | end. 35 | -------------------------------------------------------------------------------- /!~Library/AlignEdit/AlignEditPackage.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/!~Library/AlignEdit/AlignEditPackage.res -------------------------------------------------------------------------------- /!~Library/CoolTrayIcon/CoolTrayIcon.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/!~Library/CoolTrayIcon/CoolTrayIcon.chm -------------------------------------------------------------------------------- /!~Library/CoolTrayIcon/CoolTrayIcon.dcr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/!~Library/CoolTrayIcon/CoolTrayIcon.dcr -------------------------------------------------------------------------------- /!~Library/CoolTrayIcon/CoolTrayIcon.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/!~Library/CoolTrayIcon/CoolTrayIcon.dcu -------------------------------------------------------------------------------- /!~Library/CoolTrayIcon/CoolTrayIcon_D5.dpk: -------------------------------------------------------------------------------- 1 | package CoolTrayIcon_D5; 2 | 3 | {$R *.RES} 4 | {$R 'CoolTrayIcon.dcr'} 5 | {$R 'TextTrayIcon.dcr'} 6 | {$ALIGN ON} 7 | {$ASSERTIONS ON} 8 | {$BOOLEVAL OFF} 9 | {$DEBUGINFO ON} 10 | {$EXTENDEDSYNTAX ON} 11 | {$IMPORTEDDATA ON} 12 | {$IOCHECKS ON} 13 | {$LOCALSYMBOLS ON} 14 | {$LONGSTRINGS ON} 15 | {$OPENSTRINGS ON} 16 | {$OPTIMIZATION ON} 17 | {$OVERFLOWCHECKS OFF} 18 | {$RANGECHECKS OFF} 19 | {$REFERENCEINFO ON} 20 | {$SAFEDIVIDE OFF} 21 | {$STACKFRAMES OFF} 22 | {$TYPEDADDRESS OFF} 23 | {$VARSTRINGCHECKS ON} 24 | {$WRITEABLECONST OFF} 25 | {$MINENUMSIZE 1} 26 | {$IMAGEBASE $400000} 27 | {$DESCRIPTION 'CoolTrayIcon and Friends'} 28 | {$IMPLICITBUILD OFF} 29 | 30 | requires 31 | VCL50; 32 | 33 | contains 34 | SimpleTimer in 'SimpleTimer.pas', 35 | TextTrayIcon in 'TextTrayIcon.pas', 36 | CoolTrayIcon in 'CoolTrayIcon.pas', 37 | RegisterTrayIcons in 'RegisterTrayIcons.pas'; 38 | 39 | end. 40 | 41 | -------------------------------------------------------------------------------- /!~Library/CoolTrayIcon/CoolTrayIcon_D6plus.cfg: -------------------------------------------------------------------------------- 1 | -$A8 2 | -$B- 3 | -$C+ 4 | -$D+ 5 | -$E- 6 | -$F- 7 | -$G+ 8 | -$H+ 9 | -$I+ 10 | -$J- 11 | -$K- 12 | -$L+ 13 | -$M- 14 | -$N+ 15 | -$O+ 16 | -$P+ 17 | -$Q- 18 | -$R- 19 | -$S- 20 | -$T- 21 | -$U- 22 | -$V+ 23 | -$W- 24 | -$X+ 25 | -$YD 26 | -$Z1 27 | -cg 28 | -AWinTypes=Windows;WinProcs=Windows;DbiTypes=BDE;DbiProcs=BDE;DbiErrs=BDE; 29 | -H+ 30 | -W+ 31 | -M 32 | -$M16384,1048576 33 | -K$00400000 34 | -LE"c:\program files\borland\delphi7\Projects\Bpl" 35 | -LN"c:\program files\borland\delphi7\Projects\Bpl" 36 | -Z 37 | -w-UNSAFE_TYPE 38 | -w-UNSAFE_CODE 39 | -w-UNSAFE_CAST 40 | -------------------------------------------------------------------------------- /!~Library/CoolTrayIcon/CoolTrayIcon_D6plus.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/!~Library/CoolTrayIcon/CoolTrayIcon_D6plus.dcu -------------------------------------------------------------------------------- /!~Library/CoolTrayIcon/CoolTrayIcon_D6plus.dpk: -------------------------------------------------------------------------------- 1 | package CoolTrayIcon_D6plus; 2 | 3 | {$R *.res} 4 | {$R 'CoolTrayIcon.dcr'} 5 | {$R 'TextTrayIcon.dcr'} 6 | {$ALIGN 8} 7 | {$ASSERTIONS ON} 8 | {$BOOLEVAL OFF} 9 | {$DEBUGINFO ON} 10 | {$EXTENDEDSYNTAX ON} 11 | {$IMPORTEDDATA ON} 12 | {$IOCHECKS ON} 13 | {$LOCALSYMBOLS ON} 14 | {$LONGSTRINGS ON} 15 | {$OPENSTRINGS ON} 16 | {$OPTIMIZATION ON} 17 | {$OVERFLOWCHECKS OFF} 18 | {$RANGECHECKS OFF} 19 | {$REFERENCEINFO ON} 20 | {$SAFEDIVIDE OFF} 21 | {$STACKFRAMES OFF} 22 | {$TYPEDADDRESS OFF} 23 | {$VARSTRINGCHECKS ON} 24 | {$WRITEABLECONST OFF} 25 | {$MINENUMSIZE 1} 26 | {$IMAGEBASE $400000} 27 | {$DESCRIPTION 'CoolTrayIcon and Friends'} 28 | {$IMPLICITBUILD OFF} 29 | 30 | requires 31 | rtl, 32 | vcl; 33 | 34 | contains 35 | SimpleTimer in 'SimpleTimer.pas', 36 | TextTrayIcon in 'TextTrayIcon.pas', 37 | CoolTrayIcon in 'CoolTrayIcon.pas', 38 | RegisterTrayIcons in 'RegisterTrayIcons.pas'; 39 | 40 | end. 41 | 42 | -------------------------------------------------------------------------------- /!~Library/CoolTrayIcon/CoolTrayIcon_D6plus.identcache: -------------------------------------------------------------------------------- 1 | 5D:\Doc\Delphi\!~Library\CoolTrayIcon\TextTrayIcon.pas:D:\Doc\Delphi\!~Library\CoolTrayIcon\RegisterTrayIcons.pas5D:\Doc\Delphi\!~Library\CoolTrayIcon\CoolTrayIcon.pas4D:\Doc\Delphi\!~Library\CoolTrayIcon\SimpleTimer.pas -------------------------------------------------------------------------------- /!~Library/CoolTrayIcon/CoolTrayIcon_D6plus.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/!~Library/CoolTrayIcon/CoolTrayIcon_D6plus.res -------------------------------------------------------------------------------- /!~Library/CoolTrayIcon/CoolTrayTest.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/!~Library/CoolTrayIcon/CoolTrayTest.exe -------------------------------------------------------------------------------- /!~Library/CoolTrayIcon/RegisterTrayIcons.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/!~Library/CoolTrayIcon/RegisterTrayIcons.dcu -------------------------------------------------------------------------------- /!~Library/CoolTrayIcon/RegisterTrayIcons.pas: -------------------------------------------------------------------------------- 1 | {*****************************************************************} 2 | { The CoolTrayIcon and TextTrayIcon components are freeware. } 3 | { } 4 | { Feel free to use and improve them. I would be pleased to hear } 5 | { what you think. } 6 | { } 7 | { Troels Jakobsen - delphiuser@get2net.dk } 8 | { Copyright (c) 2002 } 9 | { } 10 | { This unit by Jouni Airaksinen - mintus@codefield.com } 11 | {*****************************************************************} 12 | 13 | unit RegisterTrayIcons; 14 | 15 | interface 16 | 17 | procedure Register; 18 | 19 | implementation 20 | 21 | uses 22 | Classes, CoolTrayIcon, TextTrayIcon; 23 | 24 | procedure Register; 25 | begin 26 | RegisterComponents('Tray Icons', [TCoolTrayIcon, TTextTrayIcon]); 27 | end; 28 | 29 | end. 30 | 31 | -------------------------------------------------------------------------------- /!~Library/CoolTrayIcon/SimpleTimer.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/!~Library/CoolTrayIcon/SimpleTimer.dcu -------------------------------------------------------------------------------- /!~Library/CoolTrayIcon/TextTrayIcon.dcr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/!~Library/CoolTrayIcon/TextTrayIcon.dcr -------------------------------------------------------------------------------- /!~Library/CoolTrayIcon/TextTrayIcon.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/!~Library/CoolTrayIcon/TextTrayIcon.dcu -------------------------------------------------------------------------------- /!~Library/CoolTrayIcon/convert_cti_projects.txt: -------------------------------------------------------------------------------- 1 | A few things have changed in ver. 4.0.0 of CoolTrayIcon which means you may 2 | have to slightly adjust your previous projects that use CooltrayIcon or 3 | TextTrayIcon. 4 | 5 | 6 | 1) The IconVisible property is now default false in stead of true. 7 | 8 | The reason for this is that the tray icon would apparently show itself, 9 | regardless of the property being false, if CoolTrayIcon was used in a 10 | DLL file. 11 | 12 | This change means that you have to reset the property to true in your old 13 | projects, in case the value was originally true. 14 | 15 | 16 | 2) The StartMinimized property no longer exists. It has been replaced by the 17 | OnStartup event. This event has a ShowMainForm parameter, which you set to 18 | false if you don't want the main form to show when your app. starts. 19 | 20 | The reason for this change is that StartMinimized only worked at design-time, 21 | meaning you could not determine at run-time if you wanted to show the form 22 | or not. With the change it is now possible to have a user option for this 23 | in your app. 24 | 25 | See the StartHidden demo for an example. 26 | 27 | -------------------------------------------------------------------------------- /!~Library/CoolTrayIcon/convert_st_projects.txt: -------------------------------------------------------------------------------- 1 | Version 2.0.0 of SimpleTimer is incompatible with older versions, which 2 | means you will have to adjust your previous projects that use SimpleTimer. 3 | 4 | 5 | 1) The Start and Stop methods have been replaced with the Enabled and Interval 6 | properties, to make SimpleTimer more interchangeable with TTimer. 7 | 8 | To start the timer you will need to first set the Interval, then set Enabled 9 | to True (just like TTimer). Also, you must specify an OnTimer event method 10 | (see below). 11 | 12 | 13 | 2) The callback method you used for receiving notifications from a SimpleTimer 14 | object has been replaced by an OnTimer event. This both makes SimpleTimer 15 | easier to use and makes it look more like TTimer. 16 | 17 | -------------------------------------------------------------------------------- /!~Library/CoolTrayIcon/demos/CoolService/CoolService.dpr: -------------------------------------------------------------------------------- 1 | program CoolService; 2 | 3 | uses 4 | SvcMgr, 5 | Service in 'Service.pas' {CoolTrayService: TService}; 6 | 7 | {$R *.RES} 8 | 9 | begin 10 | Application.Initialize; 11 | Application.CreateForm(TCoolTrayService, CoolTrayService); 12 | Application.Run; 13 | end. 14 | -------------------------------------------------------------------------------- /!~Library/CoolTrayIcon/demos/CoolService/CoolService.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/!~Library/CoolTrayIcon/demos/CoolService/CoolService.res -------------------------------------------------------------------------------- /!~Library/CoolTrayIcon/demos/CoolService/CoolTrayService.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem This batch file (re)installs the CoolTrayService, then starts it. 4 | 5 | rem Change this path: 6 | set SERVICEPATH=C:\Troels\Delphi\TrayIconTest\CoolService 7 | 8 | %SERVICEPATH%\CoolService.exe /uninstall /silent 9 | %SERVICEPATH%\CoolService.exe /install /silent 10 | net start CoolTrayService 11 | 12 | rem Start the Service Manager 13 | rem %SystemRoot%\system32\services.msc /s 14 | 15 | -------------------------------------------------------------------------------- /!~Library/CoolTrayIcon/demos/CoolService/readme.txt: -------------------------------------------------------------------------------- 1 | CoolService demo 2 | ---------------- 3 | 4 | Use CoolTrayService.bat to register and start the service. 5 | You need to change the path of SERVICEPATH to this folder. 6 | 7 | -------------------------------------------------------------------------------- /!~Library/CoolTrayIcon/demos/CoolTrayTest/CoolTrayTest.dpr: -------------------------------------------------------------------------------- 1 | program CoolTrayTest; 2 | 3 | uses 4 | Forms, 5 | WinProcs, 6 | CtMain in 'CtMain.pas' {MainForm}; 7 | 8 | {$R *.RES} 9 | 10 | begin 11 | Application.Initialize; 12 | Application.Title := 'CoolTrayIcon Demo'; 13 | Application.CreateForm(TMainForm, MainForm); 14 | Application.Run; 15 | end. 16 | -------------------------------------------------------------------------------- /!~Library/CoolTrayIcon/demos/CoolTrayTest/CoolTrayTest.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/!~Library/CoolTrayIcon/demos/CoolTrayTest/CoolTrayTest.res -------------------------------------------------------------------------------- /!~Library/CoolTrayIcon/demos/CoolTrayTest/CtMain.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/!~Library/CoolTrayIcon/demos/CoolTrayTest/CtMain.dfm -------------------------------------------------------------------------------- /!~Library/CoolTrayIcon/demos/CoolTrayTest/TrayIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/!~Library/CoolTrayIcon/demos/CoolTrayTest/TrayIcon.ico -------------------------------------------------------------------------------- /!~Library/CoolTrayIcon/demos/CustomHint1/CustomHint.dpr: -------------------------------------------------------------------------------- 1 | program CustomHint; 2 | 3 | uses 4 | Forms, 5 | Main in 'Main.pas' {Form1}; 6 | 7 | {$R *.RES} 8 | 9 | begin 10 | Application.Initialize; 11 | Application.Title := 'Custom Tooltip'; 12 | Application.CreateForm(TForm1, Form1); 13 | Application.Run; 14 | end. 15 | 16 | -------------------------------------------------------------------------------- /!~Library/CoolTrayIcon/demos/CustomHint1/CustomHint.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/!~Library/CoolTrayIcon/demos/CustomHint1/CustomHint.res -------------------------------------------------------------------------------- /!~Library/CoolTrayIcon/demos/CustomHint2/BigHintDemo.dpr: -------------------------------------------------------------------------------- 1 | program BigHintDemo; 2 | 3 | uses 4 | Forms, 5 | BigHint in 'BigHint.pas' {Form1}; 6 | 7 | {$R *.res} 8 | 9 | begin 10 | Application.Initialize; 11 | Application.CreateForm(TForm1, Form1); 12 | Application.Run; 13 | end. 14 | -------------------------------------------------------------------------------- /!~Library/CoolTrayIcon/demos/CustomHint2/BigHintDemo.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/!~Library/CoolTrayIcon/demos/CustomHint2/BigHintDemo.res -------------------------------------------------------------------------------- /!~Library/CoolTrayIcon/demos/CustomHint2/images.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/!~Library/CoolTrayIcon/demos/CustomHint2/images.res -------------------------------------------------------------------------------- /!~Library/CoolTrayIcon/demos/MinimizeAnimation/Main.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/!~Library/CoolTrayIcon/demos/MinimizeAnimation/Main.dfm -------------------------------------------------------------------------------- /!~Library/CoolTrayIcon/demos/MinimizeAnimation/MinimizeAnimation.dpr: -------------------------------------------------------------------------------- 1 | program MinimizeAnimation; 2 | 3 | uses 4 | Forms, 5 | Main in 'Main.pas' {MainForm}, 6 | TrayAnimation in 'TrayAnimation.pas'; 7 | 8 | {$R *.res} 9 | 10 | begin 11 | Application.Initialize; 12 | Application.Title := 'Animation effects'; 13 | Application.CreateForm(TMainForm, MainForm); 14 | Application.Run; 15 | end. 16 | -------------------------------------------------------------------------------- /!~Library/CoolTrayIcon/demos/MinimizeAnimation/MinimizeAnimation.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/!~Library/CoolTrayIcon/demos/MinimizeAnimation/MinimizeAnimation.res -------------------------------------------------------------------------------- /!~Library/CoolTrayIcon/demos/MinimizeAnimation/animation.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/!~Library/CoolTrayIcon/demos/MinimizeAnimation/animation.ico -------------------------------------------------------------------------------- /!~Library/CoolTrayIcon/demos/MinimizeAnimation/readme.txt: -------------------------------------------------------------------------------- 1 | MinimizeAnimation demo 2 | ---------------------- 3 | 4 | This demo demonstrates the use of CoolTrayIcon's OnMinimizeToTray event, 5 | using animation effects. 6 | 7 | The effects are provided as a proof of concept, and I'm well aware some of them 8 | (like the "Implode outline" effect) have bugs. 9 | 10 | If you find a way to improve the effects or even develop new ones, send your 11 | code to me, and I'll include it in future versions of CoolTrayIcon. 12 | 13 | If you feel like including similar animation effects in your application, 14 | remember the simple guideline for good design: Less is more. Animation effects 15 | are most often useless, and some people tend to get annoyed at them in the 16 | long run. Use animation and sound sparingly. Windows is bad enough as it is. 17 | 18 | -------------------------------------------------------------------------------- /!~Library/CoolTrayIcon/demos/StartHidden/Main.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/!~Library/CoolTrayIcon/demos/StartHidden/Main.dfm -------------------------------------------------------------------------------- /!~Library/CoolTrayIcon/demos/StartHidden/StartHidden.dpr: -------------------------------------------------------------------------------- 1 | program StartHidden; 2 | 3 | uses 4 | Forms, 5 | Main in 'Main.pas' {MainForm}; 6 | 7 | {$R *.res} 8 | 9 | begin 10 | Application.Initialize; 11 | Application.Title := 'Start Hidden?'; 12 | Application.CreateForm(TMainForm, MainForm); 13 | Application.Run; 14 | end. 15 | -------------------------------------------------------------------------------- /!~Library/CoolTrayIcon/demos/StartHidden/StartHidden.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/!~Library/CoolTrayIcon/demos/StartHidden/StartHidden.res -------------------------------------------------------------------------------- /!~Library/CoolTrayIcon/demos/TextTrayTest/TextTrayTest.dpr: -------------------------------------------------------------------------------- 1 | program TextTrayTest; 2 | 3 | uses 4 | Forms, 5 | WinProcs, 6 | TtMain in 'TtMain.pas' {MainForm}; 7 | 8 | {$R *.RES} 9 | 10 | begin 11 | Application.Initialize; 12 | Application.Title := 'TextTrayIcon Demo'; 13 | Application.CreateForm(TMainForm, MainForm); 14 | Application.Run; 15 | end. 16 | -------------------------------------------------------------------------------- /!~Library/CoolTrayIcon/demos/TextTrayTest/TextTrayTest.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/!~Library/CoolTrayIcon/demos/TextTrayTest/TextTrayTest.res -------------------------------------------------------------------------------- /!~Library/CoolTrayIcon/demos/TextTrayTest/TrayText.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/!~Library/CoolTrayIcon/demos/TextTrayTest/TrayText.ico -------------------------------------------------------------------------------- /!~Library/CoolTrayIcon/demos/TextTrayTest/TtMain.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/!~Library/CoolTrayIcon/demos/TextTrayTest/TtMain.dfm -------------------------------------------------------------------------------- /!~Library/CoolTrayIcon/demos/TextTrayTest/bubble.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/!~Library/CoolTrayIcon/demos/TextTrayTest/bubble.ico -------------------------------------------------------------------------------- /!~Library/CoolTrayIcon/demos/TrayDraw/TrayDraw.dpr: -------------------------------------------------------------------------------- 1 | program TrayDraw; 2 | 3 | uses 4 | Forms, 5 | CtDraw in 'CtDraw.pas' {DrawForm}; 6 | 7 | {$R *.RES} 8 | 9 | begin 10 | Application.Initialize; 11 | Application.Title := 'CoolTrayIcon Drawing Demo'; 12 | Application.CreateForm(TDrawForm, DrawForm); 13 | Application.Run; 14 | end. 15 | -------------------------------------------------------------------------------- /!~Library/CoolTrayIcon/demos/TrayDraw/TrayDraw.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/!~Library/CoolTrayIcon/demos/TrayDraw/TrayDraw.ico -------------------------------------------------------------------------------- /!~Library/CoolTrayIcon/demos/TrayDraw/TrayDraw.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/!~Library/CoolTrayIcon/demos/TrayDraw/TrayDraw.res -------------------------------------------------------------------------------- /!~Library/CoolTrayIcon/docs/DEMOS.TXT: -------------------------------------------------------------------------------- 1 | CoolTrayIcon demos 2 | 3 | The following demos are distributed with CoolTrayIcon: 4 | 5 | * CoolTrayTest - Main demo of CoolTrayIcon features 6 | * TextTrayTest - Main demo of TextTrayIcon features 7 | * StartHidden - How to determine at runtime if your app. should start visible or not 8 | * CoolService - A simple interactive service using CoolTrayIcon 9 | * TrayDraw - A demo of the CoolTrayIcon.BitmapToIcon method 10 | * CustomHint1 - Modifying the common tray icon tooltip, changing the font and colors 11 | * CustomHint2 - Replacing the tray icon tooltip with your own custom tooltip 12 | * MinimizeAnimation - Animation effect when user minimizes a form 13 | 14 | 15 | CustomHint1 was more or less a port of a VB project by Eduardo A. Morcillo 16 | (http://www.domaindlx.com/e_morcillo). 17 | CustomHint2 was made by Zeljko Avramovic and modified by me. 18 | All other demos were made by me. 19 | 20 | If you have a cool demo demonstrating how to accomplish a task with CoolTrayIcon 21 | or TextTrayIcon, send it to me. 22 | 23 | Troels Jakobsen 24 | delphiuser@get2net.dk 25 | 26 | -------------------------------------------------------------------------------- /!~Library/CoolTrayIcon/docs/History - CoolTrayIcon.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/!~Library/CoolTrayIcon/docs/History - CoolTrayIcon.txt -------------------------------------------------------------------------------- /!~Library/CoolTrayIcon/docs/History - SimpleTimer.txt: -------------------------------------------------------------------------------- 1 | SimpleTimer, ver. 2.0.1 2 | 3 | 4 | - ver. 2.0.1: Since overloaded methods are not allowed in D2 and D3 5 | I renamed the second constructor from "Create" to "CreateEx" and 6 | dropped the overload directive. 7 | 8 | - ver. 2.0.0: Major restructuring. Big thanks go to mikk from Hungary 9 | for contributing with suggestions and code. Changes in 2.0.0 include: 10 | * The Start and Stop methods have been replaced with Enabled and Interval 11 | properties, so SimpleTimer resembles TTimer more closely. 12 | * The callback method is replaced by an OnTimer event. 13 | * Added AutoDisable and CallBackMethod properties. 14 | * Added two stand-alone methods. 15 | +++++ See convert_st_projects.txt if you are using SimpleTimer already +++++ 16 | 17 | - ver. 1.0.3: Reintroduced reference to the Forms unit, as it was needed 18 | by Delphi 5 and below (doh!). 19 | 20 | - ver. 1.0.2: Removed reference to the Forms unit. 21 | 22 | - ver. 1.0.1: Removed exception handling from the WndProc method as it 23 | would catch any and all exceptions, including the ones which were 24 | supposed to be thrown. Thanks to George Mealer for telling me. 25 | 26 | - ver. 1.0.0: First release. 27 | 28 | 29 | 30 | If you have any comments or corrections, I would very much like to 31 | hear them. 32 | 33 | Troels Jakobsen 34 | delphiuser@get2net.dk 35 | 36 | -------------------------------------------------------------------------------- /!~Library/CoolTrayIcon/docs/History - TextTrayIcon.txt: -------------------------------------------------------------------------------- 1 | TextTrayIcon, ver. 1.2.1 2 | 3 | 4 | - ver. 1.2.1: Bugfix: The background icon was not freed when TextTrayIcon 5 | was destroyed. 6 | 7 | - ver. 1.2.0: A big thanks to Jouni Airaksinen, who suggested 8 | improvements to the drawing/painting methods. The background 9 | icon should now display with the correct colors. 10 | 11 | - ver. 1.1.1: Some internal class-level handling is introduced as a 12 | result of updating the parent component CoolTrayIcon. Updated the 13 | documentation. 14 | 15 | - ver. 1.1.0: A background icon is introduced. Property ShowTextIcon 16 | is discarded. 17 | 18 | - ver. 1.0.0: First release. TextTrayIcon is distributed together 19 | with the CoolTrayIcon component (ver. 3.0.0). Some of the code 20 | was inspired by an example Robert Price sent me. 21 | 22 | 23 | 24 | If you have any comments or corrections, I would very much like to 25 | hear them. 26 | 27 | Troels Jakobsen 28 | delphiuser@get2net.dk 29 | 30 | -------------------------------------------------------------------------------- /!~Library/CoolTrayIcon/install.txt: -------------------------------------------------------------------------------- 1 | How to install the components 2 | ----------------------------- 3 | 4 | *** YOU NEED TO INSTALL THE COMPONENTS BEFORE OPENING THE DEMOS IN DELPHI. *** 5 | 6 | 7 | If you're running Delphi 5, 6, or 7: 8 | 9 | 1. Open CoolTrayIcon_D5.dpk (Delphi 5) or CoolTrayIcon_D6plus.dpk (Delphi 6 10 | or above) either by doubleclicking the file or by selecting "Open Project" 11 | inside Delphi. (CoolTrayIcon_D5.dpk may work for older Delphi versions 12 | as well, but I don't know for sure. Please tell me if I'm right.) 13 | 14 | 2. Click Compile, then Install. 15 | 16 | 3. That's it. The components should be visible in the component palette 17 | in a tab called "Tray Icons" (if older versions of the components were 18 | already installed they may be found in "Custom"). 19 | 20 | 21 | 22 | If you're running other Delphi versions than ver. 5, 6, or 7: 23 | 24 | 1. Try the steps above with the CoolTrayIcon_D5.dpk file (it may work in 25 | older versions of Delphi, but I don't know for sure. Please tell me). 26 | If this doesn't work then do the following: 27 | 28 | 2. Select "Install Component" from the "Component" menu item (may vary 29 | depending on your Delphi version). 30 | 31 | 3. A dialog displays where you must select the components to install and 32 | the package to install into. I recommend creating a new package, if you 33 | haven't already done so, rather than installing into the default package. 34 | 35 | 4. Browse for the RegisterTrayIcons.pas file and select OK. 36 | 37 | 5. That's it. The components should be visible in the component palette 38 | in a tab called "Tray Icons" (if older versions of the components were 39 | already installed they may be found in "Custom"). 40 | 41 | 42 | 43 | If you're running C++ Builder: 44 | 45 | The required steps are the same as in Delphi, so just follow the steps above. 46 | 47 | Alternatively, use this approach: 48 | 49 | 1. Select "New Component..." from the menu 50 | 51 | 2. In "Ancestor type", select "TTrayIcon [trayicon]" 52 | 53 | 3. In "Class Name", type "TCoolTrayIcon" 54 | 55 | 4. In "Palette Page", type "Tray Icons" (or another tab you want to install to) 56 | 57 | 5. In "Unit file name", select "RegisterTrayIcons.pas" (which is found in the 58 | CoolTrayIcon package). 59 | 60 | 6. Click on the "Install" button. 61 | 62 | -------------------------------------------------------------------------------- /!~Library/CoolTrayIcon/readme.txt: -------------------------------------------------------------------------------- 1 | This zip-file contains the two Delphi components, CoolTrayIcon and 2 | TextTrayIcon (tray icon components). 3 | 4 | Refer to CoolTrayIcon.chm and install.txt for documentation. 5 | 6 | See also convert_cti_projects.txt if you're upgrading from a previous version 7 | of CoolTrayIcon/TextTrayIcon. 8 | 9 | ***** If you redistribute this package, please include all original files. ***** 10 | 11 | -------------------------------------------------------------------------------- /Configs.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Configs.dcu -------------------------------------------------------------------------------- /Configs.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Configs.pas -------------------------------------------------------------------------------- /ForAll.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/ForAll.dcu -------------------------------------------------------------------------------- /ForAll.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/ForAll.pas -------------------------------------------------------------------------------- /Icon_16_98.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Icon_16_98.ico -------------------------------------------------------------------------------- /Icon_16_old.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Icon_16_old.ico -------------------------------------------------------------------------------- /Icon_16_xp.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Icon_16_xp.ico -------------------------------------------------------------------------------- /Icon_full.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Icon_full.ico -------------------------------------------------------------------------------- /Lang/Belarusian.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Lang/Belarusian.chm -------------------------------------------------------------------------------- /Lang/Belarusian.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Lang/Belarusian.lng -------------------------------------------------------------------------------- /Lang/Bulgarian.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Lang/Bulgarian.lng -------------------------------------------------------------------------------- /Lang/Chinese (Simplified).chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Lang/Chinese (Simplified).chm -------------------------------------------------------------------------------- /Lang/Chinese (Simplified).lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Lang/Chinese (Simplified).lng -------------------------------------------------------------------------------- /Lang/Dutch.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Lang/Dutch.lng -------------------------------------------------------------------------------- /Lang/English.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Lang/English.chm -------------------------------------------------------------------------------- /Lang/English/English.hhc: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 65 | 66 | -------------------------------------------------------------------------------- /Lang/English/English.hhk: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 10 | 11 | -------------------------------------------------------------------------------- /Lang/English/English.hhp: -------------------------------------------------------------------------------- 1 | [OPTIONS] 2 | Compatibility=1.1 or later 3 | Compiled file=..\English.chm 4 | Contents file=English.hhc 5 | Default topic=aboutprogram.htm 6 | Display compile progress=Yes 7 | Error log file=English.log 8 | Full-text search=Yes 9 | Index file=English.hhk 10 | Language=0x409 English (United States) 11 | Title=TypeAndRun english help 12 | 13 | 14 | [FILES] 15 | aboutprogram.htm 16 | backaddress.htm 17 | createaliases.htm 18 | distrcontext.htm 19 | faq.htm 20 | historycreated.htm 21 | hotkeys.htm 22 | runaliases.htm 23 | samples.htm 24 | senks.htm 25 | shareware.htm 26 | systemperfomance.htm 27 | working.htm 28 | commandlineparams.htm 29 | 30 | [INFOTYPES] 31 | 32 | -------------------------------------------------------------------------------- /Lang/English/aboutprogram.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | About the program 5 | 6 | 7 | 8 | About the program
9 | 10 |

This program is a hot-key enabled console which allows you to start any applications, open any documents, URLs, mail addresses and folders. Forget shortcuts and various fast start panels. This program will suit those who love *nix systems, who are used to run applications through the command line, who type fast and who like hot keys.

11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /Lang/English/backaddress.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Contact details 5 | 6 | 7 | 8 | Contact details
9 | 10 |

My name is -=GaLaN=- (Evgeniy Galanstev) - if you do not know yet! ;)

11 | 12 |

Web page address:
13 | http://galanc.com

14 | 15 |

E-mail address:
16 | For e-mail messages: -GaLaN-@mail.ru
17 | For files or messages more than 100 Kb: galan@fromru.com
18 | Subject line should be relevant and not blank, otherwise I will delete the message immediately. Recommended subjects are: TypeAndRun, TAR, TypeAndRun , TAR and so on.
19 | When you have a problem with the program, please specify its version and operation system you are working with.

20 | 21 |

ICQ:
22 | 291381

23 | 24 |

Forum:
25 | http://www.fforum.ru/index.php?showtopic=422

26 | 27 |

YAHOOGROUPS:
28 | HardTalk, WinCommander, TheBat, TypeAndRun. 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /Lang/English/commandlineparams.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Lang/English/commandlineparams.htm -------------------------------------------------------------------------------- /Lang/English/createaliases.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Lang/English/createaliases.htm -------------------------------------------------------------------------------- /Lang/English/distrcontext.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Distributed package 5 | 6 | 7 | 8 | Distributed package
9 | 10 |

Contains the following:

11 | 12 |

13 | TypeAndRun.exe - executed file
14 | Lang\English.chm - english help file
15 | Lang\Russian.chm - russian help file
16 | Lang\English.lng - english language module
17 | Lang\Russian.lng - russian language module 18 |

19 | 20 |

Files generated by the program:

21 | 22 |

23 | Config.ini - alias configuration file
24 | ~Config.ini - removed dead alias configuration file
25 | TypeAndRun.ini - program settings
26 | History.ini - command history file
27 | Plugins.ini - plugins configuration file

28 | Plugins\ - default plugins directory 29 |

30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /Lang/English/faq.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Lang/English/faq.htm -------------------------------------------------------------------------------- /Lang/English/historycreated.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Lang/English/historycreated.htm -------------------------------------------------------------------------------- /Lang/English/runaliases.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Lang/English/runaliases.htm -------------------------------------------------------------------------------- /Lang/English/samples.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Lang/English/samples.htm -------------------------------------------------------------------------------- /Lang/English/shareware.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Lang/English/shareware.htm -------------------------------------------------------------------------------- /Lang/English/systemperfomance.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | System requirements 5 | 6 | 7 | 8 | System requirements
9 | 10 |

11 | - processor: 486 and up
12 | - memory: 32M or more
13 | - 500 Kb or more hard disk space (May be 2Mb and more with plugins and configs)
14 | - operation system: Windows 95/98/98SE/Me/NT/2k/XP/2003
15 |

16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /Lang/English/working.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Lang/English/working.htm -------------------------------------------------------------------------------- /Lang/French.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Lang/French.lng -------------------------------------------------------------------------------- /Lang/German.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Lang/German.lng -------------------------------------------------------------------------------- /Lang/Korean.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Lang/Korean.lng -------------------------------------------------------------------------------- /Lang/Russian.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Lang/Russian.chm -------------------------------------------------------------------------------- /Lang/Russian.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Lang/Russian.lng -------------------------------------------------------------------------------- /Lang/Russian/Russian.hhc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Lang/Russian/Russian.hhc -------------------------------------------------------------------------------- /Lang/Russian/Russian.hhk: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 10 | 11 | -------------------------------------------------------------------------------- /Lang/Russian/Russian.hhp: -------------------------------------------------------------------------------- 1 | [OPTIONS] 2 | Compatibility=1.1 or later 3 | Compiled file=..\Russian.chm 4 | Contents file=d:\Doc\Delphi\TypeAndRun\Lang\Russian\Russian.hhc 5 | Default topic=aboutprogram.htm 6 | Display compile progress=Yes 7 | Error log file=d:\Doc\Delphi\TypeAndRun\Lang\Russian\Russian.log 8 | Full-text search=Yes 9 | Index file=d:\Doc\Delphi\TypeAndRun\Lang\Russian\Russian.hhk 10 | Language=0x419 Russian 11 | Title=TypeAndRun russian help 12 | 13 | 14 | [FILES] 15 | aboutprogram.htm 16 | backaddress.htm 17 | commandlineparams.htm 18 | createaliases.htm 19 | distrcontext.htm 20 | faq.htm 21 | historycreated.htm 22 | hotkeys.htm 23 | runaliases.htm 24 | samples.htm 25 | senks.htm 26 | shareware.htm 27 | systemperfomance.htm 28 | working.htm 29 | 30 | [INFOTYPES] 31 | -------------------------------------------------------------------------------- /Lang/Russian/aboutprogram.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Lang/Russian/aboutprogram.htm -------------------------------------------------------------------------------- /Lang/Russian/backaddress.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Lang/Russian/backaddress.htm -------------------------------------------------------------------------------- /Lang/Russian/commandlineparams.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Lang/Russian/commandlineparams.htm -------------------------------------------------------------------------------- /Lang/Russian/createaliases.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Lang/Russian/createaliases.htm -------------------------------------------------------------------------------- /Lang/Russian/distrcontext.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Lang/Russian/distrcontext.htm -------------------------------------------------------------------------------- /Lang/Russian/faq.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Lang/Russian/faq.htm -------------------------------------------------------------------------------- /Lang/Russian/historycreated.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Lang/Russian/historycreated.htm -------------------------------------------------------------------------------- /Lang/Russian/hotkeys.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Lang/Russian/hotkeys.htm -------------------------------------------------------------------------------- /Lang/Russian/runaliases.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Lang/Russian/runaliases.htm -------------------------------------------------------------------------------- /Lang/Russian/samples.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Lang/Russian/samples.htm -------------------------------------------------------------------------------- /Lang/Russian/senks.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Lang/Russian/senks.htm -------------------------------------------------------------------------------- /Lang/Russian/shareware.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Lang/Russian/shareware.htm -------------------------------------------------------------------------------- /Lang/Russian/systemperfomance.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Lang/Russian/systemperfomance.htm -------------------------------------------------------------------------------- /Lang/Russian/working.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Lang/Russian/working.htm -------------------------------------------------------------------------------- /Lang/Spanish.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Lang/Spanish.lng -------------------------------------------------------------------------------- /Lang/Turkish.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Lang/Turkish.lng -------------------------------------------------------------------------------- /Lang/Ukrainian.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Lang/Ukrainian.lng -------------------------------------------------------------------------------- /Lang/descript.ion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Lang/descript.ion -------------------------------------------------------------------------------- /Plugins.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins.dcu -------------------------------------------------------------------------------- /Plugins.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins.pas -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_amp/Source/LangProc.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_amp/Source/LangProc.dcu -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_amp/Source/LangProc.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_amp/Source/LangProc.pas -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_amp/Source/Media.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_amp/Source/Media.dcu -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_amp/Source/Media.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_amp/Source/Media.pas -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_amp/Source/tar_amp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_amp/Source/tar_amp.dll -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_amp/Source/tar_amp.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_amp/Source/tar_amp.dpr -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_amp/tar_amp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_amp/tar_amp.dll -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_amp/tar_amp.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_amp/tar_amp.ini -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_amp/tar_amp_ru.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_amp/tar_amp_ru.htm -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_change/Help_en/change_en.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_change/Help_en/change_en.gif -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_change/Help_ru/change_ru.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_change/Help_ru/change_ru.gif -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_change/Help_ru/index_ru.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_change/Help_ru/index_ru.html -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_change/Source/ChMain.ddp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_change/Source/ChMain.ddp -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_change/Source/ChMain.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_change/Source/ChMain.dfm -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_change/Source/ChMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_change/Source/ChMain.pas -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_change/Source/PicList.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_change/Source/PicList.pas -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_change/Source/tar_change.cfg: -------------------------------------------------------------------------------- 1 | -$A8 2 | -$B- 3 | -$C+ 4 | -$D+ 5 | -$E- 6 | -$F- 7 | -$G+ 8 | -$H+ 9 | -$I+ 10 | -$J- 11 | -$K- 12 | -$L+ 13 | -$M- 14 | -$N+ 15 | -$O+ 16 | -$P+ 17 | -$Q- 18 | -$R- 19 | -$S- 20 | -$T- 21 | -$U- 22 | -$V+ 23 | -$W- 24 | -$X+ 25 | -$YD 26 | -$Z1 27 | -cg 28 | -AWinTypes=Windows;WinProcs=Windows;DbiTypes=BDE;DbiProcs=BDE;DbiErrs=BDE; 29 | -H+ 30 | -W+ 31 | -M 32 | -$M16384,1048576 33 | -K$00400000 34 | -N"E:\EXE" 35 | -LE"c:\programs\delphi\Projects\Bpl" 36 | -LN"c:\programs\delphi\Projects\Bpl" 37 | -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_change/Source/tar_change.dof: -------------------------------------------------------------------------------- 1 | [FileVersion] 2 | Version=6.0 3 | [Compiler] 4 | A=8 5 | B=0 6 | C=1 7 | D=1 8 | E=0 9 | F=0 10 | G=1 11 | H=1 12 | I=1 13 | J=0 14 | K=0 15 | L=1 16 | M=0 17 | N=1 18 | O=1 19 | P=1 20 | Q=0 21 | R=0 22 | S=0 23 | T=0 24 | U=0 25 | V=1 26 | W=0 27 | X=1 28 | Y=1 29 | Z=1 30 | ShowHints=1 31 | ShowWarnings=1 32 | UnitAliases=WinTypes=Windows;WinProcs=Windows;DbiTypes=BDE;DbiProcs=BDE;DbiErrs=BDE; 33 | [Linker] 34 | MapFile=0 35 | OutputObjs=0 36 | ConsoleApp=1 37 | DebugInfo=0 38 | RemoteSymbols=0 39 | MinStackSize=16384 40 | MaxStackSize=1048576 41 | ImageBase=4194304 42 | ExeDescription= 43 | [Directories] 44 | OutputDir= 45 | UnitOutputDir=E:\EXE 46 | PackageDLLOutputDir= 47 | PackageDCPOutputDir= 48 | SearchPath= 49 | Packages=vcl;rtl 50 | Conditionals= 51 | DebugSourceDirs= 52 | UsePackages=0 53 | [Parameters] 54 | RunParams= 55 | HostApplication= 56 | Launcher= 57 | UseLauncher=0 58 | DebugCWD= 59 | [Version Info] 60 | IncludeVerInfo=0 61 | AutoIncBuild=0 62 | MajorVer=1 63 | MinorVer=0 64 | Release=0 65 | Build=0 66 | Debug=0 67 | PreRelease=0 68 | Special=0 69 | Private=0 70 | DLL=0 71 | Locale=1049 72 | CodePage=1251 73 | [Version Info Keys] 74 | CompanyName= 75 | FileDescription= 76 | FileVersion=1.0.0.0 77 | InternalName= 78 | LegalCopyright= 79 | LegalTrademarks= 80 | OriginalFilename= 81 | ProductName= 82 | ProductVersion=1.0.0.0 83 | Comments= 84 | [HistoryLists\hlUnitAliases] 85 | Count=1 86 | Item0=WinTypes=Windows;WinProcs=Windows;DbiTypes=BDE;DbiProcs=BDE;DbiErrs=BDE; 87 | [HistoryLists\hlUnitOutputDirectory] 88 | Count=1 89 | Item0=E:\exe 90 | [HistoryLists\hlOutputDirectorry] 91 | Count=1 92 | Item0=E:\EXE 93 | -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_change/Source/tar_change.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_change/Source/tar_change.dpr -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_change/tar_change.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_change/tar_change.dll -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_change/tar_change.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_change/tar_change.ini -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_change/tar_change_en.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_change/tar_change_en.chm -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_change/tar_change_ru.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_change/tar_change_ru.chm -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_clip/Source/CLIP.ICO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_clip/Source/CLIP.ICO -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_clip/Source/Common.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_clip/Source/Common.dcu -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_clip/Source/Common.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_clip/Source/Common.pas -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_clip/Source/Main.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_clip/Source/Main.dcu -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_clip/Source/Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_clip/Source/Main.pas -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_clip/Source/OPT.ICO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_clip/Source/OPT.ICO -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_clip/Source/Option.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_clip/Source/Option.dcu -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_clip/Source/Target.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_clip/Source/Target.bmp -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_clip/Source/WIN.ICO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_clip/Source/WIN.ICO -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_clip/Source/Wins.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_clip/Source/Wins.dcu -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_clip/Source/tar_clip.cfg: -------------------------------------------------------------------------------- 1 | -$A8 2 | -$B- 3 | -$C+ 4 | -$D+ 5 | -$E- 6 | -$F- 7 | -$G+ 8 | -$H+ 9 | -$I+ 10 | -$J- 11 | -$K- 12 | -$L+ 13 | -$M- 14 | -$N+ 15 | -$O+ 16 | -$P+ 17 | -$Q+ 18 | -$R+ 19 | -$S- 20 | -$T- 21 | -$U- 22 | -$V+ 23 | -$W- 24 | -$X+ 25 | -$YD 26 | -$Z1 27 | -cg 28 | -AWinTypes=Windows;WinProcs=Windows;DbiTypes=BDE;DbiProcs=BDE;DbiErrs=BDE; 29 | -H+ 30 | -W+ 31 | -M 32 | -$M16384,1048576 33 | -K$00400000 34 | -LE"c:\program files\borland\delphi7\Projects\Bpl" 35 | -LN"c:\program files\borland\delphi7\Projects\Bpl" 36 | -w-COMPARING_SIGNED_UNSIGNED 37 | -w-UNSAFE_TYPE 38 | -w-UNSAFE_CODE 39 | -w-UNSAFE_CAST 40 | -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_clip/Source/tar_clip.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_clip/Source/tar_clip.dll -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_clip/Source/tar_clip.dof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_clip/Source/tar_clip.dof -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_clip/Source/tar_clip.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_clip/Source/tar_clip.dpr -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_clip/Source/tar_clip.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_clip/Source/tar_clip.res -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_clip/tar_clip.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_clip/tar_clip.dll -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_clip/tar_clip.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_clip/tar_clip.ini -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_clip/tar_clip_ru.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_clip/tar_clip_ru.htm -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_clipboard/tar_clipboard.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_clipboard/tar_clipboard.dll -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_clipboard/tar_clipboard.dll.pec2bac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_clipboard/tar_clipboard.dll.pec2bac -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_clipboard/tar_clipboard.ini: -------------------------------------------------------------------------------- 1 | name|JumpingJack 2 | country|Russia 3 | city|Moscow 4 | login|guest 5 | password|guest 6 | email|jumpingjack@mail.ru -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_clipboard/tar_clipboard_ru.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_clipboard/tar_clipboard_ru.txt -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_hotkey/Help_en/get_en.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_hotkey/Help_en/get_en.gif -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_hotkey/Help_en/index_en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_hotkey/Help_en/index_en.html -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_hotkey/Help_ru/get_ru.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_hotkey/Help_ru/get_ru.gif -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_hotkey/Help_ru/index_ru.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_hotkey/Help_ru/index_ru.html -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_hotkey/HotSrc/Hotkey.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_hotkey/HotSrc/Hotkey.pas -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_hotkey/HotSrc/Unit1.ddp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_hotkey/HotSrc/Unit1.ddp -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_hotkey/HotSrc/Unit1.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_hotkey/HotSrc/Unit1.pas -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_hotkey/HotSrc/tar_hotkey.cfg: -------------------------------------------------------------------------------- 1 | -$A4 2 | -$B- 3 | -$C+ 4 | -$D+ 5 | -$E- 6 | -$F- 7 | -$G+ 8 | -$H+ 9 | -$I+ 10 | -$J- 11 | -$K- 12 | -$L+ 13 | -$M- 14 | -$N+ 15 | -$O+ 16 | -$P- 17 | -$Q- 18 | -$R- 19 | -$S- 20 | -$T- 21 | -$U- 22 | -$V+ 23 | -$W- 24 | -$X+ 25 | -$YD 26 | -$Z1 27 | -cg 28 | -AWinTypes=Windows;WinProcs=Windows;DbiTypes=BDE;DbiProcs=BDE;DbiErrs=BDE; 29 | -H+ 30 | -W+ 31 | -M 32 | -$M16384,1048576 33 | -K$00400000 34 | -N"E:\EXE" 35 | -LE"c:\programs\delphi\Projects\Bpl" 36 | -LN"c:\programs\delphi\Projects\Bpl" 37 | -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_hotkey/HotSrc/tar_hotkey.dof: -------------------------------------------------------------------------------- 1 | [FileVersion] 2 | Version=6.0 3 | [Compiler] 4 | A=4 5 | B=0 6 | C=1 7 | D=1 8 | E=0 9 | F=0 10 | G=1 11 | H=1 12 | I=1 13 | J=0 14 | K=0 15 | L=1 16 | M=0 17 | N=1 18 | O=1 19 | P=0 20 | Q=0 21 | R=0 22 | S=0 23 | T=0 24 | U=0 25 | V=1 26 | W=0 27 | X=1 28 | Y=1 29 | Z=1 30 | ShowHints=1 31 | ShowWarnings=1 32 | UnitAliases=WinTypes=Windows;WinProcs=Windows;DbiTypes=BDE;DbiProcs=BDE;DbiErrs=BDE; 33 | [Linker] 34 | MapFile=0 35 | OutputObjs=0 36 | ConsoleApp=1 37 | DebugInfo=0 38 | RemoteSymbols=0 39 | MinStackSize=16384 40 | MaxStackSize=1048576 41 | ImageBase=4194304 42 | ExeDescription= 43 | [Directories] 44 | OutputDir= 45 | UnitOutputDir=E:\EXE 46 | PackageDLLOutputDir= 47 | PackageDCPOutputDir= 48 | SearchPath= 49 | Packages=vcl 50 | Conditionals= 51 | DebugSourceDirs= 52 | UsePackages=0 53 | [Parameters] 54 | RunParams= 55 | HostApplication=E:\Doc\Tar_hotkey\Journal.exe 56 | Launcher= 57 | UseLauncher=0 58 | DebugCWD= 59 | [Version Info] 60 | IncludeVerInfo=0 61 | AutoIncBuild=0 62 | MajorVer=1 63 | MinorVer=0 64 | Release=0 65 | Build=0 66 | Debug=0 67 | PreRelease=0 68 | Special=0 69 | Private=0 70 | DLL=0 71 | Locale=1049 72 | CodePage=1251 73 | [Version Info Keys] 74 | CompanyName= 75 | FileDescription= 76 | FileVersion=1.0.0.0 77 | InternalName= 78 | LegalCopyright= 79 | LegalTrademarks= 80 | OriginalFilename= 81 | ProductName= 82 | ProductVersion=1.0.0.0 83 | Comments= 84 | [HistoryLists\hlUnitAliases] 85 | Count=1 86 | Item0=WinTypes=Windows;WinProcs=Windows;DbiTypes=BDE;DbiProcs=BDE;DbiErrs=BDE; 87 | [HistoryLists\hlSearchPath] 88 | Count=1 89 | Item0=..\Common 90 | [HistoryLists\hlUnitOutputDirectory] 91 | Count=1 92 | Item0=E:\EXE 93 | [HistoryLists\hlOutputDirectorry] 94 | Count=1 95 | Item0=E:\EXE 96 | -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_hotkey/HotSrc/tar_hotkey.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_hotkey/HotSrc/tar_hotkey.dpr -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_hotkey/KHook.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_hotkey/KHook.dll -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_hotkey/KHookSrc/KHook.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_hotkey/KHookSrc/KHook.asm -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_hotkey/KHookSrc/KHook.bat: -------------------------------------------------------------------------------- 1 | C:\MASM32\Bin\ml /c /coff /Cp khook.asm 2 | C:\Masm32\Bin\link /section:.bss,S /DLL /DEF:khook.def /SUBSYSTEM:WINDOWS /LIBPATH:c:\masm32\lib khook.obj 3 | -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_hotkey/KHookSrc/KHook.def: -------------------------------------------------------------------------------- 1 | LIBRARY KHook 2 | EXPORTS 3 | InstallHook 4 | -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_hotkey/tar_hotkey.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_hotkey/tar_hotkey.dll -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_hotkey/tar_hotkey.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_hotkey/tar_hotkey.ini -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_hotkey/tar_hotkey_en.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_hotkey/tar_hotkey_en.chm -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_hotkey/tar_hotkey_ru.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_hotkey/tar_hotkey_ru.chm -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_hotkeys/frmTARHookUnit.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_hotkeys/frmTARHookUnit.dcu -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_hotkeys/frmTARHookUnit.ddp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_hotkeys/frmTARHookUnit.ddp -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_hotkeys/frmTARHookUnit.dfm: -------------------------------------------------------------------------------- 1 | object frmTARHook: TfrmTARHook 2 | Left = 584 3 | Top = 416 4 | Width = 260 5 | Height = 245 6 | Caption = 'frmTARHook' 7 | Color = clBtnFace 8 | Font.Charset = DEFAULT_CHARSET 9 | Font.Color = clWindowText 10 | Font.Height = -11 11 | Font.Name = 'MS Sans Serif' 12 | Font.Style = [] 13 | OldCreateOrder = False 14 | PixelsPerInch = 96 15 | TextHeight = 13 16 | end 17 | -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_hotkeys/frmTARHookUnit.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_hotkeys/frmTARHookUnit.pas -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_hotkeys/frmTARHookUnit.~ddp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_hotkeys/frmTARHookUnit.~ddp -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_hotkeys/frmTARHookUnit.~dfm: -------------------------------------------------------------------------------- 1 | object frmTARHook: TfrmTARHook 2 | Left = 584 3 | Top = 416 4 | Width = 260 5 | Height = 245 6 | Caption = 'frmTARHook' 7 | Color = clBtnFace 8 | Font.Charset = DEFAULT_CHARSET 9 | Font.Color = clWindowText 10 | Font.Height = -11 11 | Font.Name = 'MS Sans Serif' 12 | Font.Style = [] 13 | OldCreateOrder = False 14 | PixelsPerInch = 96 15 | TextHeight = 13 16 | end 17 | -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_hotkeys/frmTARHookUnit.~pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_hotkeys/frmTARHookUnit.~pas -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_hotkeys/tar_hotkeys.cfg: -------------------------------------------------------------------------------- 1 | -$A8 2 | -$B- 3 | -$C+ 4 | -$D+ 5 | -$E- 6 | -$F- 7 | -$G+ 8 | -$H+ 9 | -$I+ 10 | -$J- 11 | -$K- 12 | -$L+ 13 | -$M- 14 | -$N+ 15 | -$O+ 16 | -$P+ 17 | -$Q- 18 | -$R- 19 | -$S- 20 | -$T- 21 | -$U- 22 | -$V+ 23 | -$W- 24 | -$X+ 25 | -$YD 26 | -$Z1 27 | -cg 28 | -AWinTypes=Windows;WinProcs=Windows;DbiTypes=BDE;DbiProcs=BDE;DbiErrs=BDE; 29 | -H+ 30 | -W+ 31 | -M 32 | -$M16384,1048576 33 | -K$00400000 34 | -LE"c:\program files\borland\delphi7\Projects\Bpl" 35 | -LN"c:\program files\borland\delphi7\Projects\Bpl" 36 | -w-UNSAFE_TYPE 37 | -w-UNSAFE_CODE 38 | -w-UNSAFE_CAST 39 | -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_hotkeys/tar_hotkeys.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_hotkeys/tar_hotkeys.dll -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_hotkeys/tar_hotkeys.dll.pec2bac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_hotkeys/tar_hotkeys.dll.pec2bac -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_hotkeys/tar_hotkeys.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_hotkeys/tar_hotkeys.dpr -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_hotkeys/tar_hotkeys.ini: -------------------------------------------------------------------------------- 1 | w|j|~cdeject -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_hotkeys/tar_hotkeys.~dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_hotkeys/tar_hotkeys.~dpr -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_hotkeys/tar_hotkeys_en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_hotkeys/tar_hotkeys_en.txt -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_hotkeys/tar_hotkeys_ru.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_hotkeys/tar_hotkeys_ru.txt -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_log/tar_log.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_log/tar_log.dll -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_misc/Clear.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_misc/Clear.bmp -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_misc/Help_en/Example_en.htm: -------------------------------------------------------------------------------- 1 | 2 | List E:\Temp\Example.htm 3 | 4 |
5 |

Description E:\Temp\Example.txt

6 |

This file E:\Temp\Example.htm

7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 |
FileDescriptionOpen
FirstRedOpen
SecondGreenOpen
ThirdBlueOpen
FourthBrownOpen
32 |
33 |
34 |
35 | 36 | 37 | 38 | 39 | 40 | 41 |
Done with:
Prefix:E:\Temp\Prefix.htm
Data:E:\Temp\data.htm
Suffix:E:\Temp\suffix.htm
Author: Python, the member of SmiSoft (SA)
42 |
43 | 44 | -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_misc/Help_en/Example_en.txt: -------------------------------------------------------------------------------- 1 | First Red 2 | Second Green 3 | Third Blue 4 | Fourth Brown 5 | -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_misc/Help_en/Id3_en.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_misc/Help_en/Id3_en.gif -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_misc/Help_en/book2_en.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_misc/Help_en/book2_en.gif -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_misc/Help_en/book2_en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_misc/Help_en/book2_en.html -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_misc/Help_en/book_en.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_misc/Help_en/book_en.gif -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_misc/Help_en/book_en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_misc/Help_en/book_en.html -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_misc/Help_en/cutter_en.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_misc/Help_en/cutter_en.gif -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_misc/Help_en/exe2swf_en.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_misc/Help_en/exe2swf_en.gif -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_misc/Help_en/id3_en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_misc/Help_en/id3_en.html -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_misc/Help_en/index_en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_misc/Help_en/index_en.html -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_misc/Help_en/list2_en.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_misc/Help_en/list2_en.gif -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_misc/Help_en/list_en.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_misc/Help_en/list_en.gif -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_misc/Help_en/m3u_en.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_misc/Help_en/m3u_en.gif -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_misc/Help_en/param_en.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_misc/Help_en/param_en.gif -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_misc/Help_en/patch_en.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_misc/Help_en/patch_en.gif -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_misc/Help_en/pcopy_en.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_misc/Help_en/pcopy_en.gif -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_misc/Help_en/renumber_en.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_misc/Help_en/renumber_en.gif -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_misc/Help_en/tar_misc_en.hhp: -------------------------------------------------------------------------------- 1 | [OPTIONS] 2 | Compatibility=1.1 or later 3 | Compiled file=tar_misc_en.chm 4 | Default topic=index_en.html 5 | Display compile progress=No 6 | Language=0x419 Russian 7 | 8 | 9 | [FILES] 10 | book2_en.html 11 | book_en.html 12 | Example_en.htm 13 | id3_en.html 14 | index_en.html 15 | list_en.html 16 | txthtm_en.html 17 | 18 | [INFOTYPES] 19 | 20 | -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_misc/Help_en/txthtm_en.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_misc/Help_en/txthtm_en.gif -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_misc/Help_en/txthtm_en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_misc/Help_en/txthtm_en.html -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_misc/Help_ru/Example_ru.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_misc/Help_ru/Example_ru.htm -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_misc/Help_ru/Example_ru.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_misc/Help_ru/Example_ru.txt -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_misc/Help_ru/Id3_ru.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_misc/Help_ru/Id3_ru.gif -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_misc/Help_ru/book2_ru.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_misc/Help_ru/book2_ru.gif -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_misc/Help_ru/book2_ru.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_misc/Help_ru/book2_ru.html -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_misc/Help_ru/book_ru.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_misc/Help_ru/book_ru.gif -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_misc/Help_ru/book_ru.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_misc/Help_ru/book_ru.html -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_misc/Help_ru/cutter_ru.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_misc/Help_ru/cutter_ru.gif -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_misc/Help_ru/exe2swf_ru.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_misc/Help_ru/exe2swf_ru.gif -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_misc/Help_ru/id3_ru.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_misc/Help_ru/id3_ru.html -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_misc/Help_ru/index_ru.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_misc/Help_ru/index_ru.html -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_misc/Help_ru/list2_ru.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_misc/Help_ru/list2_ru.gif -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_misc/Help_ru/list_ru.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_misc/Help_ru/list_ru.gif -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_misc/Help_ru/list_ru.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_misc/Help_ru/list_ru.html -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_misc/Help_ru/m3u_ru.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_misc/Help_ru/m3u_ru.gif -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_misc/Help_ru/param_ru.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_misc/Help_ru/param_ru.gif -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_misc/Help_ru/patch_ru.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_misc/Help_ru/patch_ru.gif -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_misc/Help_ru/pcopy_ru.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_misc/Help_ru/pcopy_ru.gif -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_misc/Help_ru/renumber_ru.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_misc/Help_ru/renumber_ru.gif -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_misc/Help_ru/tar_misc_ru.hhp: -------------------------------------------------------------------------------- 1 | [OPTIONS] 2 | Compatibility=1.1 or later 3 | Compiled file=tar_misc_ru.chm 4 | Default topic=index_ru.html 5 | Display compile progress=No 6 | Language=0x419 Russian 7 | 8 | 9 | [FILES] 10 | txthtm_ru.html 11 | book2_ru.html 12 | book_ru.html 13 | Example_ru.htm 14 | id3_ru.html 15 | index_ru.html 16 | list_ru.html 17 | 18 | [INFOTYPES] 19 | 20 | -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_misc/Help_ru/txthtm_ru.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_misc/Help_ru/txthtm_ru.gif -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_misc/Help_ru/txthtm_ru.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_misc/Help_ru/txthtm_ru.html -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_misc/Source/Booklet.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_misc/Source/Booklet.dcu -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_misc/Source/Booklet.ddp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_misc/Source/Booklet.ddp -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_misc/Source/Booklet.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_misc/Source/Booklet.dfm -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_misc/Source/Booklet.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_misc/Source/Booklet.pas -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_misc/Source/Common.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_misc/Source/Common.dcu -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_misc/Source/Common.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_misc/Source/Common.pas -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_misc/Source/Cutter.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_misc/Source/Cutter.dcu -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_misc/Source/Cutter.ddp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_misc/Source/Cutter.ddp -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_misc/Source/Cutter.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_misc/Source/Cutter.pas -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_misc/Source/Exe2Swf.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_misc/Source/Exe2Swf.dcu -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_misc/Source/Exe2Swf.ddp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_misc/Source/Exe2Swf.ddp -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_misc/Source/Exe2Swf.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_misc/Source/Exe2Swf.pas -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_misc/Source/FMXUtils.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_misc/Source/FMXUtils.dcu -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_misc/Source/Id3Obj.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_misc/Source/Id3Obj.dcu -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_misc/Source/Id3Obj.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_misc/Source/Id3Obj.pas -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_misc/Source/Id3er.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_misc/Source/Id3er.dcu -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_misc/Source/Id3er.ddp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_misc/Source/Id3er.ddp -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_misc/Source/Id3er.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_misc/Source/Id3er.dfm -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_misc/Source/Id3er.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_misc/Source/Id3er.pas -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_misc/Source/Lister2.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_misc/Source/Lister2.dcu -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_misc/Source/Lister2.ddp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_misc/Source/Lister2.ddp -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_misc/Source/M3uf.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_misc/Source/M3uf.dcu -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_misc/Source/M3uf.ddp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_misc/Source/M3uf.ddp -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_misc/Source/M3uf.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_misc/Source/M3uf.dfm -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_misc/Source/Main.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_misc/Source/Main.dcu -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_misc/Source/Main.ddp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_misc/Source/Main.ddp -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_misc/Source/Main.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_misc/Source/Main.dfm -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_misc/Source/Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_misc/Source/Main.pas -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_misc/Source/Media.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_misc/Source/Media.dcu -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_misc/Source/Media.pas: -------------------------------------------------------------------------------- 1 | unit Media; 2 | 3 | interface 4 | 5 | Uses IniFiles; 6 | 7 | Const Language='Language'; 8 | Commands:array[1..12] of string=('~Exe2Swf','~Renumber','~Patch', 9 | '~PCopy','~M3ufresh','~BookGen','~Id3Copy','~BookGen2','~Txt2htm', 10 | '~ListGen','~ListGen2','~FileCut'); 11 | 12 | var Ini:TIniFile; 13 | 14 | implementation 15 | 16 | Uses Windows,Messages,SysUtils; 17 | 18 | function GetNext(var X:string):string; 19 | var I:integer; 20 | begin 21 | I:=pos(' ',X); 22 | if I=0 then I:=succ(Length(X)); 23 | Result:=trim(system.copy(X,1,I-1)); 24 | Delete(X,1,I); 25 | end; 26 | 27 | end. 28 | -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_misc/Source/PCopy.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_misc/Source/PCopy.dcu -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_misc/Source/PCopy.ddp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_misc/Source/PCopy.ddp -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_misc/Source/Param.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_misc/Source/Param.dcu -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_misc/Source/Param.ddp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_misc/Source/Param.ddp -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_misc/Source/Param.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_misc/Source/Param.dfm -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_misc/Source/Param.pas: -------------------------------------------------------------------------------- 1 | unit Param; 2 | 3 | interface 4 | 5 | uses 6 | Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, 7 | StdCtrls, Buttons, ComCtrls, ExtCtrls; 8 | 9 | type 10 | TOpts = class(TForm) 11 | XUseFiles: TCheckBox; 12 | UseDirs: TCheckBox; 13 | XFileString: TEdit; 14 | Label1: TLabel; 15 | XFileMask: TEdit; 16 | Label2: TLabel; 17 | Label3: TLabel; 18 | XDirString: TEdit; 19 | Layer: TTrackBar; 20 | Label4: TLabel; 21 | XSortFiles: TRadioGroup; 22 | XSortFolders: TRadioGroup; 23 | XCaseSens: TCheckBox; 24 | XInvert: TCheckBox; 25 | XFilesFirst: TCheckBox; 26 | XLocal: TCheckBox; 27 | Shrt: TCheckBox; 28 | Button1: TButton; 29 | Button2: TButton; 30 | procedure XUseFilesClick(Sender: TObject); 31 | procedure UseDirsClick(Sender: TObject); 32 | private 33 | { Private declarations } 34 | public 35 | { Public declarations } 36 | end; 37 | 38 | var 39 | Opts: TOpts; 40 | 41 | implementation 42 | 43 | {$R *.DFM} 44 | 45 | procedure TOpts.XUseFilesClick(Sender: TObject); 46 | begin 47 | XFileMask.Enabled:=XUseFiles.Checked; 48 | XFileString.Enabled:=XUseFiles.Checked; 49 | XLocal.Enabled:=XUseFiles.Checked; 50 | end; 51 | 52 | procedure TOpts.UseDirsClick(Sender: TObject); 53 | begin 54 | XDirString.Enabled:=UseDirs.Checked; 55 | end; 56 | 57 | end. 58 | -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_misc/Source/Patcher.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_misc/Source/Patcher.dcu -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_misc/Source/Patcher.ddp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_misc/Source/Patcher.ddp -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_misc/Source/Patcher.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_misc/Source/Patcher.pas -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_misc/Source/Ren.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_misc/Source/Ren.dcu -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_misc/Source/Ren.ddp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_misc/Source/Ren.ddp -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_misc/Source/Rew.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_misc/Source/Rew.dcu -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_misc/Source/Rew.ddp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_misc/Source/Rew.ddp -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_misc/Source/Rew.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_misc/Source/Rew.dfm -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_misc/Source/Rew.pas: -------------------------------------------------------------------------------- 1 | unit Rew; 2 | 3 | interface 4 | 5 | uses 6 | Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, 7 | StdCtrls, Buttons; 8 | 9 | type 10 | TVerify = class(TForm) 11 | ForAll: TCheckBox; 12 | Status: TLabel; 13 | BitBtn1: TButton; 14 | BitBtn2: TButton; 15 | BitBtn3: TButton; 16 | private 17 | { Private declarations } 18 | public 19 | { Public declarations } 20 | end; 21 | 22 | var 23 | Verify: TVerify; 24 | 25 | implementation 26 | 27 | {$R *.DFM} 28 | 29 | end. 30 | -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_misc/Source/Scan.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_misc/Source/Scan.dcu -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_misc/Source/Scan.ddp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_misc/Source/Scan.ddp -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_misc/Source/Scan.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_misc/Source/Scan.dfm -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_misc/Source/Scan.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_misc/Source/Scan.pas -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_misc/Source/TextProc.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_misc/Source/TextProc.dcu -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_misc/Source/TextProc.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_misc/Source/TextProc.pas -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_misc/Source/Txt2htm.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_misc/Source/Txt2htm.dcu -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_misc/Source/Txt2htm.ddp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_misc/Source/Txt2htm.ddp -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_misc/Source/Txt2htm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_misc/Source/Txt2htm.dfm -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_misc/Source/Txt2htm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_misc/Source/Txt2htm.pas -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_misc/Source/tar_misc.cfg: -------------------------------------------------------------------------------- 1 | -$A8 2 | -$B- 3 | -$C+ 4 | -$D+ 5 | -$E- 6 | -$F- 7 | -$G+ 8 | -$H+ 9 | -$I+ 10 | -$J- 11 | -$K- 12 | -$L+ 13 | -$M- 14 | -$N+ 15 | -$O+ 16 | -$P+ 17 | -$Q+ 18 | -$R+ 19 | -$S- 20 | -$T- 21 | -$U- 22 | -$V+ 23 | -$W- 24 | -$X+ 25 | -$YD 26 | -$Z1 27 | -cg 28 | -AWinTypes=Windows;WinProcs=Windows;DbiTypes=BDE;DbiProcs=BDE;DbiErrs=BDE; 29 | -H+ 30 | -W+ 31 | -M 32 | -$M16384,1048576 33 | -K$00400000 34 | -LE"c:\program files\borland\delphi7\Projects\Bpl" 35 | -LN"c:\program files\borland\delphi7\Projects\Bpl" 36 | -w-COMPARING_SIGNED_UNSIGNED 37 | -w-UNSAFE_TYPE 38 | -w-UNSAFE_CODE 39 | -w-UNSAFE_CAST 40 | -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_misc/Source/tar_misc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_misc/Source/tar_misc.dll -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_misc/Source/tar_misc.dof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_misc/Source/tar_misc.dof -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_misc/Source/tar_misc.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_misc/Source/tar_misc.dpr -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_misc/Source/tar_misc.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_misc/Source/tar_misc.res -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_misc/tar_misc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_misc/tar_misc.dll -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_misc/tar_misc.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_misc/tar_misc.ini -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_misc/tar_misc_en.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_misc/tar_misc_en.chm -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_misc/tar_misc_ru.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_misc/tar_misc_ru.chm -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_test/test.cfg: -------------------------------------------------------------------------------- 1 | -$A8 2 | -$B- 3 | -$C+ 4 | -$D+ 5 | -$E- 6 | -$F- 7 | -$G+ 8 | -$H+ 9 | -$I+ 10 | -$J- 11 | -$K- 12 | -$L+ 13 | -$M- 14 | -$N+ 15 | -$O+ 16 | -$P+ 17 | -$Q- 18 | -$R- 19 | -$S- 20 | -$T- 21 | -$U- 22 | -$V+ 23 | -$W- 24 | -$X+ 25 | -$YD 26 | -$Z1 27 | -cg 28 | -AWinTypes=Windows;WinProcs=Windows;DbiTypes=BDE;DbiProcs=BDE;DbiErrs=BDE; 29 | -H+ 30 | -W+ 31 | -M 32 | -$M16384,1048576 33 | -K$00400000 34 | -LE"c:\program files\borland\delphi7\Projects\Bpl" 35 | -LN"c:\program files\borland\delphi7\Projects\Bpl" 36 | -w-UNSAFE_TYPE 37 | -w-UNSAFE_CODE 38 | -w-UNSAFE_CAST 39 | -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_test/test.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_test/test.dll -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_test/test.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_test/test.dpr -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_test/test.~dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_test/test.~dpr -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_timer/Help_en/index_en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_timer/Help_en/index_en.html -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_timer/Help_en/shed_en.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_timer/Help_en/shed_en.gif -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_timer/Help_en/timer_en.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_timer/Help_en/timer_en.gif -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_timer/Help_ru/index_ru.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_timer/Help_ru/index_ru.html -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_timer/Help_ru/shed_ru.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_timer/Help_ru/shed_ru.gif -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_timer/Help_ru/timer_ru.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_timer/Help_ru/timer_ru.gif -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_timer/Source/Common.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_timer/Source/Common.dcu -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_timer/Source/Common.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_timer/Source/Common.pas -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_timer/Source/InOut.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_timer/Source/InOut.dcu -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_timer/Source/Main.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_timer/Source/Main.dcu -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_timer/Source/WinCron.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_timer/Source/WinCron.dcu -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_timer/Source/WinCron.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_timer/Source/WinCron.pas -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_timer/Source/WinTimer.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_timer/Source/WinTimer.dcu -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_timer/Source/WinTimer.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_timer/Source/WinTimer.pas -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_timer/Source/tar_timer.cfg: -------------------------------------------------------------------------------- 1 | -$A8 2 | -$B- 3 | -$C+ 4 | -$D+ 5 | -$E- 6 | -$F- 7 | -$G+ 8 | -$H+ 9 | -$I+ 10 | -$J- 11 | -$K- 12 | -$L+ 13 | -$M- 14 | -$N+ 15 | -$O+ 16 | -$P+ 17 | -$Q+ 18 | -$R+ 19 | -$S- 20 | -$T- 21 | -$U- 22 | -$V+ 23 | -$W- 24 | -$X+ 25 | -$YD 26 | -$Z1 27 | -cg 28 | -AWinTypes=Windows;WinProcs=Windows;DbiTypes=BDE;DbiProcs=BDE;DbiErrs=BDE; 29 | -H+ 30 | -W+ 31 | -M 32 | -$M16384,1048576 33 | -K$00400000 34 | -LE"c:\program files\borland\delphi7\Projects\Bpl" 35 | -LN"c:\program files\borland\delphi7\Projects\Bpl" 36 | -w-COMPARING_SIGNED_UNSIGNED 37 | -w-UNSAFE_TYPE 38 | -w-UNSAFE_CODE 39 | -w-UNSAFE_CAST 40 | -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_timer/Source/tar_timer.dof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_timer/Source/tar_timer.dof -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_timer/Source/tar_timer.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_timer/Source/tar_timer.dpr -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_timer/Source/tar_timer.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_timer/Source/tar_timer.res -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_timer/tar_timer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_timer/tar_timer.dll -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_timer/tar_timer.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_timer/tar_timer.ini -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_timer/tar_timer_en.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_timer/tar_timer_en.chm -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_timer/tar_timer_ru.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_timer/tar_timer_ru.chm -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_tray/tar_tray.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_tray/tar_tray.dll -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_tray/tar_tray_hook.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_tray/tar_tray_hook.dll -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_tray/tar_tray_ru.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_tray/tar_tray_ru.txt -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_upd/UnzDll.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_upd/UnzDll.dll -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_upd/tar_upd.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_upd/tar_upd.dll -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_upd/tar_upd.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_upd/tar_upd.exe -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_upd/tar_upd.ini: -------------------------------------------------------------------------------- 1 | [General] 2 | Site=http://galan.dogmalab.ru/ 3 | Download=http://galan.dogmalab.ru/bin/typeandrun.zip 4 | Last=02.01.2004 5 | Filename=typeandrun.zip 6 | Exename=TypeAndRun.exe 7 | [Proxy] 8 | Host=proxy.nkosino.ru 9 | Username= 10 | Password= 11 | Port=3128 12 | Proxy=1 13 | Auth=0 14 | [Check] 15 | CheckUpdate=0 16 | CheckDate=14.01.2004 17 | -------------------------------------------------------------------------------- /Plugins/!~megaold/tar_upd/tar_upd_ru.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tar_upd/tar_upd_ru.txt -------------------------------------------------------------------------------- /Plugins/!~megaold/tarp_convertors/tarp_convertors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tarp_convertors/tarp_convertors.dll -------------------------------------------------------------------------------- /Plugins/!~megaold/tarp_convertors/tarp_convertors_en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tarp_convertors/tarp_convertors_en.txt -------------------------------------------------------------------------------- /Plugins/!~megaold/tarp_convertors/tarp_convertors_ru.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~megaold/tarp_convertors/tarp_convertors_ru.txt -------------------------------------------------------------------------------- /Plugins/!~old/tar_clipboard/tar_clipboard.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~old/tar_clipboard/tar_clipboard.dll -------------------------------------------------------------------------------- /Plugins/!~old/tar_clipboard/tar_clipboard.dll.pec2bac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~old/tar_clipboard/tar_clipboard.dll.pec2bac -------------------------------------------------------------------------------- /Plugins/!~old/tar_clipboard/tar_clipboard.ini: -------------------------------------------------------------------------------- 1 | name|JumpingJack 2 | country|Russia 3 | city|Moscow 4 | login|guest 5 | password|guest 6 | email|jumpingjack@mail.ru -------------------------------------------------------------------------------- /Plugins/!~old/tar_clipboard/tar_clipboard_ru.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~old/tar_clipboard/tar_clipboard_ru.txt -------------------------------------------------------------------------------- /Plugins/!~old/tar_easygo/BaseScripts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~old/tar_easygo/BaseScripts.dll -------------------------------------------------------------------------------- /Plugins/!~old/tar_easygo/NetSearch.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~old/tar_easygo/NetSearch.dll -------------------------------------------------------------------------------- /Plugins/!~old/tar_easygo/Power.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~old/tar_easygo/Power.dll -------------------------------------------------------------------------------- /Plugins/!~old/tar_easygo/TimeSync.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~old/tar_easygo/TimeSync.dll -------------------------------------------------------------------------------- /Plugins/!~old/tar_easygo/Winamp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~old/tar_easygo/Winamp.dll -------------------------------------------------------------------------------- /Plugins/!~old/tar_easygo/tar_easygo.cfg: -------------------------------------------------------------------------------- 1 | -$A8 2 | -$B- 3 | -$C+ 4 | -$D+ 5 | -$E- 6 | -$F- 7 | -$G+ 8 | -$H+ 9 | -$I+ 10 | -$J- 11 | -$K- 12 | -$L+ 13 | -$M- 14 | -$N+ 15 | -$O+ 16 | -$P+ 17 | -$Q- 18 | -$R- 19 | -$S- 20 | -$T- 21 | -$U- 22 | -$V+ 23 | -$W- 24 | -$X+ 25 | -$YD 26 | -$Z1 27 | -cg 28 | -AWinTypes=Windows;WinProcs=Windows;DbiTypes=BDE;DbiProcs=BDE;DbiErrs=BDE; 29 | -H+ 30 | -W+ 31 | -M 32 | -$M16384,1048576 33 | -K$00400000 34 | -LE"c:\program files\borland\delphi7\Projects\Bpl" 35 | -LN"c:\program files\borland\delphi7\Projects\Bpl" 36 | -w-UNSAFE_TYPE 37 | -w-UNSAFE_CODE 38 | -w-UNSAFE_CAST 39 | -------------------------------------------------------------------------------- /Plugins/!~old/tar_easygo/tar_easygo.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~old/tar_easygo/tar_easygo.dll -------------------------------------------------------------------------------- /Plugins/!~old/tar_easygo/tar_easygo.dll.pec2bac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~old/tar_easygo/tar_easygo.dll.pec2bac -------------------------------------------------------------------------------- /Plugins/!~old/tar_easygo/tar_easygo.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~old/tar_easygo/tar_easygo.dpr -------------------------------------------------------------------------------- /Plugins/!~old/tar_easygo/tar_easygo.~dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~old/tar_easygo/tar_easygo.~dpr -------------------------------------------------------------------------------- /Plugins/!~old/tar_easygo/tar_easygo_ru.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~old/tar_easygo/tar_easygo_ru.txt -------------------------------------------------------------------------------- /Plugins/!~old/tar_hotkeys/frmTARHookUnit.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~old/tar_hotkeys/frmTARHookUnit.dcu -------------------------------------------------------------------------------- /Plugins/!~old/tar_hotkeys/frmTARHookUnit.ddp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~old/tar_hotkeys/frmTARHookUnit.ddp -------------------------------------------------------------------------------- /Plugins/!~old/tar_hotkeys/frmTARHookUnit.dfm: -------------------------------------------------------------------------------- 1 | object frmTARHook: TfrmTARHook 2 | Left = 584 3 | Top = 416 4 | Width = 260 5 | Height = 245 6 | Caption = 'frmTARHook' 7 | Color = clBtnFace 8 | Font.Charset = DEFAULT_CHARSET 9 | Font.Color = clWindowText 10 | Font.Height = -11 11 | Font.Name = 'MS Sans Serif' 12 | Font.Style = [] 13 | OldCreateOrder = False 14 | PixelsPerInch = 96 15 | TextHeight = 13 16 | end 17 | -------------------------------------------------------------------------------- /Plugins/!~old/tar_hotkeys/frmTARHookUnit.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~old/tar_hotkeys/frmTARHookUnit.pas -------------------------------------------------------------------------------- /Plugins/!~old/tar_hotkeys/frmTARHookUnit.~ddp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~old/tar_hotkeys/frmTARHookUnit.~ddp -------------------------------------------------------------------------------- /Plugins/!~old/tar_hotkeys/frmTARHookUnit.~dfm: -------------------------------------------------------------------------------- 1 | object frmTARHook: TfrmTARHook 2 | Left = 584 3 | Top = 416 4 | Width = 260 5 | Height = 245 6 | Caption = 'frmTARHook' 7 | Color = clBtnFace 8 | Font.Charset = DEFAULT_CHARSET 9 | Font.Color = clWindowText 10 | Font.Height = -11 11 | Font.Name = 'MS Sans Serif' 12 | Font.Style = [] 13 | OldCreateOrder = False 14 | PixelsPerInch = 96 15 | TextHeight = 13 16 | end 17 | -------------------------------------------------------------------------------- /Plugins/!~old/tar_hotkeys/frmTARHookUnit.~pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~old/tar_hotkeys/frmTARHookUnit.~pas -------------------------------------------------------------------------------- /Plugins/!~old/tar_hotkeys/tar_hotkeys.cfg: -------------------------------------------------------------------------------- 1 | -$A8 2 | -$B- 3 | -$C+ 4 | -$D+ 5 | -$E- 6 | -$F- 7 | -$G+ 8 | -$H+ 9 | -$I+ 10 | -$J- 11 | -$K- 12 | -$L+ 13 | -$M- 14 | -$N+ 15 | -$O+ 16 | -$P+ 17 | -$Q- 18 | -$R- 19 | -$S- 20 | -$T- 21 | -$U- 22 | -$V+ 23 | -$W- 24 | -$X+ 25 | -$YD 26 | -$Z1 27 | -cg 28 | -AWinTypes=Windows;WinProcs=Windows;DbiTypes=BDE;DbiProcs=BDE;DbiErrs=BDE; 29 | -H+ 30 | -W+ 31 | -M 32 | -$M16384,1048576 33 | -K$00400000 34 | -LE"c:\program files\borland\delphi7\Projects\Bpl" 35 | -LN"c:\program files\borland\delphi7\Projects\Bpl" 36 | -w-UNSAFE_TYPE 37 | -w-UNSAFE_CODE 38 | -w-UNSAFE_CAST 39 | -------------------------------------------------------------------------------- /Plugins/!~old/tar_hotkeys/tar_hotkeys.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~old/tar_hotkeys/tar_hotkeys.dll -------------------------------------------------------------------------------- /Plugins/!~old/tar_hotkeys/tar_hotkeys.dll.pec2bac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~old/tar_hotkeys/tar_hotkeys.dll.pec2bac -------------------------------------------------------------------------------- /Plugins/!~old/tar_hotkeys/tar_hotkeys.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~old/tar_hotkeys/tar_hotkeys.dpr -------------------------------------------------------------------------------- /Plugins/!~old/tar_hotkeys/tar_hotkeys.ini: -------------------------------------------------------------------------------- 1 | w|j|~cdeject -------------------------------------------------------------------------------- /Plugins/!~old/tar_hotkeys/tar_hotkeys.~dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~old/tar_hotkeys/tar_hotkeys.~dpr -------------------------------------------------------------------------------- /Plugins/!~old/tar_hotkeys/tar_hotkeys_en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~old/tar_hotkeys/tar_hotkeys_en.txt -------------------------------------------------------------------------------- /Plugins/!~old/tar_hotkeys/tar_hotkeys_ru.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~old/tar_hotkeys/tar_hotkeys_ru.txt -------------------------------------------------------------------------------- /Plugins/!~old/tar_math/FuncParser.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~old/tar_math/FuncParser.dcu -------------------------------------------------------------------------------- /Plugins/!~old/tar_math/FuncParser.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~old/tar_math/FuncParser.pas -------------------------------------------------------------------------------- /Plugins/!~old/tar_math/FuncParser.~pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~old/tar_math/FuncParser.~pas -------------------------------------------------------------------------------- /Plugins/!~old/tar_math/hob.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~old/tar_math/hob.dcu -------------------------------------------------------------------------------- /Plugins/!~old/tar_math/hob.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~old/tar_math/hob.pas -------------------------------------------------------------------------------- /Plugins/!~old/tar_math/tar_math.cfg: -------------------------------------------------------------------------------- 1 | -$A8 2 | -$B- 3 | -$C+ 4 | -$D+ 5 | -$E- 6 | -$F- 7 | -$G+ 8 | -$H+ 9 | -$I+ 10 | -$J- 11 | -$K- 12 | -$L+ 13 | -$M- 14 | -$N+ 15 | -$O+ 16 | -$P+ 17 | -$Q- 18 | -$R- 19 | -$S- 20 | -$T- 21 | -$U- 22 | -$V+ 23 | -$W- 24 | -$X+ 25 | -$YD 26 | -$Z1 27 | -cg 28 | -AWinTypes=Windows;WinProcs=Windows;DbiTypes=BDE;DbiProcs=BDE;DbiErrs=BDE; 29 | -H+ 30 | -W+ 31 | -M 32 | -$M16384,1048576 33 | -K$00400000 34 | -LE"c:\program files\borland\delphi7\Projects\Bpl" 35 | -LN"c:\program files\borland\delphi7\Projects\Bpl" 36 | -w-UNSAFE_TYPE 37 | -w-UNSAFE_CODE 38 | -w-UNSAFE_CAST 39 | -------------------------------------------------------------------------------- /Plugins/!~old/tar_math/tar_math.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~old/tar_math/tar_math.dll -------------------------------------------------------------------------------- /Plugins/!~old/tar_math/tar_math.dll.pec2bac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~old/tar_math/tar_math.dll.pec2bac -------------------------------------------------------------------------------- /Plugins/!~old/tar_math/tar_math.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~old/tar_math/tar_math.dpr -------------------------------------------------------------------------------- /Plugins/!~old/tar_math/tar_math.ini: -------------------------------------------------------------------------------- 1 | [General] 2 | SelectAnswer=1 3 | CopyToClipboard=1 4 | UseEqual=0 5 | UseOriginal=0 6 | Round=1 7 | RoundLimit=13 -------------------------------------------------------------------------------- /Plugins/!~old/tar_math/tar_math.~dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~old/tar_math/tar_math.~dpr -------------------------------------------------------------------------------- /Plugins/!~old/tar_math/tar_math_en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~old/tar_math/tar_math_en.txt -------------------------------------------------------------------------------- /Plugins/!~old/tar_math/tar_math_ru.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~old/tar_math/tar_math_ru.txt -------------------------------------------------------------------------------- /Plugins/!~old/tar_mydll/tar_mydll.cfg: -------------------------------------------------------------------------------- 1 | -$A8 2 | -$B- 3 | -$C+ 4 | -$D+ 5 | -$E- 6 | -$F- 7 | -$G+ 8 | -$H+ 9 | -$I+ 10 | -$J- 11 | -$K- 12 | -$L+ 13 | -$M- 14 | -$N+ 15 | -$O+ 16 | -$P+ 17 | -$Q- 18 | -$R- 19 | -$S- 20 | -$T- 21 | -$U- 22 | -$V+ 23 | -$W- 24 | -$X+ 25 | -$YD 26 | -$Z1 27 | -cg 28 | -AWinTypes=Windows;WinProcs=Windows;DbiTypes=BDE;DbiProcs=BDE;DbiErrs=BDE; 29 | -H+ 30 | -W+ 31 | -M 32 | -$M16384,1048576 33 | -K$00400000 34 | -LE"c:\program files\borland\delphi7\Projects\Bpl" 35 | -LN"c:\program files\borland\delphi7\Projects\Bpl" 36 | -w-UNSAFE_TYPE 37 | -w-UNSAFE_CODE 38 | -w-UNSAFE_CAST 39 | -------------------------------------------------------------------------------- /Plugins/!~old/tar_mydll/tar_mydll.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~old/tar_mydll/tar_mydll.dll -------------------------------------------------------------------------------- /Plugins/!~old/tar_mydll/tar_mydll.dll.pec2bac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~old/tar_mydll/tar_mydll.dll.pec2bac -------------------------------------------------------------------------------- /Plugins/!~old/tar_mydll/tar_mydll.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~old/tar_mydll/tar_mydll.dpr -------------------------------------------------------------------------------- /Plugins/!~old/tar_mydll/tar_mydll.~dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~old/tar_mydll/tar_mydll.~dpr -------------------------------------------------------------------------------- /Plugins/!~old/tar_mydll_c/tar_mydll.cpp: -------------------------------------------------------------------------------- 1 | // tar_mydll.cpp : Defines the entry point for the DLL application. 2 | // 3 | 4 | #include 5 | #include "tar_mydll.h" 6 | 7 | static HWND MainWindow = 0; 8 | 9 | BOOL APIENTRY DllMain( HANDLE /*hModule*/, 10 | DWORD ul_reason_for_call, 11 | LPVOID /*lpReserved*/ ) 12 | { 13 | switch( ul_reason_for_call ) { 14 | case DLL_PROCESS_ATTACH: 15 | break; 16 | case DLL_THREAD_ATTACH: 17 | break; 18 | case DLL_THREAD_DETACH: 19 | break; 20 | case DLL_PROCESS_DETACH: 21 | break; 22 | } 23 | return TRUE; 24 | } 25 | 26 | void __cdecl Load( HWND mainWindow ) { 27 | MainWindow = mainWindow; 28 | } 29 | 30 | void __cdecl UnLoad() { 31 | return; 32 | } 33 | 34 | static TInfo Info = { sizeof( Info ), 35 | "Hello! I am the TypeAndRun plugin.", 36 | "Test plugin", 37 | "4.5", 38 | "description", 39 | "author", 40 | "copyright", 41 | "www.homepage.com" 42 | }; 43 | 44 | TInfo __cdecl GetInfo() { 45 | return Info; 46 | } 47 | 48 | int __cdecl GetCount() { 49 | return 1; 50 | } 51 | 52 | char* __cdecl GetString( int num ) { 53 | if( num == 0 ) 54 | return "sample"; 55 | else 56 | return ""; 57 | } 58 | 59 | 60 | static TExec Executed = {sizeof( Executed ), 1, 0, 0, 0}; 61 | static TExec Skipped = {sizeof( Skipped ), 0, "", 0, 0}; 62 | 63 | TExec __cdecl RunString( char* exec ) { 64 | char sample[7]; 65 | lstrcpyn( sample, exec, sizeof( sample ) / sizeof( *sample ) ); 66 | if( !lstrcmp( sample, "sample" ) ) 67 | { 68 | MessageBox( MainWindow, exec, "Sample Execution", 0 ); 69 | return Executed; 70 | } 71 | else 72 | return Skipped; 73 | } 74 | -------------------------------------------------------------------------------- /Plugins/!~old/tar_mydll_c/tar_mydll.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~old/tar_mydll_c/tar_mydll.dll -------------------------------------------------------------------------------- /Plugins/!~old/tar_mydll_c/tar_mydll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~old/tar_mydll_c/tar_mydll.h -------------------------------------------------------------------------------- /Plugins/!~old/tar_proc/tar_proc.cfg: -------------------------------------------------------------------------------- 1 | -$A8 2 | -$B- 3 | -$C+ 4 | -$D+ 5 | -$E- 6 | -$F- 7 | -$G+ 8 | -$H+ 9 | -$I+ 10 | -$J- 11 | -$K- 12 | -$L+ 13 | -$M- 14 | -$N+ 15 | -$O+ 16 | -$P+ 17 | -$Q- 18 | -$R- 19 | -$S- 20 | -$T- 21 | -$U- 22 | -$V+ 23 | -$W- 24 | -$X+ 25 | -$YD 26 | -$Z1 27 | -cg 28 | -AWinTypes=Windows;WinProcs=Windows;DbiTypes=BDE;DbiProcs=BDE;DbiErrs=BDE; 29 | -H+ 30 | -W+ 31 | -M 32 | -$M16384,1048576 33 | -K$00400000 34 | -LE"c:\program files\borland\delphi7\Projects\Bpl" 35 | -LN"c:\program files\borland\delphi7\Projects\Bpl" 36 | -w-UNSAFE_TYPE 37 | -w-UNSAFE_CODE 38 | -w-UNSAFE_CAST 39 | -------------------------------------------------------------------------------- /Plugins/!~old/tar_proc/tar_proc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~old/tar_proc/tar_proc.dll -------------------------------------------------------------------------------- /Plugins/!~old/tar_proc/tar_proc.dof: -------------------------------------------------------------------------------- 1 | [FileVersion] 2 | Version=7.0 3 | [Compiler] 4 | A=8 5 | B=0 6 | C=1 7 | D=1 8 | E=0 9 | F=0 10 | G=1 11 | H=1 12 | I=1 13 | J=0 14 | K=0 15 | L=1 16 | M=0 17 | N=1 18 | O=1 19 | P=1 20 | Q=0 21 | R=0 22 | S=0 23 | T=0 24 | U=0 25 | V=1 26 | W=0 27 | X=1 28 | Y=1 29 | Z=1 30 | ShowHints=1 31 | ShowWarnings=1 32 | UnitAliases=WinTypes=Windows;WinProcs=Windows;DbiTypes=BDE;DbiProcs=BDE;DbiErrs=BDE; 33 | NamespacePrefix= 34 | SymbolDeprecated=1 35 | SymbolLibrary=1 36 | SymbolPlatform=1 37 | UnitLibrary=1 38 | UnitPlatform=1 39 | UnitDeprecated=1 40 | HResultCompat=1 41 | HidingMember=1 42 | HiddenVirtual=1 43 | Garbage=1 44 | BoundsError=1 45 | ZeroNilCompat=1 46 | StringConstTruncated=1 47 | ForLoopVarVarPar=1 48 | TypedConstVarPar=1 49 | AsgToTypedConst=1 50 | CaseLabelRange=1 51 | ForVariable=1 52 | ConstructingAbstract=1 53 | ComparisonFalse=1 54 | ComparisonTrue=1 55 | ComparingSignedUnsigned=1 56 | CombiningSignedUnsigned=1 57 | UnsupportedConstruct=1 58 | FileOpen=1 59 | FileOpenUnitSrc=1 60 | BadGlobalSymbol=1 61 | DuplicateConstructorDestructor=1 62 | InvalidDirective=1 63 | PackageNoLink=1 64 | PackageThreadVar=1 65 | ImplicitImport=1 66 | HPPEMITIgnored=1 67 | NoRetVal=1 68 | UseBeforeDef=1 69 | ForLoopVarUndef=1 70 | UnitNameMismatch=1 71 | NoCFGFileFound=1 72 | MessageDirective=1 73 | ImplicitVariants=1 74 | UnicodeToLocale=1 75 | LocaleToUnicode=1 76 | ImagebaseMultiple=1 77 | SuspiciousTypecast=1 78 | PrivatePropAccessor=1 79 | UnsafeType=0 80 | UnsafeCode=0 81 | UnsafeCast=0 82 | [Linker] 83 | MapFile=0 84 | OutputObjs=0 85 | ConsoleApp=1 86 | DebugInfo=0 87 | RemoteSymbols=0 88 | MinStackSize=16384 89 | MaxStackSize=1048576 90 | ImageBase=4194304 91 | ExeDescription= 92 | [Directories] 93 | OutputDir= 94 | UnitOutputDir= 95 | PackageDLLOutputDir= 96 | PackageDCPOutputDir= 97 | SearchPath= 98 | Packages= 99 | Conditionals= 100 | DebugSourceDirs= 101 | UsePackages=0 102 | [Parameters] 103 | RunParams= 104 | HostApplication= 105 | Launcher= 106 | UseLauncher=0 107 | DebugCWD= 108 | [Version Info] 109 | IncludeVerInfo=0 110 | AutoIncBuild=0 111 | MajorVer=1 112 | MinorVer=0 113 | Release=0 114 | Build=0 115 | Debug=0 116 | PreRelease=0 117 | Special=0 118 | Private=0 119 | DLL=0 120 | Locale=1049 121 | CodePage=1251 122 | [Version Info Keys] 123 | CompanyName= 124 | FileDescription= 125 | FileVersion=1.0.0.0 126 | InternalName= 127 | LegalCopyright= 128 | LegalTrademarks= 129 | OriginalFilename= 130 | ProductName= 131 | ProductVersion=1.0.0.0 132 | Comments= 133 | -------------------------------------------------------------------------------- /Plugins/!~old/tar_proc/tar_proc.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~old/tar_proc/tar_proc.dpr -------------------------------------------------------------------------------- /Plugins/!~old/tar_proc/tar_proc.~dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~old/tar_proc/tar_proc.~dpr -------------------------------------------------------------------------------- /Plugins/!~old/tar_proc/tar_proc_ru.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~old/tar_proc/tar_proc_ru.txt -------------------------------------------------------------------------------- /Plugins/!~old/tar_system/cdeject.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~old/tar_system/cdeject.dcu -------------------------------------------------------------------------------- /Plugins/!~old/tar_system/cdeject.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~old/tar_system/cdeject.pas -------------------------------------------------------------------------------- /Plugins/!~old/tar_system/cdeject.~pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~old/tar_system/cdeject.~pas -------------------------------------------------------------------------------- /Plugins/!~old/tar_system/tar_system.cfg: -------------------------------------------------------------------------------- 1 | -$A8 2 | -$B- 3 | -$C+ 4 | -$D+ 5 | -$E- 6 | -$F- 7 | -$G+ 8 | -$H+ 9 | -$I+ 10 | -$J- 11 | -$K- 12 | -$L+ 13 | -$M- 14 | -$N+ 15 | -$O+ 16 | -$P+ 17 | -$Q- 18 | -$R- 19 | -$S- 20 | -$T- 21 | -$U- 22 | -$V+ 23 | -$W- 24 | -$X+ 25 | -$YD 26 | -$Z1 27 | -cg 28 | -AWinTypes=Windows;WinProcs=Windows;DbiTypes=BDE;DbiProcs=BDE;DbiErrs=BDE; 29 | -H+ 30 | -W+ 31 | -M 32 | -$M16384,1048576 33 | -K$00400000 34 | -LE"c:\program files\borland\delphi7\Projects\Bpl" 35 | -LN"c:\program files\borland\delphi7\Projects\Bpl" 36 | -w-UNSAFE_TYPE 37 | -w-UNSAFE_CODE 38 | -w-UNSAFE_CAST 39 | -------------------------------------------------------------------------------- /Plugins/!~old/tar_system/tar_system.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~old/tar_system/tar_system.dll -------------------------------------------------------------------------------- /Plugins/!~old/tar_system/tar_system.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~old/tar_system/tar_system.dpr -------------------------------------------------------------------------------- /Plugins/!~old/tar_system/tar_system.~dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~old/tar_system/tar_system.~dpr -------------------------------------------------------------------------------- /Plugins/!~old/tar_system/tar_system_en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~old/tar_system/tar_system_en.txt -------------------------------------------------------------------------------- /Plugins/!~old/tar_system/tar_system_ru.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~old/tar_system/tar_system_ru.txt -------------------------------------------------------------------------------- /Plugins/!~old/tar_system/Как получить все dial-up соединения.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~old/tar_system/Как получить все dial-up соединения.txt -------------------------------------------------------------------------------- /Plugins/!~old/tar_test/test.cfg: -------------------------------------------------------------------------------- 1 | -$A8 2 | -$B- 3 | -$C+ 4 | -$D+ 5 | -$E- 6 | -$F- 7 | -$G+ 8 | -$H+ 9 | -$I+ 10 | -$J- 11 | -$K- 12 | -$L+ 13 | -$M- 14 | -$N+ 15 | -$O+ 16 | -$P+ 17 | -$Q- 18 | -$R- 19 | -$S- 20 | -$T- 21 | -$U- 22 | -$V+ 23 | -$W- 24 | -$X+ 25 | -$YD 26 | -$Z1 27 | -cg 28 | -AWinTypes=Windows;WinProcs=Windows;DbiTypes=BDE;DbiProcs=BDE;DbiErrs=BDE; 29 | -H+ 30 | -W+ 31 | -M 32 | -$M16384,1048576 33 | -K$00400000 34 | -LE"c:\program files\borland\delphi7\Projects\Bpl" 35 | -LN"c:\program files\borland\delphi7\Projects\Bpl" 36 | -w-UNSAFE_TYPE 37 | -w-UNSAFE_CODE 38 | -w-UNSAFE_CAST 39 | -------------------------------------------------------------------------------- /Plugins/!~old/tar_test/test.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~old/tar_test/test.dll -------------------------------------------------------------------------------- /Plugins/!~old/tar_test/test.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~old/tar_test/test.dpr -------------------------------------------------------------------------------- /Plugins/!~old/tar_test/test.~dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~old/tar_test/test.~dpr -------------------------------------------------------------------------------- /Plugins/!~old/tar_timer/Common.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~old/tar_timer/Common.pas -------------------------------------------------------------------------------- /Plugins/!~old/tar_timer/FTimer.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~old/tar_timer/FTimer.dfm -------------------------------------------------------------------------------- /Plugins/!~old/tar_timer/FTimer.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~old/tar_timer/FTimer.pas -------------------------------------------------------------------------------- /Plugins/!~old/tar_timer/Tar_Timer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~old/tar_timer/Tar_Timer.dll -------------------------------------------------------------------------------- /Plugins/!~old/tar_timer/Tar_timer_en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~old/tar_timer/Tar_timer_en.txt -------------------------------------------------------------------------------- /Plugins/!~old/tar_timer/Tar_timer_ru.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~old/tar_timer/Tar_timer_ru.txt -------------------------------------------------------------------------------- /Plugins/!~old/tar_timer/Timer.dof: -------------------------------------------------------------------------------- 1 | [Compiler] 2 | A=1 3 | B=0 4 | C=1 5 | D=1 6 | E=0 7 | F=0 8 | G=1 9 | H=1 10 | I=1 11 | J=1 12 | K=0 13 | L=1 14 | M=0 15 | N=1 16 | O=1 17 | P=1 18 | Q=0 19 | R=0 20 | S=0 21 | T=0 22 | U=0 23 | V=1 24 | W=0 25 | X=1 26 | Y=0 27 | Z=1 28 | ShowHints=1 29 | ShowWarnings=1 30 | UnitAliases=WinTypes=Windows;WinProcs=Windows;DbiTypes=BDE;DbiProcs=BDE;DbiErrs=BDE; 31 | [Linker] 32 | MapFile=0 33 | OutputObjs=0 34 | ConsoleApp=1 35 | DebugInfo=0 36 | MinStackSize=16384 37 | MaxStackSize=1048576 38 | ImageBase=4194304 39 | ExeDescription= 40 | [Directories] 41 | OutputDir=\exe 42 | UnitOutputDir=\exe 43 | SearchPath= 44 | Packages=vclx30;VCL30;vcldb30;vcldbx30;VclSmp30;Qrpt30;teeui30;teedb30;tee30;IBEVNT30 45 | Conditionals= 46 | DebugSourceDirs= 47 | UsePackages=0 48 | [Parameters] 49 | RunParams= 50 | HostApplication= 51 | [Version Info] 52 | IncludeVerInfo=0 53 | AutoIncBuild=0 54 | MajorVer=1 55 | MinorVer=0 56 | Release=0 57 | Build=0 58 | Debug=0 59 | PreRelease=0 60 | Special=0 61 | Private=0 62 | DLL=0 63 | Locale=1049 64 | CodePage=1251 65 | [Version Info Keys] 66 | CompanyName= 67 | FileDescription= 68 | FileVersion=1.0.0.0 69 | InternalName= 70 | LegalCopyright= 71 | LegalTrademarks= 72 | OriginalFilename= 73 | ProductName= 74 | ProductVersion=1.0.0.0 75 | Comments= 76 | -------------------------------------------------------------------------------- /Plugins/!~old/tar_timer/Timer.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~old/tar_timer/Timer.dpr -------------------------------------------------------------------------------- /Plugins/!~old/tar_tray/tar_tray.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~old/tar_tray/tar_tray.dll -------------------------------------------------------------------------------- /Plugins/!~old/tar_tray/tar_tray_hook.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~old/tar_tray/tar_tray_hook.dll -------------------------------------------------------------------------------- /Plugins/!~old/tar_tray/tar_tray_ru.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~old/tar_tray/tar_tray_ru.txt -------------------------------------------------------------------------------- /Plugins/!~old/tar_upd/UnzDll.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~old/tar_upd/UnzDll.dll -------------------------------------------------------------------------------- /Plugins/!~old/tar_upd/tar_upd.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~old/tar_upd/tar_upd.dll -------------------------------------------------------------------------------- /Plugins/!~old/tar_upd/tar_upd.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~old/tar_upd/tar_upd.exe -------------------------------------------------------------------------------- /Plugins/!~old/tar_upd/tar_upd.ini: -------------------------------------------------------------------------------- 1 | [General] 2 | Site=http://galan.dogmalab.ru/ 3 | Download=http://galan.dogmalab.ru/bin/typeandrun.zip 4 | Last=02.01.2004 5 | Filename=typeandrun.zip 6 | Exename=TypeAndRun.exe 7 | [Proxy] 8 | Host=proxy.nkosino.ru 9 | Username= 10 | Password= 11 | Port=3128 12 | Proxy=1 13 | Auth=0 14 | [Check] 15 | CheckUpdate=0 16 | CheckDate=14.01.2004 17 | -------------------------------------------------------------------------------- /Plugins/!~old/tar_upd/tar_upd_ru.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~old/tar_upd/tar_upd_ru.txt -------------------------------------------------------------------------------- /Plugins/!~old/tar_urlcompleter/tar_urlcompleter.cfg: -------------------------------------------------------------------------------- 1 | -$A8 2 | -$B- 3 | -$C+ 4 | -$D+ 5 | -$E- 6 | -$F- 7 | -$G+ 8 | -$H+ 9 | -$I+ 10 | -$J- 11 | -$K- 12 | -$L+ 13 | -$M- 14 | -$N+ 15 | -$O+ 16 | -$P+ 17 | -$Q- 18 | -$R- 19 | -$S- 20 | -$T- 21 | -$U- 22 | -$V+ 23 | -$W- 24 | -$X+ 25 | -$YD 26 | -$Z1 27 | -cg 28 | -AWinTypes=Windows;WinProcs=Windows;DbiTypes=BDE;DbiProcs=BDE;DbiErrs=BDE; 29 | -H+ 30 | -W+ 31 | -M 32 | -$M16384,1048576 33 | -K$00400000 34 | -LE"c:\program files\borland\delphi7\Projects\Bpl" 35 | -LN"c:\program files\borland\delphi7\Projects\Bpl" 36 | -w-UNSAFE_TYPE 37 | -w-UNSAFE_CODE 38 | -w-UNSAFE_CAST 39 | -------------------------------------------------------------------------------- /Plugins/!~old/tar_urlcompleter/tar_urlcompleter.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~old/tar_urlcompleter/tar_urlcompleter.dll -------------------------------------------------------------------------------- /Plugins/!~old/tar_urlcompleter/tar_urlcompleter.dll.pec2bac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~old/tar_urlcompleter/tar_urlcompleter.dll.pec2bac -------------------------------------------------------------------------------- /Plugins/!~old/tar_urlcompleter/tar_urlcompleter.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~old/tar_urlcompleter/tar_urlcompleter.dpr -------------------------------------------------------------------------------- /Plugins/!~old/tar_urlcompleter/tar_urlcompleter.~dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~old/tar_urlcompleter/tar_urlcompleter.~dpr -------------------------------------------------------------------------------- /Plugins/!~old/tar_urlcompleter/tar_urlcompleter_ru.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~old/tar_urlcompleter/tar_urlcompleter_ru.txt -------------------------------------------------------------------------------- /Plugins/!~old/tar_winamp/tar_winamp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~old/tar_winamp/tar_winamp.dll -------------------------------------------------------------------------------- /Plugins/!~old/tar_winamp/tar_winamp.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~old/tar_winamp/tar_winamp.dpr -------------------------------------------------------------------------------- /Plugins/!~old/tar_winamp/tar_winamp_ru.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~old/tar_winamp/tar_winamp_ru.txt -------------------------------------------------------------------------------- /Plugins/!~old/tarp_convertors/tarp_convertors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~old/tarp_convertors/tarp_convertors.dll -------------------------------------------------------------------------------- /Plugins/!~old/tarp_convertors/tarp_convertors_en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~old/tarp_convertors/tarp_convertors_en.txt -------------------------------------------------------------------------------- /Plugins/!~old/tarp_convertors/tarp_convertors_ru.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/!~old/tarp_convertors/tarp_convertors_ru.txt -------------------------------------------------------------------------------- /Plugins/sample.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/sample.zip -------------------------------------------------------------------------------- /Plugins/tar_amp/LangProc.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/tar_amp/LangProc.dcu -------------------------------------------------------------------------------- /Plugins/tar_amp/LangProc.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/tar_amp/LangProc.pas -------------------------------------------------------------------------------- /Plugins/tar_amp/Media.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/tar_amp/Media.dcu -------------------------------------------------------------------------------- /Plugins/tar_amp/Media.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/tar_amp/Media.pas -------------------------------------------------------------------------------- /Plugins/tar_amp/tar_amp.cfg: -------------------------------------------------------------------------------- 1 | -$A8 2 | -$B- 3 | -$C+ 4 | -$D+ 5 | -$E- 6 | -$F- 7 | -$G+ 8 | -$H+ 9 | -$I+ 10 | -$J- 11 | -$K- 12 | -$L+ 13 | -$M- 14 | -$N+ 15 | -$O+ 16 | -$P+ 17 | -$Q- 18 | -$R- 19 | -$S- 20 | -$T- 21 | -$U- 22 | -$V+ 23 | -$W- 24 | -$X+ 25 | -$YD 26 | -$Z1 27 | -cg 28 | -AWinTypes=Windows;WinProcs=Windows;DbiTypes=BDE;DbiProcs=BDE;DbiErrs=BDE; 29 | -H+ 30 | -W+ 31 | -M 32 | -$M16384,1048576 33 | -K$00400000 34 | -LE"c:\program files\borland\delphi7\Projects\Bpl" 35 | -LN"c:\program files\borland\delphi7\Projects\Bpl" 36 | -w-UNSAFE_TYPE 37 | -w-UNSAFE_CODE 38 | -w-UNSAFE_CAST 39 | -------------------------------------------------------------------------------- /Plugins/tar_amp/tar_amp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/tar_amp/tar_amp.dll -------------------------------------------------------------------------------- /Plugins/tar_amp/tar_amp.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/tar_amp/tar_amp.dpr -------------------------------------------------------------------------------- /Plugins/tar_amp/tar_amp.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/tar_amp/tar_amp.ini -------------------------------------------------------------------------------- /Plugins/tar_amp/tar_amp.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/tar_amp/tar_amp.res -------------------------------------------------------------------------------- /Plugins/tar_amp/tar_amp.~dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/tar_amp/tar_amp.~dpr -------------------------------------------------------------------------------- /Plugins/tar_amp/tar_amp_ru.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/tar_amp/tar_amp_ru.htm -------------------------------------------------------------------------------- /Plugins/tar_clip/CLIP.ICO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/tar_clip/CLIP.ICO -------------------------------------------------------------------------------- /Plugins/tar_clip/Common.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/tar_clip/Common.dcu -------------------------------------------------------------------------------- /Plugins/tar_clip/Common.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/tar_clip/Common.pas -------------------------------------------------------------------------------- /Plugins/tar_clip/Main.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/tar_clip/Main.dcu -------------------------------------------------------------------------------- /Plugins/tar_clip/Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/tar_clip/Main.pas -------------------------------------------------------------------------------- /Plugins/tar_clip/OPT.ICO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/tar_clip/OPT.ICO -------------------------------------------------------------------------------- /Plugins/tar_clip/Option.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/tar_clip/Option.dcu -------------------------------------------------------------------------------- /Plugins/tar_clip/Target.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/tar_clip/Target.bmp -------------------------------------------------------------------------------- /Plugins/tar_clip/WIN.ICO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/tar_clip/WIN.ICO -------------------------------------------------------------------------------- /Plugins/tar_clip/Wins.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/tar_clip/Wins.dcu -------------------------------------------------------------------------------- /Plugins/tar_clip/tar_clip.cfg: -------------------------------------------------------------------------------- 1 | -$A8 2 | -$B- 3 | -$C+ 4 | -$D+ 5 | -$E- 6 | -$F- 7 | -$G+ 8 | -$H+ 9 | -$I+ 10 | -$J- 11 | -$K- 12 | -$L+ 13 | -$M- 14 | -$N+ 15 | -$O+ 16 | -$P+ 17 | -$Q- 18 | -$R- 19 | -$S- 20 | -$T- 21 | -$U- 22 | -$V+ 23 | -$W- 24 | -$X+ 25 | -$YD 26 | -$Z1 27 | -cg 28 | -AWinTypes=Windows;WinProcs=Windows;DbiTypes=BDE;DbiProcs=BDE;DbiErrs=BDE; 29 | -H+ 30 | -W+ 31 | -M 32 | -$M16384,1048576 33 | -K$00400000 34 | -LE"c:\program files\borland\delphi7\Projects\Bpl" 35 | -LN"c:\program files\borland\delphi7\Projects\Bpl" 36 | -w-UNSAFE_TYPE 37 | -w-UNSAFE_CODE 38 | -w-UNSAFE_CAST 39 | -------------------------------------------------------------------------------- /Plugins/tar_clip/tar_clip.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/tar_clip/tar_clip.dll -------------------------------------------------------------------------------- /Plugins/tar_clip/tar_clip.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/tar_clip/tar_clip.dpr -------------------------------------------------------------------------------- /Plugins/tar_clip/tar_clip.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/tar_clip/tar_clip.ini -------------------------------------------------------------------------------- /Plugins/tar_clip/tar_clip.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/tar_clip/tar_clip.res -------------------------------------------------------------------------------- /Plugins/tar_clip/tar_clip_ru.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/tar_clip/tar_clip_ru.htm -------------------------------------------------------------------------------- /Plugins/tar_easygo/BaseScripts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/tar_easygo/BaseScripts.dll -------------------------------------------------------------------------------- /Plugins/tar_easygo/NetSearch.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/tar_easygo/NetSearch.dll -------------------------------------------------------------------------------- /Plugins/tar_easygo/Power.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/tar_easygo/Power.dll -------------------------------------------------------------------------------- /Plugins/tar_easygo/TimeSync.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/tar_easygo/TimeSync.dll -------------------------------------------------------------------------------- /Plugins/tar_easygo/Winamp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/tar_easygo/Winamp.dll -------------------------------------------------------------------------------- /Plugins/tar_easygo/tar_easygo.cfg: -------------------------------------------------------------------------------- 1 | -$A8 2 | -$B- 3 | -$C+ 4 | -$D+ 5 | -$E- 6 | -$F- 7 | -$G+ 8 | -$H+ 9 | -$I+ 10 | -$J- 11 | -$K- 12 | -$L+ 13 | -$M- 14 | -$N+ 15 | -$O+ 16 | -$P+ 17 | -$Q- 18 | -$R- 19 | -$S- 20 | -$T- 21 | -$U- 22 | -$V+ 23 | -$W- 24 | -$X+ 25 | -$YD 26 | -$Z1 27 | -cg 28 | -AWinTypes=Windows;WinProcs=Windows;DbiTypes=BDE;DbiProcs=BDE;DbiErrs=BDE; 29 | -H+ 30 | -W+ 31 | -M 32 | -$M16384,1048576 33 | -K$00400000 34 | -LE"c:\program files\borland\delphi7\Projects\Bpl" 35 | -LN"c:\program files\borland\delphi7\Projects\Bpl" 36 | -w-UNSAFE_TYPE 37 | -w-UNSAFE_CODE 38 | -w-UNSAFE_CAST 39 | -------------------------------------------------------------------------------- /Plugins/tar_easygo/tar_easygo.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/tar_easygo/tar_easygo.dll -------------------------------------------------------------------------------- /Plugins/tar_easygo/tar_easygo.dll.pec2bac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/tar_easygo/tar_easygo.dll.pec2bac -------------------------------------------------------------------------------- /Plugins/tar_easygo/tar_easygo.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/tar_easygo/tar_easygo.dpr -------------------------------------------------------------------------------- /Plugins/tar_easygo/tar_easygo.~dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/tar_easygo/tar_easygo.~dpr -------------------------------------------------------------------------------- /Plugins/tar_easygo/tar_easygo_ru.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/tar_easygo/tar_easygo_ru.txt -------------------------------------------------------------------------------- /Plugins/tar_math/FuncParser.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/tar_math/FuncParser.dcu -------------------------------------------------------------------------------- /Plugins/tar_math/FuncParser.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/tar_math/FuncParser.pas -------------------------------------------------------------------------------- /Plugins/tar_math/FuncParser.~pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/tar_math/FuncParser.~pas -------------------------------------------------------------------------------- /Plugins/tar_math/hob.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/tar_math/hob.dcu -------------------------------------------------------------------------------- /Plugins/tar_math/hob.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/tar_math/hob.pas -------------------------------------------------------------------------------- /Plugins/tar_math/tar_math.cfg: -------------------------------------------------------------------------------- 1 | -$A8 2 | -$B- 3 | -$C+ 4 | -$D+ 5 | -$E- 6 | -$F- 7 | -$G+ 8 | -$H+ 9 | -$I+ 10 | -$J- 11 | -$K- 12 | -$L+ 13 | -$M- 14 | -$N+ 15 | -$O+ 16 | -$P+ 17 | -$Q- 18 | -$R- 19 | -$S- 20 | -$T- 21 | -$U- 22 | -$V+ 23 | -$W- 24 | -$X+ 25 | -$YD 26 | -$Z1 27 | -cg 28 | -AWinTypes=Windows;WinProcs=Windows;DbiTypes=BDE;DbiProcs=BDE;DbiErrs=BDE; 29 | -H+ 30 | -W+ 31 | -M 32 | -$M16384,1048576 33 | -K$00400000 34 | -LE"c:\program files\borland\delphi7\Projects\Bpl" 35 | -LN"c:\program files\borland\delphi7\Projects\Bpl" 36 | -w-UNSAFE_TYPE 37 | -w-UNSAFE_CODE 38 | -w-UNSAFE_CAST 39 | -------------------------------------------------------------------------------- /Plugins/tar_math/tar_math.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/tar_math/tar_math.dll -------------------------------------------------------------------------------- /Plugins/tar_math/tar_math.dll.pec2bac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/tar_math/tar_math.dll.pec2bac -------------------------------------------------------------------------------- /Plugins/tar_math/tar_math.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/tar_math/tar_math.dpr -------------------------------------------------------------------------------- /Plugins/tar_math/tar_math.ini: -------------------------------------------------------------------------------- 1 | [General] 2 | SelectAnswer=1 3 | CopyToClipboard=1 4 | UseEqual=0 5 | UseOriginal=0 6 | Round=0 7 | RoundLimit=13 -------------------------------------------------------------------------------- /Plugins/tar_math/tar_math.~dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/tar_math/tar_math.~dpr -------------------------------------------------------------------------------- /Plugins/tar_math/tar_math_en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/tar_math/tar_math_en.txt -------------------------------------------------------------------------------- /Plugins/tar_math/tar_math_ru.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/tar_math/tar_math_ru.txt -------------------------------------------------------------------------------- /Plugins/tar_mydll/tar_mydll.cfg: -------------------------------------------------------------------------------- 1 | -$A8 2 | -$B- 3 | -$C+ 4 | -$D+ 5 | -$E- 6 | -$F- 7 | -$G+ 8 | -$H+ 9 | -$I+ 10 | -$J- 11 | -$K- 12 | -$L+ 13 | -$M- 14 | -$N+ 15 | -$O+ 16 | -$P+ 17 | -$Q- 18 | -$R- 19 | -$S- 20 | -$T- 21 | -$U- 22 | -$V+ 23 | -$W- 24 | -$X+ 25 | -$YD 26 | -$Z1 27 | -cg 28 | -AWinTypes=Windows;WinProcs=Windows;DbiTypes=BDE;DbiProcs=BDE;DbiErrs=BDE; 29 | -H+ 30 | -W+ 31 | -M 32 | -$M16384,1048576 33 | -K$00400000 34 | -LE"c:\program files\borland\delphi7\Projects\Bpl" 35 | -LN"c:\program files\borland\delphi7\Projects\Bpl" 36 | -w-UNSAFE_TYPE 37 | -w-UNSAFE_CODE 38 | -w-UNSAFE_CAST 39 | -------------------------------------------------------------------------------- /Plugins/tar_mydll/tar_mydll.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/tar_mydll/tar_mydll.dll -------------------------------------------------------------------------------- /Plugins/tar_mydll/tar_mydll.dll.pec2bac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/tar_mydll/tar_mydll.dll.pec2bac -------------------------------------------------------------------------------- /Plugins/tar_mydll/tar_mydll.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/tar_mydll/tar_mydll.dpr -------------------------------------------------------------------------------- /Plugins/tar_mydll/tar_mydll.~dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/tar_mydll/tar_mydll.~dpr -------------------------------------------------------------------------------- /Plugins/tar_mydll_c/tar_mydll.cpp: -------------------------------------------------------------------------------- 1 | // tar_mydll.cpp : Defines the entry point for the DLL application. 2 | // 3 | 4 | #include 5 | #include "tar_mydll.h" 6 | 7 | static HWND MainWindow = 0; 8 | 9 | BOOL APIENTRY DllMain( HANDLE /*hModule*/, 10 | DWORD ul_reason_for_call, 11 | LPVOID /*lpReserved*/ ) 12 | { 13 | switch( ul_reason_for_call ) { 14 | case DLL_PROCESS_ATTACH: 15 | break; 16 | case DLL_THREAD_ATTACH: 17 | break; 18 | case DLL_THREAD_DETACH: 19 | break; 20 | case DLL_PROCESS_DETACH: 21 | break; 22 | } 23 | return TRUE; 24 | } 25 | 26 | void __cdecl Load( HWND mainWindow ) { 27 | MainWindow = mainWindow; 28 | } 29 | 30 | void __cdecl UnLoad() { 31 | return; 32 | } 33 | 34 | static TInfo Info = { sizeof( Info ), 35 | "Hello! I am the TypeAndRun plugin.", 36 | "Test plugin", 37 | "4.5", 38 | "description", 39 | "author", 40 | "copyright", 41 | "www.homepage.com" 42 | }; 43 | 44 | TInfo __cdecl GetInfo() { 45 | return Info; 46 | } 47 | 48 | int __cdecl GetCount() { 49 | return 1; 50 | } 51 | 52 | char* __cdecl GetString( int num ) { 53 | if( num == 0 ) 54 | return "sample"; 55 | else 56 | return ""; 57 | } 58 | 59 | 60 | static TExec Executed = {sizeof( Executed ), 1, 0, 0, 0}; 61 | static TExec Skipped = {sizeof( Skipped ), 0, "", 0, 0}; 62 | 63 | TExec __cdecl RunString( char* exec ) { 64 | char sample[7]; 65 | lstrcpyn( sample, exec, sizeof( sample ) / sizeof( *sample ) ); 66 | if( !lstrcmp( sample, "sample" ) ) 67 | { 68 | MessageBox( MainWindow, exec, "Sample Execution", 0 ); 69 | return Executed; 70 | } 71 | else 72 | return Skipped; 73 | } 74 | -------------------------------------------------------------------------------- /Plugins/tar_mydll_c/tar_mydll.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/tar_mydll_c/tar_mydll.dll -------------------------------------------------------------------------------- /Plugins/tar_mydll_c/tar_mydll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/tar_mydll_c/tar_mydll.h -------------------------------------------------------------------------------- /Plugins/tar_system/cdeject.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/tar_system/cdeject.dcu -------------------------------------------------------------------------------- /Plugins/tar_system/cdeject.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/tar_system/cdeject.pas -------------------------------------------------------------------------------- /Plugins/tar_system/cdeject.~pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/tar_system/cdeject.~pas -------------------------------------------------------------------------------- /Plugins/tar_system/tar_system.cfg: -------------------------------------------------------------------------------- 1 | -$A8 2 | -$B- 3 | -$C+ 4 | -$D+ 5 | -$E- 6 | -$F- 7 | -$G+ 8 | -$H+ 9 | -$I+ 10 | -$J- 11 | -$K- 12 | -$L+ 13 | -$M- 14 | -$N+ 15 | -$O+ 16 | -$P+ 17 | -$Q- 18 | -$R- 19 | -$S- 20 | -$T- 21 | -$U- 22 | -$V+ 23 | -$W- 24 | -$X+ 25 | -$YD 26 | -$Z1 27 | -cg 28 | -AWinTypes=Windows;WinProcs=Windows;DbiTypes=BDE;DbiProcs=BDE;DbiErrs=BDE; 29 | -H+ 30 | -W+ 31 | -M 32 | -$M16384,1048576 33 | -K$00400000 34 | -LE"c:\program files\borland\delphi7\Projects\Bpl" 35 | -LN"c:\program files\borland\delphi7\Projects\Bpl" 36 | -w-UNSAFE_TYPE 37 | -w-UNSAFE_CODE 38 | -w-UNSAFE_CAST 39 | -------------------------------------------------------------------------------- /Plugins/tar_system/tar_system.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/tar_system/tar_system.dll -------------------------------------------------------------------------------- /Plugins/tar_system/tar_system.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/tar_system/tar_system.dpr -------------------------------------------------------------------------------- /Plugins/tar_system/tar_system.~dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/tar_system/tar_system.~dpr -------------------------------------------------------------------------------- /Plugins/tar_system/tar_system_en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/tar_system/tar_system_en.txt -------------------------------------------------------------------------------- /Plugins/tar_system/tar_system_ru.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/tar_system/tar_system_ru.txt -------------------------------------------------------------------------------- /Plugins/tar_system/Как получить все dial-up соединения.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/tar_system/Как получить все dial-up соединения.txt -------------------------------------------------------------------------------- /Plugins/tar_urlcompleter/tar_urlcompleter.cfg: -------------------------------------------------------------------------------- 1 | -$A8 2 | -$B- 3 | -$C+ 4 | -$D+ 5 | -$E- 6 | -$F- 7 | -$G+ 8 | -$H+ 9 | -$I+ 10 | -$J- 11 | -$K- 12 | -$L+ 13 | -$M- 14 | -$N+ 15 | -$O+ 16 | -$P+ 17 | -$Q- 18 | -$R- 19 | -$S- 20 | -$T- 21 | -$U- 22 | -$V+ 23 | -$W- 24 | -$X+ 25 | -$YD 26 | -$Z1 27 | -cg 28 | -AWinTypes=Windows;WinProcs=Windows;DbiTypes=BDE;DbiProcs=BDE;DbiErrs=BDE; 29 | -H+ 30 | -W+ 31 | -M 32 | -$M16384,1048576 33 | -K$00400000 34 | -LE"c:\program files\borland\delphi7\Projects\Bpl" 35 | -LN"c:\program files\borland\delphi7\Projects\Bpl" 36 | -w-UNSAFE_TYPE 37 | -w-UNSAFE_CODE 38 | -w-UNSAFE_CAST 39 | -------------------------------------------------------------------------------- /Plugins/tar_urlcompleter/tar_urlcompleter.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/tar_urlcompleter/tar_urlcompleter.dll -------------------------------------------------------------------------------- /Plugins/tar_urlcompleter/tar_urlcompleter.dll.pec2bac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/tar_urlcompleter/tar_urlcompleter.dll.pec2bac -------------------------------------------------------------------------------- /Plugins/tar_urlcompleter/tar_urlcompleter.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/tar_urlcompleter/tar_urlcompleter.dpr -------------------------------------------------------------------------------- /Plugins/tar_urlcompleter/tar_urlcompleter.~dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/tar_urlcompleter/tar_urlcompleter.~dpr -------------------------------------------------------------------------------- /Plugins/tar_urlcompleter/tar_urlcompleter_ru.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Plugins/tar_urlcompleter/tar_urlcompleter_ru.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # TypeAndRun 2 | 3 | *NB*: программа не моя, я лишь выложил полученные когда-то от автора исходники, чтобы не пропадали. 4 | 5 | ## Описание 6 | Программа представляет собой открывающуюся по горячей клавише консоль, позволяющую быстро запускать любые приложения, документы, URL, адреса почты и папки. Забудьте ярлыки и различные панели для быстрого запуска программ. Понравится тем, кто любит \*nix системы, кто привык запускать программы через командную строку, кто быстро печатает, а также тем, кто привык работать с горячими клавишами. 7 | 8 | This program is a hot-key enabled console which allows you to start any applications, open any documents, URLs, mail addresses and folders. Forget shortcuts and various fast start panels. This program will suit those who love \*nix systems, who are used to run applications through the command line, who type fast and who like hot keys. 9 | -------------------------------------------------------------------------------- /Settings.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Settings.dcu -------------------------------------------------------------------------------- /Settings.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Settings.pas -------------------------------------------------------------------------------- /Sounds/01execinternal.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Sounds/01execinternal.wav -------------------------------------------------------------------------------- /Sounds/02execalias.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Sounds/02execalias.wav -------------------------------------------------------------------------------- /Sounds/03execsysalias.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Sounds/03execsysalias.wav -------------------------------------------------------------------------------- /Sounds/04execurl.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Sounds/04execurl.wav -------------------------------------------------------------------------------- /Sounds/05execemail.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Sounds/05execemail.wav -------------------------------------------------------------------------------- /Sounds/06execfolder.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Sounds/06execfolder.wav -------------------------------------------------------------------------------- /Sounds/07execfile.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Sounds/07execfile.wav -------------------------------------------------------------------------------- /Sounds/08execplugin.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Sounds/08execplugin.wav -------------------------------------------------------------------------------- /Sounds/09exeallother.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Sounds/09exeallother.wav -------------------------------------------------------------------------------- /Static.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Static.dcu -------------------------------------------------------------------------------- /Static.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Static.pas -------------------------------------------------------------------------------- /TypeAndRun.cfg: -------------------------------------------------------------------------------- 1 | -$A8 2 | -$B- 3 | -$C+ 4 | -$D+ 5 | -$E- 6 | -$F- 7 | -$G+ 8 | -$H+ 9 | -$I+ 10 | -$J- 11 | -$K- 12 | -$L+ 13 | -$M- 14 | -$N+ 15 | -$O+ 16 | -$P+ 17 | -$Q+ 18 | -$R+ 19 | -$S- 20 | -$T- 21 | -$U- 22 | -$V+ 23 | -$W- 24 | -$X+ 25 | -$YD 26 | -$Z1 27 | -cg 28 | -AWinTypes=Windows;WinProcs=Windows;DbiTypes=BDE;DbiProcs=BDE;DbiErrs=BDE; 29 | -H+ 30 | -W+ 31 | -M 32 | -$M16384,1048576 33 | -K$00400000 34 | -LE"c:\program files\borland\delphi7\Projects\Bpl" 35 | -LN"c:\program files\borland\delphi7\Projects\Bpl" 36 | -w-COMPARING_SIGNED_UNSIGNED 37 | -w-UNSAFE_TYPE 38 | -w-UNSAFE_CODE 39 | -w-UNSAFE_CAST 40 | -------------------------------------------------------------------------------- /TypeAndRun.dof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/TypeAndRun.dof -------------------------------------------------------------------------------- /TypeAndRun.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/TypeAndRun.dpr -------------------------------------------------------------------------------- /TypeAndRun.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/TypeAndRun.exe -------------------------------------------------------------------------------- /TypeAndRun.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/TypeAndRun.res -------------------------------------------------------------------------------- /Wishes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/Wishes.txt -------------------------------------------------------------------------------- /XPTheme.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/XPTheme.res -------------------------------------------------------------------------------- /about.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/about.bmp -------------------------------------------------------------------------------- /about_1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/about_1.bmp -------------------------------------------------------------------------------- /about_1_low.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/about_1_low.bmp -------------------------------------------------------------------------------- /about_2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/about_2.bmp -------------------------------------------------------------------------------- /about_2_low.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/about_2_low.bmp -------------------------------------------------------------------------------- /about_3.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/about_3.bmp -------------------------------------------------------------------------------- /about_3_low.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/about_3_low.bmp -------------------------------------------------------------------------------- /frmAboutUnit.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/frmAboutUnit.dcu -------------------------------------------------------------------------------- /frmAboutUnit.ddp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/frmAboutUnit.ddp -------------------------------------------------------------------------------- /frmAboutUnit.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/frmAboutUnit.pas -------------------------------------------------------------------------------- /frmConsoleUnit.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/frmConsoleUnit.dcu -------------------------------------------------------------------------------- /frmConsoleUnit.ddp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/frmConsoleUnit.ddp -------------------------------------------------------------------------------- /frmConsoleUnit.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/frmConsoleUnit.pas -------------------------------------------------------------------------------- /frmHintUnit.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/frmHintUnit.dcu -------------------------------------------------------------------------------- /frmHintUnit.ddp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/frmHintUnit.ddp -------------------------------------------------------------------------------- /frmHintUnit.dfm: -------------------------------------------------------------------------------- 1 | object frmHint: TfrmHint 2 | Left = 582 3 | Top = 286 4 | BorderStyle = bsNone 5 | Caption = 'frmHint' 6 | ClientHeight = 143 7 | ClientWidth = 232 8 | Color = clBtnFace 9 | Font.Charset = DEFAULT_CHARSET 10 | Font.Color = clWindowText 11 | Font.Height = -11 12 | Font.Name = 'MS Sans Serif' 13 | Font.Style = [] 14 | OldCreateOrder = False 15 | PixelsPerInch = 96 16 | TextHeight = 13 17 | object lblBack: TLabel 18 | Left = 0 19 | Top = 0 20 | Width = 145 21 | Height = 105 22 | AutoSize = False 23 | Color = clBlack 24 | ParentColor = False 25 | Transparent = False 26 | end 27 | object lblHint: TLabel 28 | Left = 2 29 | Top = 2 30 | Width = 71 31 | Height = 47 32 | Caption = 'lblHint' 33 | Color = clBtnFace 34 | ParentColor = False 35 | Transparent = False 36 | end 37 | end 38 | -------------------------------------------------------------------------------- /frmHintUnit.pas: -------------------------------------------------------------------------------- 1 | unit frmHintUnit; 2 | 3 | interface 4 | 5 | uses 6 | Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, 7 | Dialogs, StdCtrls; 8 | 9 | type 10 | TfrmHint = class(TForm) 11 | lblHint: TLabel; 12 | lblBack: TLabel; 13 | private 14 | { Private declarations } 15 | public 16 | { Public declarations } 17 | end; 18 | 19 | var 20 | frmHint: TfrmHint; 21 | 22 | implementation 23 | 24 | uses frmConsoleUnit; 25 | 26 | {$R *.dfm} 27 | 28 | end. 29 | -------------------------------------------------------------------------------- /frmSettingsUnit.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/frmSettingsUnit.dcu -------------------------------------------------------------------------------- /frmSettingsUnit.ddp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/frmSettingsUnit.ddp -------------------------------------------------------------------------------- /frmSettingsUnit.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/frmSettingsUnit.pas -------------------------------------------------------------------------------- /frmTypeDownDropUnit.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/frmTypeDownDropUnit.dcu -------------------------------------------------------------------------------- /frmTypeDownDropUnit.ddp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/frmTypeDownDropUnit.ddp -------------------------------------------------------------------------------- /frmTypeDownDropUnit.dfm: -------------------------------------------------------------------------------- 1 | object frmTypeDropDown: TfrmTypeDropDown 2 | Left = 549 3 | Top = 420 4 | BorderStyle = bsNone 5 | ClientHeight = 119 6 | ClientWidth = 257 7 | Color = clBtnFace 8 | Font.Charset = DEFAULT_CHARSET 9 | Font.Color = clWindowText 10 | Font.Height = -11 11 | Font.Name = 'MS Sans Serif' 12 | Font.Style = [] 13 | FormStyle = fsStayOnTop 14 | OldCreateOrder = False 15 | OnShow = FormShow 16 | PixelsPerInch = 96 17 | TextHeight = 13 18 | object lstDropDown: TListBox 19 | Left = 0 20 | Top = 0 21 | Width = 257 22 | Height = 119 23 | Align = alClient 24 | BorderStyle = bsNone 25 | ItemHeight = 13 26 | TabOrder = 0 27 | OnClick = lstDropDownClick 28 | OnKeyDown = lstDropDownKeyDown 29 | OnKeyPress = lstDropDownKeyPress 30 | OnKeyUp = lstDropDownKeyUp 31 | end 32 | end 33 | -------------------------------------------------------------------------------- /frmTypeDownDropUnit.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeleventh/typeandrun/0f32febabf343b21abc4609ccf7c07f8bbc41850/frmTypeDownDropUnit.pas --------------------------------------------------------------------------------