├── AUTHORS.txt ├── COPYING.modifiedLGPL ├── COPYING.txt ├── INSTALL.txt ├── README.txt ├── patch ├── Lazarus │ ├── main.pp_laz_1.0.14.zip │ ├── main.pp_laz_1.0.8.zip │ ├── main.pp_laz_1.2.0.zip │ ├── main.pp_laz_1.2.2.zip │ ├── main.pp_laz_1.2.4.zip │ ├── main.pp_laz_1.2.6.zip │ ├── main.pp_laz_1.2RC2.zip │ ├── main.pp_laz_1.4.4.zip │ └── readme_patch_lazarus.txt ├── Typhon │ ├── readme_patch_typhon.txt │ ├── sourcefilemanager_4.6.zip │ ├── sourcefilemanager_4.7.zip │ ├── sourcefilemanager_4.9.zip │ ├── sourcefilemanager_5.0.zip │ ├── sourcefilemanager_5.1.zip │ ├── sourcefilemanager_5.2.zip │ ├── sourcefilemanager_5.3.zip │ ├── sourcefilemanager_5.4.zip │ ├── sourcefilemanager_5.5.zip │ └── sourcefilemanager_5.6.zip ├── fpc │ ├── fpc_fpg_patch.bat │ ├── fpc_fpg_patch.pas │ ├── fpc_fpg_patch.sh │ └── readme_patch_fpc.txt └── readme_patch.txt ├── readme_dynload.txt ├── src ├── anchors.inc ├── define.inc ├── designer_ext.lpi ├── designer_ext.pas ├── designer_ext.prj ├── designer_ext_lib.prj ├── designer_ext_lib_fpgui-test.prj ├── dynX11 │ ├── keysym.pp │ ├── x.pp │ ├── xatom.pp │ ├── xext.pas │ ├── xftlib.pas │ ├── xlib.pas │ ├── xrender.pas │ └── xutil.pp ├── ext.inc ├── extrafpc.cfg ├── form_libtest_lcl.lfm ├── form_libtest_lcl.pas ├── fpGUI-develop_dynX11 │ ├── fpg_main.pas │ ├── fpg_netlayer_x11.pas │ ├── fpg_x11.pas │ └── xdynload.pas ├── fpGUI-maint_dynX11 │ ├── fpg_main.pas │ ├── fpg_netlayer_x11.pas │ ├── fpg_x11.pas │ └── xdynload.pas ├── fpcadds.pas ├── fpg_gtk.pas ├── fpg_hexview.pas ├── fpg_hexviewnew.pas ├── fpg_hint.pas ├── fpg_iniutils.pas ├── fpg_nicegrid.pas ├── fpg_style_anim_chrome_silver_horz.pas ├── fpg_style_anim_chrome_silver_horz_flatmenu.pas ├── fpg_style_anim_chrome_silver_vert.pas ├── fpg_style_anim_chrome_silver_vert_flatmenu.pas ├── fpg_style_anim_ellipse_silver_horz.pas ├── fpg_style_anim_ellipse_silver_vert.pas ├── fpg_style_anim_pram1.pas ├── fpg_style_anim_round_silver_flat_horz.pas ├── fpg_style_anim_round_silver_horz.pas ├── fpg_style_chrome_blue.pas ├── fpg_style_chrome_gray.pas ├── fpg_style_chrome_green.pas ├── fpg_style_chrome_purple.pas ├── fpg_style_chrome_red.pas ├── fpg_style_chrome_silver.pas ├── fpg_style_chrome_silver_flatmenu.pas ├── fpg_style_chrome_system.pas ├── fpg_style_chrome_yellow.pas ├── fpg_style_ellipse_blue.pas ├── fpg_style_ellipse_gray.pas ├── fpg_style_ellipse_green.pas ├── fpg_style_ellipse_purple.pas ├── fpg_style_ellipse_red.pas ├── fpg_style_ellipse_silver.pas ├── fpg_style_ellipse_system.pas ├── fpg_style_ellipse_yellow.pas ├── fpg_style_hoover_silver_flat.pas ├── fpg_style_hoover_system_flat.pas ├── fpg_style_mint1.pas ├── fpg_style_mint2.pas ├── fpg_style_mint3.pas ├── fpg_style_round_silver_flat_horz.pas ├── fpg_style_systemcolors.pas ├── fpg_style_systemcolorsmystyle1.pas ├── fpg_style_systemcolorsmystyle2.pas ├── fpg_winapi.pas ├── fpgdxt.class ├── fpgdxt.java ├── fpgdxt.lpi ├── fpgdxt.pas ├── fpgdxt2.pas ├── fpgextrafpc.cfg ├── fpgextrafpcwin.cfg ├── fpgui.bmp ├── fpgui_logo.inc ├── frm_colorpicker.pas ├── frm_imageconvert.pas ├── frm_main_designer.pas ├── frm_multiselect.pas ├── frm_vfdforms.pas ├── h_fpgdxt.pas ├── icon.inc ├── icon_16.png ├── icon_32.png ├── icons.inc ├── images │ ├── assist.bmp │ ├── assist2.bmp │ ├── assist2.png │ ├── checkdateedit.bmp │ ├── colorlistbox.bmp │ ├── colorwheel.bmp │ ├── dateedit.bmp │ ├── editbutton.bmp │ ├── editcurrency.bmp │ ├── editdirectory.bmp │ ├── editfilename.bmp │ ├── editfloat.bmp │ ├── editfont.bmp │ ├── editgrid.bmp │ ├── editinteger.bmp │ ├── formdesign.bmp │ ├── fpgui_ico.png │ ├── fpgui_ico2.bmp │ ├── fpgui_ico2.png │ ├── fpgui_ico22.png │ ├── fpgui_logo.bmp │ ├── fpgui_logo.png │ ├── gauge.bmp │ ├── groupbox.bmp │ ├── hyperlink.bmp │ ├── icodesext.bmp │ ├── listbox.bmp │ ├── listview.bmp │ ├── menubar.bmp │ ├── newform_16.bmp │ ├── nicegrid.bmp │ ├── pagecontrol.bmp │ ├── picker.bmp │ ├── progressbar.bmp │ ├── radiobutton.bmp │ ├── richtextview.bmp │ ├── scrollframe.bmp │ ├── select1.bmp │ ├── shape_align_bottom.bmp │ ├── shape_align_left.bmp │ ├── shape_align_right.bmp │ ├── shape_align_top.bmp │ ├── splitter.bmp │ ├── stringgrid.bmp │ ├── tabsheet.bmp │ ├── tofront.bmp │ ├── toggle.bmp │ ├── trackbar.bmp │ ├── treeview.bmp │ └── valuebar.bmp ├── lazutils_defines.inc ├── led.png ├── messagedialog.inc ├── plugmanager.pas ├── pthread │ ├── cthreads.pas │ ├── pthread.inc │ └── tthread.inc ├── runonce_postit.pas ├── sak_fpg.pas ├── sakit │ ├── contributors.txt │ ├── credits.txt │ ├── espeak-data │ │ ├── af_dict │ │ ├── am_dict │ │ ├── an_dict │ │ ├── as_dict │ │ ├── az_dict │ │ ├── bg_dict │ │ ├── bn_dict │ │ ├── ca_dict │ │ ├── cs_dict │ │ ├── cy_dict │ │ ├── da_dict │ │ ├── de_dict │ │ ├── el_dict │ │ ├── en_dict │ │ ├── eo_dict │ │ ├── es_dict │ │ ├── et_dict │ │ ├── eu_dict │ │ ├── fa_dict │ │ ├── fi_dict │ │ ├── fr_dict │ │ ├── ga_dict │ │ ├── gd_dict │ │ ├── grc_dict │ │ ├── gu_dict │ │ ├── hbs_dict │ │ ├── hi_dict │ │ ├── hu_dict │ │ ├── hy_dict │ │ ├── id_dict │ │ ├── intonations │ │ ├── is_dict │ │ ├── it_dict │ │ ├── jbo_dict │ │ ├── ka_dict │ │ ├── kl_dict │ │ ├── kn_dict │ │ ├── ko_dict │ │ ├── ku_dict │ │ ├── la_dict │ │ ├── lfn_dict │ │ ├── lt_dict │ │ ├── lv_dict │ │ ├── mbrola_ph │ │ │ ├── af1_phtrans │ │ │ ├── ca1_phtrans │ │ │ ├── cr1_phtrans │ │ │ ├── cs_phtrans │ │ │ ├── de2_phtrans │ │ │ ├── de4_phtrans │ │ │ ├── de6_phtrans │ │ │ ├── ee1_phtrans │ │ │ ├── en1_phtrans │ │ │ ├── es_phtrans │ │ │ ├── fr1_phtrans │ │ │ ├── gr2_phtrans │ │ │ ├── grc-de6_phtrans │ │ │ ├── hn1_phtrans │ │ │ ├── hu1_phtrans │ │ │ ├── ic1_phtrans │ │ │ ├── id1_phtrans │ │ │ ├── in1_phtrans │ │ │ ├── ir1_phtrans │ │ │ ├── it3_phtrans │ │ │ ├── la1_phtrans │ │ │ ├── lt1_phtrans │ │ │ ├── lt2_phtrans │ │ │ ├── mx1_phtrans │ │ │ ├── mx2_phtrans │ │ │ ├── nl_phtrans │ │ │ ├── pl1_phtrans │ │ │ ├── pt1_phtrans │ │ │ ├── pt_phtrans │ │ │ ├── ptbr4_phtrans │ │ │ ├── ptbr_phtrans │ │ │ ├── ro1_phtrans │ │ │ ├── sv2_phtrans │ │ │ ├── sv_phtrans │ │ │ ├── tr1_phtrans │ │ │ ├── us3_phtrans │ │ │ ├── us_phtrans │ │ │ └── vz_phtrans │ │ ├── mk_dict │ │ ├── ml_dict │ │ ├── ms_dict │ │ ├── nci_dict │ │ ├── ne_dict │ │ ├── nl_dict │ │ ├── no_dict │ │ ├── or_dict │ │ ├── pa_dict │ │ ├── pap_dict │ │ ├── phondata │ │ ├── phondata-manifest │ │ ├── phonindex │ │ ├── phontab │ │ ├── pl_dict │ │ ├── pt_dict │ │ ├── ro_dict │ │ ├── ru_dict │ │ ├── si_dict │ │ ├── sk_dict │ │ ├── sl_dict │ │ ├── sq_dict │ │ ├── sv_dict │ │ ├── sw_dict │ │ ├── ta_dict │ │ ├── te_dict │ │ ├── tr_dict │ │ ├── ur_dict │ │ ├── vi_dict │ │ ├── voices │ │ │ ├── !v │ │ │ │ ├── croak │ │ │ │ ├── f1 │ │ │ │ ├── f2 │ │ │ │ ├── f3 │ │ │ │ ├── f4 │ │ │ │ ├── f5 │ │ │ │ ├── klatt │ │ │ │ ├── klatt2 │ │ │ │ ├── klatt3 │ │ │ │ ├── klatt4 │ │ │ │ ├── m1 │ │ │ │ ├── m2 │ │ │ │ ├── m3 │ │ │ │ ├── m4 │ │ │ │ ├── m5 │ │ │ │ ├── m6 │ │ │ │ ├── m7 │ │ │ │ ├── whisper │ │ │ │ └── whisperf │ │ │ ├── asia │ │ │ │ ├── fa │ │ │ │ ├── fa-pin │ │ │ │ ├── hi │ │ │ │ ├── hy │ │ │ │ ├── hy-west │ │ │ │ ├── id │ │ │ │ ├── ka │ │ │ │ ├── kn │ │ │ │ ├── ku │ │ │ │ ├── ml │ │ │ │ ├── ms │ │ │ │ ├── ne │ │ │ │ ├── pa │ │ │ │ ├── ta │ │ │ │ ├── tr │ │ │ │ ├── vi │ │ │ │ ├── vi-hue │ │ │ │ ├── vi-sgn │ │ │ │ ├── zh │ │ │ │ └── zh-yue │ │ │ ├── de │ │ │ ├── default │ │ │ ├── en │ │ │ ├── en-us │ │ │ ├── es-la │ │ │ ├── europe │ │ │ │ ├── an │ │ │ │ ├── bg │ │ │ │ ├── bs │ │ │ │ ├── ca │ │ │ │ ├── cs │ │ │ │ ├── cy │ │ │ │ ├── da │ │ │ │ ├── el │ │ │ │ ├── es │ │ │ │ ├── et │ │ │ │ ├── fi │ │ │ │ ├── fr-be │ │ │ │ ├── ga │ │ │ │ ├── hr │ │ │ │ ├── hu │ │ │ │ ├── is │ │ │ │ ├── it │ │ │ │ ├── lt │ │ │ │ ├── lv │ │ │ │ ├── mk │ │ │ │ ├── nl │ │ │ │ ├── no │ │ │ │ ├── pl │ │ │ │ ├── pt-pt │ │ │ │ ├── ro │ │ │ │ ├── ru │ │ │ │ ├── sk │ │ │ │ ├── sq │ │ │ │ ├── sr │ │ │ │ └── sv │ │ │ ├── fr │ │ │ ├── mb │ │ │ │ ├── mb-af1 │ │ │ │ ├── mb-af1-en │ │ │ │ ├── mb-br1 │ │ │ │ ├── mb-br3 │ │ │ │ ├── mb-br4 │ │ │ │ ├── mb-cr1 │ │ │ │ ├── mb-cz2 │ │ │ │ ├── mb-de2 │ │ │ │ ├── mb-de3 │ │ │ │ ├── mb-de4 │ │ │ │ ├── mb-de4-en │ │ │ │ ├── mb-de5 │ │ │ │ ├── mb-de5-en │ │ │ │ ├── mb-de6 │ │ │ │ ├── mb-de6-grc │ │ │ │ ├── mb-de7 │ │ │ │ ├── mb-ee1 │ │ │ │ ├── mb-en1 │ │ │ │ ├── mb-es1 │ │ │ │ ├── mb-es2 │ │ │ │ ├── mb-fr1 │ │ │ │ ├── mb-fr1-en │ │ │ │ ├── mb-fr4 │ │ │ │ ├── mb-fr4-en │ │ │ │ ├── mb-gr2 │ │ │ │ ├── mb-gr2-en │ │ │ │ ├── mb-hu1 │ │ │ │ ├── mb-hu1-en │ │ │ │ ├── mb-ic1 │ │ │ │ ├── mb-id1 │ │ │ │ ├── mb-ir1 │ │ │ │ ├── mb-ir2 │ │ │ │ ├── mb-it3 │ │ │ │ ├── mb-it4 │ │ │ │ ├── mb-la1 │ │ │ │ ├── mb-mx1 │ │ │ │ ├── mb-mx2 │ │ │ │ ├── mb-nl2 │ │ │ │ ├── mb-nl2-en │ │ │ │ ├── mb-pl1 │ │ │ │ ├── mb-pl1-en │ │ │ │ ├── mb-pt1 │ │ │ │ ├── mb-ro1 │ │ │ │ ├── mb-ro1-en │ │ │ │ ├── mb-sw1 │ │ │ │ ├── mb-sw1-en │ │ │ │ ├── mb-sw2 │ │ │ │ ├── mb-sw2-en │ │ │ │ ├── mb-tr1 │ │ │ │ ├── mb-tr2 │ │ │ │ ├── mb-us1 │ │ │ │ ├── mb-us2 │ │ │ │ ├── mb-us3 │ │ │ │ └── mb-vz1 │ │ │ ├── other │ │ │ │ ├── af │ │ │ │ ├── en-n │ │ │ │ ├── en-rp │ │ │ │ ├── en-sc │ │ │ │ ├── en-wi │ │ │ │ ├── en-wm │ │ │ │ ├── eo │ │ │ │ ├── grc │ │ │ │ ├── jbo │ │ │ │ ├── la │ │ │ │ ├── lfn │ │ │ │ └── sw │ │ │ ├── pt │ │ │ └── test │ │ │ │ ├── am │ │ │ │ ├── as │ │ │ │ ├── az │ │ │ │ ├── bn │ │ │ │ ├── eu │ │ │ │ ├── gd │ │ │ │ ├── gu │ │ │ │ ├── kl │ │ │ │ ├── ko │ │ │ │ ├── nci │ │ │ │ ├── or │ │ │ │ ├── pap │ │ │ │ ├── si │ │ │ │ ├── sl │ │ │ │ ├── te │ │ │ │ └── ur │ │ ├── zh_dict │ │ └── zhy_dict │ ├── libfreebsd32 │ │ ├── libportaudio_x86.so │ │ ├── sak.ini │ │ └── speak_x86 │ ├── libfreebsd64 │ │ ├── libportaudio_x64.so │ │ ├── sak.ini │ │ └── speak_x64 │ ├── liblinux32 │ │ ├── libportaudio_x86.so │ │ ├── sak.ini │ │ └── speak_x86 │ ├── liblinux64 │ │ ├── libportaudio_x64.so │ │ ├── sak.ini │ │ └── speak_x64 │ ├── libmac32 │ │ ├── libportaudio_32.dylib │ │ ├── sak.ini │ │ └── speak │ ├── libwin32 │ │ ├── espeak.exe │ │ └── sak.ini │ ├── license.txt │ └── readme.txt ├── synregexpr.pas ├── testfpglib.pas ├── testlib.lpi ├── testlib.pas ├── testlib_lcl.lpi ├── testlib_lcl.lpr ├── u_editgrid.pas ├── units │ └── dummy ├── uos_portaudio.pas ├── vfd_constants.pas ├── vfd_constants.rst ├── vfd_designer.pas ├── vfd_editors.pas ├── vfd_file.pas ├── vfd_formparser.pas ├── vfd_main.pas ├── vfd_propeditgrid.pas ├── vfd_props.pas ├── vfd_propsdev.pas ├── vfd_resizer.pas ├── vfd_utils.pas ├── vfd_widgetclass.pas ├── vfd_widgetclassdev.pas ├── vfd_widgets.pas └── vfd_widgetsdev.pas └── template ├── fpGUIDirectTemplate.pas ├── fpGUITemplate.lpi └── fpGUITemplate.lpr /AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/AUTHORS.txt -------------------------------------------------------------------------------- /COPYING.modifiedLGPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/COPYING.modifiedLGPL -------------------------------------------------------------------------------- /COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/COPYING.txt -------------------------------------------------------------------------------- /INSTALL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/INSTALL.txt -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/README.txt -------------------------------------------------------------------------------- /patch/Lazarus/main.pp_laz_1.0.14.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/patch/Lazarus/main.pp_laz_1.0.14.zip -------------------------------------------------------------------------------- /patch/Lazarus/main.pp_laz_1.0.8.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/patch/Lazarus/main.pp_laz_1.0.8.zip -------------------------------------------------------------------------------- /patch/Lazarus/main.pp_laz_1.2.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/patch/Lazarus/main.pp_laz_1.2.0.zip -------------------------------------------------------------------------------- /patch/Lazarus/main.pp_laz_1.2.2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/patch/Lazarus/main.pp_laz_1.2.2.zip -------------------------------------------------------------------------------- /patch/Lazarus/main.pp_laz_1.2.4.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/patch/Lazarus/main.pp_laz_1.2.4.zip -------------------------------------------------------------------------------- /patch/Lazarus/main.pp_laz_1.2.6.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/patch/Lazarus/main.pp_laz_1.2.6.zip -------------------------------------------------------------------------------- /patch/Lazarus/main.pp_laz_1.2RC2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/patch/Lazarus/main.pp_laz_1.2RC2.zip -------------------------------------------------------------------------------- /patch/Lazarus/main.pp_laz_1.4.4.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/patch/Lazarus/main.pp_laz_1.4.4.zip -------------------------------------------------------------------------------- /patch/Lazarus/readme_patch_lazarus.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/patch/Lazarus/readme_patch_lazarus.txt -------------------------------------------------------------------------------- /patch/Typhon/readme_patch_typhon.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/patch/Typhon/readme_patch_typhon.txt -------------------------------------------------------------------------------- /patch/Typhon/sourcefilemanager_4.6.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/patch/Typhon/sourcefilemanager_4.6.zip -------------------------------------------------------------------------------- /patch/Typhon/sourcefilemanager_4.7.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/patch/Typhon/sourcefilemanager_4.7.zip -------------------------------------------------------------------------------- /patch/Typhon/sourcefilemanager_4.9.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/patch/Typhon/sourcefilemanager_4.9.zip -------------------------------------------------------------------------------- /patch/Typhon/sourcefilemanager_5.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/patch/Typhon/sourcefilemanager_5.0.zip -------------------------------------------------------------------------------- /patch/Typhon/sourcefilemanager_5.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/patch/Typhon/sourcefilemanager_5.1.zip -------------------------------------------------------------------------------- /patch/Typhon/sourcefilemanager_5.2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/patch/Typhon/sourcefilemanager_5.2.zip -------------------------------------------------------------------------------- /patch/Typhon/sourcefilemanager_5.3.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/patch/Typhon/sourcefilemanager_5.3.zip -------------------------------------------------------------------------------- /patch/Typhon/sourcefilemanager_5.4.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/patch/Typhon/sourcefilemanager_5.4.zip -------------------------------------------------------------------------------- /patch/Typhon/sourcefilemanager_5.5.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/patch/Typhon/sourcefilemanager_5.5.zip -------------------------------------------------------------------------------- /patch/Typhon/sourcefilemanager_5.6.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/patch/Typhon/sourcefilemanager_5.6.zip -------------------------------------------------------------------------------- /patch/fpc/fpc_fpg_patch.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/patch/fpc/fpc_fpg_patch.bat -------------------------------------------------------------------------------- /patch/fpc/fpc_fpg_patch.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/patch/fpc/fpc_fpg_patch.pas -------------------------------------------------------------------------------- /patch/fpc/fpc_fpg_patch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/patch/fpc/fpc_fpg_patch.sh -------------------------------------------------------------------------------- /patch/fpc/readme_patch_fpc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/patch/fpc/readme_patch_fpc.txt -------------------------------------------------------------------------------- /patch/readme_patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/patch/readme_patch.txt -------------------------------------------------------------------------------- /readme_dynload.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/readme_dynload.txt -------------------------------------------------------------------------------- /src/anchors.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/anchors.inc -------------------------------------------------------------------------------- /src/define.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/define.inc -------------------------------------------------------------------------------- /src/designer_ext.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/designer_ext.lpi -------------------------------------------------------------------------------- /src/designer_ext.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/designer_ext.pas -------------------------------------------------------------------------------- /src/designer_ext.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/designer_ext.prj -------------------------------------------------------------------------------- /src/designer_ext_lib.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/designer_ext_lib.prj -------------------------------------------------------------------------------- /src/designer_ext_lib_fpgui-test.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/designer_ext_lib_fpgui-test.prj -------------------------------------------------------------------------------- /src/dynX11/keysym.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/dynX11/keysym.pp -------------------------------------------------------------------------------- /src/dynX11/x.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/dynX11/x.pp -------------------------------------------------------------------------------- /src/dynX11/xatom.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/dynX11/xatom.pp -------------------------------------------------------------------------------- /src/dynX11/xext.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/dynX11/xext.pas -------------------------------------------------------------------------------- /src/dynX11/xftlib.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/dynX11/xftlib.pas -------------------------------------------------------------------------------- /src/dynX11/xlib.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/dynX11/xlib.pas -------------------------------------------------------------------------------- /src/dynX11/xrender.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/dynX11/xrender.pas -------------------------------------------------------------------------------- /src/dynX11/xutil.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/dynX11/xutil.pp -------------------------------------------------------------------------------- /src/ext.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/ext.inc -------------------------------------------------------------------------------- /src/extrafpc.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/extrafpc.cfg -------------------------------------------------------------------------------- /src/form_libtest_lcl.lfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/form_libtest_lcl.lfm -------------------------------------------------------------------------------- /src/form_libtest_lcl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/form_libtest_lcl.pas -------------------------------------------------------------------------------- /src/fpGUI-develop_dynX11/fpg_main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/fpGUI-develop_dynX11/fpg_main.pas -------------------------------------------------------------------------------- /src/fpGUI-develop_dynX11/fpg_netlayer_x11.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/fpGUI-develop_dynX11/fpg_netlayer_x11.pas -------------------------------------------------------------------------------- /src/fpGUI-develop_dynX11/fpg_x11.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/fpGUI-develop_dynX11/fpg_x11.pas -------------------------------------------------------------------------------- /src/fpGUI-develop_dynX11/xdynload.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/fpGUI-develop_dynX11/xdynload.pas -------------------------------------------------------------------------------- /src/fpGUI-maint_dynX11/fpg_main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/fpGUI-maint_dynX11/fpg_main.pas -------------------------------------------------------------------------------- /src/fpGUI-maint_dynX11/fpg_netlayer_x11.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/fpGUI-maint_dynX11/fpg_netlayer_x11.pas -------------------------------------------------------------------------------- /src/fpGUI-maint_dynX11/fpg_x11.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/fpGUI-maint_dynX11/fpg_x11.pas -------------------------------------------------------------------------------- /src/fpGUI-maint_dynX11/xdynload.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/fpGUI-maint_dynX11/xdynload.pas -------------------------------------------------------------------------------- /src/fpcadds.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/fpcadds.pas -------------------------------------------------------------------------------- /src/fpg_gtk.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/fpg_gtk.pas -------------------------------------------------------------------------------- /src/fpg_hexview.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/fpg_hexview.pas -------------------------------------------------------------------------------- /src/fpg_hexviewnew.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/fpg_hexviewnew.pas -------------------------------------------------------------------------------- /src/fpg_hint.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/fpg_hint.pas -------------------------------------------------------------------------------- /src/fpg_iniutils.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/fpg_iniutils.pas -------------------------------------------------------------------------------- /src/fpg_nicegrid.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/fpg_nicegrid.pas -------------------------------------------------------------------------------- /src/fpg_style_anim_chrome_silver_horz.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/fpg_style_anim_chrome_silver_horz.pas -------------------------------------------------------------------------------- /src/fpg_style_anim_chrome_silver_horz_flatmenu.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/fpg_style_anim_chrome_silver_horz_flatmenu.pas -------------------------------------------------------------------------------- /src/fpg_style_anim_chrome_silver_vert.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/fpg_style_anim_chrome_silver_vert.pas -------------------------------------------------------------------------------- /src/fpg_style_anim_chrome_silver_vert_flatmenu.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/fpg_style_anim_chrome_silver_vert_flatmenu.pas -------------------------------------------------------------------------------- /src/fpg_style_anim_ellipse_silver_horz.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/fpg_style_anim_ellipse_silver_horz.pas -------------------------------------------------------------------------------- /src/fpg_style_anim_ellipse_silver_vert.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/fpg_style_anim_ellipse_silver_vert.pas -------------------------------------------------------------------------------- /src/fpg_style_anim_pram1.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/fpg_style_anim_pram1.pas -------------------------------------------------------------------------------- /src/fpg_style_anim_round_silver_flat_horz.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/fpg_style_anim_round_silver_flat_horz.pas -------------------------------------------------------------------------------- /src/fpg_style_anim_round_silver_horz.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/fpg_style_anim_round_silver_horz.pas -------------------------------------------------------------------------------- /src/fpg_style_chrome_blue.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/fpg_style_chrome_blue.pas -------------------------------------------------------------------------------- /src/fpg_style_chrome_gray.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/fpg_style_chrome_gray.pas -------------------------------------------------------------------------------- /src/fpg_style_chrome_green.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/fpg_style_chrome_green.pas -------------------------------------------------------------------------------- /src/fpg_style_chrome_purple.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/fpg_style_chrome_purple.pas -------------------------------------------------------------------------------- /src/fpg_style_chrome_red.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/fpg_style_chrome_red.pas -------------------------------------------------------------------------------- /src/fpg_style_chrome_silver.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/fpg_style_chrome_silver.pas -------------------------------------------------------------------------------- /src/fpg_style_chrome_silver_flatmenu.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/fpg_style_chrome_silver_flatmenu.pas -------------------------------------------------------------------------------- /src/fpg_style_chrome_system.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/fpg_style_chrome_system.pas -------------------------------------------------------------------------------- /src/fpg_style_chrome_yellow.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/fpg_style_chrome_yellow.pas -------------------------------------------------------------------------------- /src/fpg_style_ellipse_blue.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/fpg_style_ellipse_blue.pas -------------------------------------------------------------------------------- /src/fpg_style_ellipse_gray.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/fpg_style_ellipse_gray.pas -------------------------------------------------------------------------------- /src/fpg_style_ellipse_green.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/fpg_style_ellipse_green.pas -------------------------------------------------------------------------------- /src/fpg_style_ellipse_purple.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/fpg_style_ellipse_purple.pas -------------------------------------------------------------------------------- /src/fpg_style_ellipse_red.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/fpg_style_ellipse_red.pas -------------------------------------------------------------------------------- /src/fpg_style_ellipse_silver.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/fpg_style_ellipse_silver.pas -------------------------------------------------------------------------------- /src/fpg_style_ellipse_system.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/fpg_style_ellipse_system.pas -------------------------------------------------------------------------------- /src/fpg_style_ellipse_yellow.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/fpg_style_ellipse_yellow.pas -------------------------------------------------------------------------------- /src/fpg_style_hoover_silver_flat.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/fpg_style_hoover_silver_flat.pas -------------------------------------------------------------------------------- /src/fpg_style_hoover_system_flat.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/fpg_style_hoover_system_flat.pas -------------------------------------------------------------------------------- /src/fpg_style_mint1.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/fpg_style_mint1.pas -------------------------------------------------------------------------------- /src/fpg_style_mint2.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/fpg_style_mint2.pas -------------------------------------------------------------------------------- /src/fpg_style_mint3.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/fpg_style_mint3.pas -------------------------------------------------------------------------------- /src/fpg_style_round_silver_flat_horz.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/fpg_style_round_silver_flat_horz.pas -------------------------------------------------------------------------------- /src/fpg_style_systemcolors.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/fpg_style_systemcolors.pas -------------------------------------------------------------------------------- /src/fpg_style_systemcolorsmystyle1.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/fpg_style_systemcolorsmystyle1.pas -------------------------------------------------------------------------------- /src/fpg_style_systemcolorsmystyle2.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/fpg_style_systemcolorsmystyle2.pas -------------------------------------------------------------------------------- /src/fpg_winapi.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/fpg_winapi.pas -------------------------------------------------------------------------------- /src/fpgdxt.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/fpgdxt.class -------------------------------------------------------------------------------- /src/fpgdxt.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/fpgdxt.java -------------------------------------------------------------------------------- /src/fpgdxt.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/fpgdxt.lpi -------------------------------------------------------------------------------- /src/fpgdxt.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/fpgdxt.pas -------------------------------------------------------------------------------- /src/fpgdxt2.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/fpgdxt2.pas -------------------------------------------------------------------------------- /src/fpgextrafpc.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/fpgextrafpc.cfg -------------------------------------------------------------------------------- /src/fpgextrafpcwin.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/fpgextrafpcwin.cfg -------------------------------------------------------------------------------- /src/fpgui.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/fpgui.bmp -------------------------------------------------------------------------------- /src/fpgui_logo.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/fpgui_logo.inc -------------------------------------------------------------------------------- /src/frm_colorpicker.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/frm_colorpicker.pas -------------------------------------------------------------------------------- /src/frm_imageconvert.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/frm_imageconvert.pas -------------------------------------------------------------------------------- /src/frm_main_designer.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/frm_main_designer.pas -------------------------------------------------------------------------------- /src/frm_multiselect.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/frm_multiselect.pas -------------------------------------------------------------------------------- /src/frm_vfdforms.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/frm_vfdforms.pas -------------------------------------------------------------------------------- /src/h_fpgdxt.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/h_fpgdxt.pas -------------------------------------------------------------------------------- /src/icon.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/icon.inc -------------------------------------------------------------------------------- /src/icon_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/icon_16.png -------------------------------------------------------------------------------- /src/icon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/icon_32.png -------------------------------------------------------------------------------- /src/icons.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/icons.inc -------------------------------------------------------------------------------- /src/images/assist.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/images/assist.bmp -------------------------------------------------------------------------------- /src/images/assist2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/images/assist2.bmp -------------------------------------------------------------------------------- /src/images/assist2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/images/assist2.png -------------------------------------------------------------------------------- /src/images/checkdateedit.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/images/checkdateedit.bmp -------------------------------------------------------------------------------- /src/images/colorlistbox.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/images/colorlistbox.bmp -------------------------------------------------------------------------------- /src/images/colorwheel.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/images/colorwheel.bmp -------------------------------------------------------------------------------- /src/images/dateedit.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/images/dateedit.bmp -------------------------------------------------------------------------------- /src/images/editbutton.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/images/editbutton.bmp -------------------------------------------------------------------------------- /src/images/editcurrency.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/images/editcurrency.bmp -------------------------------------------------------------------------------- /src/images/editdirectory.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/images/editdirectory.bmp -------------------------------------------------------------------------------- /src/images/editfilename.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/images/editfilename.bmp -------------------------------------------------------------------------------- /src/images/editfloat.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/images/editfloat.bmp -------------------------------------------------------------------------------- /src/images/editfont.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/images/editfont.bmp -------------------------------------------------------------------------------- /src/images/editgrid.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/images/editgrid.bmp -------------------------------------------------------------------------------- /src/images/editinteger.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/images/editinteger.bmp -------------------------------------------------------------------------------- /src/images/formdesign.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/images/formdesign.bmp -------------------------------------------------------------------------------- /src/images/fpgui_ico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/images/fpgui_ico.png -------------------------------------------------------------------------------- /src/images/fpgui_ico2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/images/fpgui_ico2.bmp -------------------------------------------------------------------------------- /src/images/fpgui_ico2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/images/fpgui_ico2.png -------------------------------------------------------------------------------- /src/images/fpgui_ico22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/images/fpgui_ico22.png -------------------------------------------------------------------------------- /src/images/fpgui_logo.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/images/fpgui_logo.bmp -------------------------------------------------------------------------------- /src/images/fpgui_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/images/fpgui_logo.png -------------------------------------------------------------------------------- /src/images/gauge.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/images/gauge.bmp -------------------------------------------------------------------------------- /src/images/groupbox.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/images/groupbox.bmp -------------------------------------------------------------------------------- /src/images/hyperlink.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/images/hyperlink.bmp -------------------------------------------------------------------------------- /src/images/icodesext.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/images/icodesext.bmp -------------------------------------------------------------------------------- /src/images/listbox.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/images/listbox.bmp -------------------------------------------------------------------------------- /src/images/listview.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/images/listview.bmp -------------------------------------------------------------------------------- /src/images/menubar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/images/menubar.bmp -------------------------------------------------------------------------------- /src/images/newform_16.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/images/newform_16.bmp -------------------------------------------------------------------------------- /src/images/nicegrid.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/images/nicegrid.bmp -------------------------------------------------------------------------------- /src/images/pagecontrol.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/images/pagecontrol.bmp -------------------------------------------------------------------------------- /src/images/picker.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/images/picker.bmp -------------------------------------------------------------------------------- /src/images/progressbar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/images/progressbar.bmp -------------------------------------------------------------------------------- /src/images/radiobutton.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/images/radiobutton.bmp -------------------------------------------------------------------------------- /src/images/richtextview.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/images/richtextview.bmp -------------------------------------------------------------------------------- /src/images/scrollframe.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/images/scrollframe.bmp -------------------------------------------------------------------------------- /src/images/select1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/images/select1.bmp -------------------------------------------------------------------------------- /src/images/shape_align_bottom.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/images/shape_align_bottom.bmp -------------------------------------------------------------------------------- /src/images/shape_align_left.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/images/shape_align_left.bmp -------------------------------------------------------------------------------- /src/images/shape_align_right.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/images/shape_align_right.bmp -------------------------------------------------------------------------------- /src/images/shape_align_top.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/images/shape_align_top.bmp -------------------------------------------------------------------------------- /src/images/splitter.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/images/splitter.bmp -------------------------------------------------------------------------------- /src/images/stringgrid.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/images/stringgrid.bmp -------------------------------------------------------------------------------- /src/images/tabsheet.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/images/tabsheet.bmp -------------------------------------------------------------------------------- /src/images/tofront.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/images/tofront.bmp -------------------------------------------------------------------------------- /src/images/toggle.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/images/toggle.bmp -------------------------------------------------------------------------------- /src/images/trackbar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/images/trackbar.bmp -------------------------------------------------------------------------------- /src/images/treeview.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/images/treeview.bmp -------------------------------------------------------------------------------- /src/images/valuebar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/images/valuebar.bmp -------------------------------------------------------------------------------- /src/lazutils_defines.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/lazutils_defines.inc -------------------------------------------------------------------------------- /src/led.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/led.png -------------------------------------------------------------------------------- /src/messagedialog.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/messagedialog.inc -------------------------------------------------------------------------------- /src/plugmanager.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/plugmanager.pas -------------------------------------------------------------------------------- /src/pthread/cthreads.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/pthread/cthreads.pas -------------------------------------------------------------------------------- /src/pthread/pthread.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/pthread/pthread.inc -------------------------------------------------------------------------------- /src/pthread/tthread.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/pthread/tthread.inc -------------------------------------------------------------------------------- /src/runonce_postit.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/runonce_postit.pas -------------------------------------------------------------------------------- /src/sak_fpg.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sak_fpg.pas -------------------------------------------------------------------------------- /src/sakit/contributors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/contributors.txt -------------------------------------------------------------------------------- /src/sakit/credits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/credits.txt -------------------------------------------------------------------------------- /src/sakit/espeak-data/af_dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/af_dict -------------------------------------------------------------------------------- /src/sakit/espeak-data/am_dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/am_dict -------------------------------------------------------------------------------- /src/sakit/espeak-data/an_dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/an_dict -------------------------------------------------------------------------------- /src/sakit/espeak-data/as_dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/as_dict -------------------------------------------------------------------------------- /src/sakit/espeak-data/az_dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/az_dict -------------------------------------------------------------------------------- /src/sakit/espeak-data/bg_dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/bg_dict -------------------------------------------------------------------------------- /src/sakit/espeak-data/bn_dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/bn_dict -------------------------------------------------------------------------------- /src/sakit/espeak-data/ca_dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/ca_dict -------------------------------------------------------------------------------- /src/sakit/espeak-data/cs_dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/cs_dict -------------------------------------------------------------------------------- /src/sakit/espeak-data/cy_dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/cy_dict -------------------------------------------------------------------------------- /src/sakit/espeak-data/da_dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/da_dict -------------------------------------------------------------------------------- /src/sakit/espeak-data/de_dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/de_dict -------------------------------------------------------------------------------- /src/sakit/espeak-data/el_dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/el_dict -------------------------------------------------------------------------------- /src/sakit/espeak-data/en_dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/en_dict -------------------------------------------------------------------------------- /src/sakit/espeak-data/eo_dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/eo_dict -------------------------------------------------------------------------------- /src/sakit/espeak-data/es_dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/es_dict -------------------------------------------------------------------------------- /src/sakit/espeak-data/et_dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/et_dict -------------------------------------------------------------------------------- /src/sakit/espeak-data/eu_dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/eu_dict -------------------------------------------------------------------------------- /src/sakit/espeak-data/fa_dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/fa_dict -------------------------------------------------------------------------------- /src/sakit/espeak-data/fi_dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/fi_dict -------------------------------------------------------------------------------- /src/sakit/espeak-data/fr_dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/fr_dict -------------------------------------------------------------------------------- /src/sakit/espeak-data/ga_dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/ga_dict -------------------------------------------------------------------------------- /src/sakit/espeak-data/gd_dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/gd_dict -------------------------------------------------------------------------------- /src/sakit/espeak-data/grc_dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/grc_dict -------------------------------------------------------------------------------- /src/sakit/espeak-data/gu_dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/gu_dict -------------------------------------------------------------------------------- /src/sakit/espeak-data/hbs_dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/hbs_dict -------------------------------------------------------------------------------- /src/sakit/espeak-data/hi_dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/hi_dict -------------------------------------------------------------------------------- /src/sakit/espeak-data/hu_dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/hu_dict -------------------------------------------------------------------------------- /src/sakit/espeak-data/hy_dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/hy_dict -------------------------------------------------------------------------------- /src/sakit/espeak-data/id_dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/id_dict -------------------------------------------------------------------------------- /src/sakit/espeak-data/intonations: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/intonations -------------------------------------------------------------------------------- /src/sakit/espeak-data/is_dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/is_dict -------------------------------------------------------------------------------- /src/sakit/espeak-data/it_dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/it_dict -------------------------------------------------------------------------------- /src/sakit/espeak-data/jbo_dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/jbo_dict -------------------------------------------------------------------------------- /src/sakit/espeak-data/ka_dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/ka_dict -------------------------------------------------------------------------------- /src/sakit/espeak-data/kl_dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/kl_dict -------------------------------------------------------------------------------- /src/sakit/espeak-data/kn_dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/kn_dict -------------------------------------------------------------------------------- /src/sakit/espeak-data/ko_dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/ko_dict -------------------------------------------------------------------------------- /src/sakit/espeak-data/ku_dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/ku_dict -------------------------------------------------------------------------------- /src/sakit/espeak-data/la_dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/la_dict -------------------------------------------------------------------------------- /src/sakit/espeak-data/lfn_dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/lfn_dict -------------------------------------------------------------------------------- /src/sakit/espeak-data/lt_dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/lt_dict -------------------------------------------------------------------------------- /src/sakit/espeak-data/lv_dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/lv_dict -------------------------------------------------------------------------------- /src/sakit/espeak-data/mbrola_ph/af1_phtrans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/mbrola_ph/af1_phtrans -------------------------------------------------------------------------------- /src/sakit/espeak-data/mbrola_ph/ca1_phtrans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/mbrola_ph/ca1_phtrans -------------------------------------------------------------------------------- /src/sakit/espeak-data/mbrola_ph/cr1_phtrans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/mbrola_ph/cr1_phtrans -------------------------------------------------------------------------------- /src/sakit/espeak-data/mbrola_ph/cs_phtrans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/mbrola_ph/cs_phtrans -------------------------------------------------------------------------------- /src/sakit/espeak-data/mbrola_ph/de2_phtrans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/mbrola_ph/de2_phtrans -------------------------------------------------------------------------------- /src/sakit/espeak-data/mbrola_ph/de4_phtrans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/mbrola_ph/de4_phtrans -------------------------------------------------------------------------------- /src/sakit/espeak-data/mbrola_ph/de6_phtrans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/mbrola_ph/de6_phtrans -------------------------------------------------------------------------------- /src/sakit/espeak-data/mbrola_ph/ee1_phtrans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/mbrola_ph/ee1_phtrans -------------------------------------------------------------------------------- /src/sakit/espeak-data/mbrola_ph/en1_phtrans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/mbrola_ph/en1_phtrans -------------------------------------------------------------------------------- /src/sakit/espeak-data/mbrola_ph/es_phtrans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/mbrola_ph/es_phtrans -------------------------------------------------------------------------------- /src/sakit/espeak-data/mbrola_ph/fr1_phtrans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/mbrola_ph/fr1_phtrans -------------------------------------------------------------------------------- /src/sakit/espeak-data/mbrola_ph/gr2_phtrans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/mbrola_ph/gr2_phtrans -------------------------------------------------------------------------------- /src/sakit/espeak-data/mbrola_ph/grc-de6_phtrans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/mbrola_ph/grc-de6_phtrans -------------------------------------------------------------------------------- /src/sakit/espeak-data/mbrola_ph/hn1_phtrans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/mbrola_ph/hn1_phtrans -------------------------------------------------------------------------------- /src/sakit/espeak-data/mbrola_ph/hu1_phtrans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/mbrola_ph/hu1_phtrans -------------------------------------------------------------------------------- /src/sakit/espeak-data/mbrola_ph/ic1_phtrans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/mbrola_ph/ic1_phtrans -------------------------------------------------------------------------------- /src/sakit/espeak-data/mbrola_ph/id1_phtrans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/mbrola_ph/id1_phtrans -------------------------------------------------------------------------------- /src/sakit/espeak-data/mbrola_ph/in1_phtrans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/mbrola_ph/in1_phtrans -------------------------------------------------------------------------------- /src/sakit/espeak-data/mbrola_ph/ir1_phtrans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/mbrola_ph/ir1_phtrans -------------------------------------------------------------------------------- /src/sakit/espeak-data/mbrola_ph/it3_phtrans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/mbrola_ph/it3_phtrans -------------------------------------------------------------------------------- /src/sakit/espeak-data/mbrola_ph/la1_phtrans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/mbrola_ph/la1_phtrans -------------------------------------------------------------------------------- /src/sakit/espeak-data/mbrola_ph/lt1_phtrans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/mbrola_ph/lt1_phtrans -------------------------------------------------------------------------------- /src/sakit/espeak-data/mbrola_ph/lt2_phtrans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/mbrola_ph/lt2_phtrans -------------------------------------------------------------------------------- /src/sakit/espeak-data/mbrola_ph/mx1_phtrans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/mbrola_ph/mx1_phtrans -------------------------------------------------------------------------------- /src/sakit/espeak-data/mbrola_ph/mx2_phtrans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/mbrola_ph/mx2_phtrans -------------------------------------------------------------------------------- /src/sakit/espeak-data/mbrola_ph/nl_phtrans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/mbrola_ph/nl_phtrans -------------------------------------------------------------------------------- /src/sakit/espeak-data/mbrola_ph/pl1_phtrans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/mbrola_ph/pl1_phtrans -------------------------------------------------------------------------------- /src/sakit/espeak-data/mbrola_ph/pt1_phtrans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/mbrola_ph/pt1_phtrans -------------------------------------------------------------------------------- /src/sakit/espeak-data/mbrola_ph/pt_phtrans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/mbrola_ph/pt_phtrans -------------------------------------------------------------------------------- /src/sakit/espeak-data/mbrola_ph/ptbr4_phtrans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/mbrola_ph/ptbr4_phtrans -------------------------------------------------------------------------------- /src/sakit/espeak-data/mbrola_ph/ptbr_phtrans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/mbrola_ph/ptbr_phtrans -------------------------------------------------------------------------------- /src/sakit/espeak-data/mbrola_ph/ro1_phtrans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/mbrola_ph/ro1_phtrans -------------------------------------------------------------------------------- /src/sakit/espeak-data/mbrola_ph/sv2_phtrans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/mbrola_ph/sv2_phtrans -------------------------------------------------------------------------------- /src/sakit/espeak-data/mbrola_ph/sv_phtrans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/mbrola_ph/sv_phtrans -------------------------------------------------------------------------------- /src/sakit/espeak-data/mbrola_ph/tr1_phtrans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/mbrola_ph/tr1_phtrans -------------------------------------------------------------------------------- /src/sakit/espeak-data/mbrola_ph/us3_phtrans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/mbrola_ph/us3_phtrans -------------------------------------------------------------------------------- /src/sakit/espeak-data/mbrola_ph/us_phtrans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/mbrola_ph/us_phtrans -------------------------------------------------------------------------------- /src/sakit/espeak-data/mbrola_ph/vz_phtrans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/mbrola_ph/vz_phtrans -------------------------------------------------------------------------------- /src/sakit/espeak-data/mk_dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/mk_dict -------------------------------------------------------------------------------- /src/sakit/espeak-data/ml_dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/ml_dict -------------------------------------------------------------------------------- /src/sakit/espeak-data/ms_dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/ms_dict -------------------------------------------------------------------------------- /src/sakit/espeak-data/nci_dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/nci_dict -------------------------------------------------------------------------------- /src/sakit/espeak-data/ne_dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/ne_dict -------------------------------------------------------------------------------- /src/sakit/espeak-data/nl_dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/nl_dict -------------------------------------------------------------------------------- /src/sakit/espeak-data/no_dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/no_dict -------------------------------------------------------------------------------- /src/sakit/espeak-data/or_dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/or_dict -------------------------------------------------------------------------------- /src/sakit/espeak-data/pa_dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/pa_dict -------------------------------------------------------------------------------- /src/sakit/espeak-data/pap_dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/pap_dict -------------------------------------------------------------------------------- /src/sakit/espeak-data/phondata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/phondata -------------------------------------------------------------------------------- /src/sakit/espeak-data/phondata-manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/phondata-manifest -------------------------------------------------------------------------------- /src/sakit/espeak-data/phonindex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/phonindex -------------------------------------------------------------------------------- /src/sakit/espeak-data/phontab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/phontab -------------------------------------------------------------------------------- /src/sakit/espeak-data/pl_dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/pl_dict -------------------------------------------------------------------------------- /src/sakit/espeak-data/pt_dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/pt_dict -------------------------------------------------------------------------------- /src/sakit/espeak-data/ro_dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/ro_dict -------------------------------------------------------------------------------- /src/sakit/espeak-data/ru_dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/ru_dict -------------------------------------------------------------------------------- /src/sakit/espeak-data/si_dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/si_dict -------------------------------------------------------------------------------- /src/sakit/espeak-data/sk_dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/sk_dict -------------------------------------------------------------------------------- /src/sakit/espeak-data/sl_dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/sl_dict -------------------------------------------------------------------------------- /src/sakit/espeak-data/sq_dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/sq_dict -------------------------------------------------------------------------------- /src/sakit/espeak-data/sv_dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/sv_dict -------------------------------------------------------------------------------- /src/sakit/espeak-data/sw_dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/sw_dict -------------------------------------------------------------------------------- /src/sakit/espeak-data/ta_dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/ta_dict -------------------------------------------------------------------------------- /src/sakit/espeak-data/te_dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/te_dict -------------------------------------------------------------------------------- /src/sakit/espeak-data/tr_dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/tr_dict -------------------------------------------------------------------------------- /src/sakit/espeak-data/ur_dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/ur_dict -------------------------------------------------------------------------------- /src/sakit/espeak-data/vi_dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/vi_dict -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/!v/croak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/!v/croak -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/!v/f1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/!v/f1 -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/!v/f2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/!v/f2 -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/!v/f3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/!v/f3 -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/!v/f4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/!v/f4 -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/!v/f5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/!v/f5 -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/!v/klatt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/!v/klatt -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/!v/klatt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/!v/klatt2 -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/!v/klatt3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/!v/klatt3 -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/!v/klatt4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/!v/klatt4 -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/!v/m1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/!v/m1 -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/!v/m2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/!v/m2 -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/!v/m3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/!v/m3 -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/!v/m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/!v/m4 -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/!v/m5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/!v/m5 -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/!v/m6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/!v/m6 -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/!v/m7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/!v/m7 -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/!v/whisper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/!v/whisper -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/!v/whisperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/!v/whisperf -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/asia/fa: -------------------------------------------------------------------------------- 1 | name persian 2 | language fa 3 | 4 | -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/asia/fa-pin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/asia/fa-pin -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/asia/hi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/asia/hi -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/asia/hy: -------------------------------------------------------------------------------- 1 | name armenian 2 | language hy 3 | gender male 4 | -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/asia/hy-west: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/asia/hy-west -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/asia/id: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/asia/id -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/asia/ka: -------------------------------------------------------------------------------- 1 | name georgian 2 | language ka 3 | -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/asia/kn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/asia/kn -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/asia/ku: -------------------------------------------------------------------------------- 1 | name kurdish 2 | language ku 3 | gender male 4 | 5 | //words 1 48 6 | 7 | -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/asia/ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/asia/ml -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/asia/ms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/asia/ms -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/asia/ne: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/asia/ne -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/asia/pa: -------------------------------------------------------------------------------- 1 | name punjabi 2 | language pa 3 | -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/asia/ta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/asia/ta -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/asia/tr: -------------------------------------------------------------------------------- 1 | name turkish 2 | language tr 3 | gender male 4 | 5 | -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/asia/vi: -------------------------------------------------------------------------------- 1 | name vietnam 2 | language vi 3 | gender male 4 | 5 | words 1 6 | pitch 80 118 7 | -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/asia/vi-hue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/asia/vi-hue -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/asia/vi-sgn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/asia/vi-sgn -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/asia/zh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/asia/zh -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/asia/zh-yue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/asia/zh-yue -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/de: -------------------------------------------------------------------------------- 1 | name german 2 | language de 3 | gender male 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/default: -------------------------------------------------------------------------------- 1 | name default 2 | language en 3 | gender male 4 | 5 | -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/en: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/en -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/en-us: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/en-us -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/es-la: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/es-la -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/europe/an: -------------------------------------------------------------------------------- 1 | name aragonese 2 | language an 3 | gender male 4 | -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/europe/bg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/europe/bg -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/europe/bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/europe/bs -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/europe/ca: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/europe/ca -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/europe/cs: -------------------------------------------------------------------------------- 1 | name czech 2 | language cs 3 | gender male 4 | 5 | -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/europe/cy: -------------------------------------------------------------------------------- 1 | language cy 2 | name welsh 3 | gender male 4 | 5 | intonation 4 6 | -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/europe/da: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/europe/da -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/europe/el: -------------------------------------------------------------------------------- 1 | name greek 2 | language el 3 | gender male 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/europe/es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/europe/es -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/europe/et: -------------------------------------------------------------------------------- 1 | name estonian 2 | language et 3 | 4 | -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/europe/fi: -------------------------------------------------------------------------------- 1 | name finnish 2 | language fi 3 | gender male 4 | 5 | -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/europe/fr-be: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/europe/fr-be -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/europe/ga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/europe/ga -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/europe/hr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/europe/hr -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/europe/hu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/europe/hu -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/europe/is: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/europe/is -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/europe/it: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/europe/it -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/europe/lt: -------------------------------------------------------------------------------- 1 | 2 | name lithuanian 3 | language lt 4 | gender male 5 | 6 | -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/europe/lv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/europe/lv -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/europe/mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/europe/mk -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/europe/nl: -------------------------------------------------------------------------------- 1 | language nl 2 | name dutch 3 | gender male 4 | -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/europe/no: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/europe/no -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/europe/pl: -------------------------------------------------------------------------------- 1 | name polish 2 | language pl 3 | gender male 4 | 5 | intonation 2 6 | -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/europe/pt-pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/europe/pt-pt -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/europe/ro: -------------------------------------------------------------------------------- 1 | name romanian 2 | language ro 3 | gender male 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/europe/ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/europe/ru -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/europe/sk: -------------------------------------------------------------------------------- 1 | name slovak 2 | language sk 3 | gender male 4 | 5 | -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/europe/sq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/europe/sq -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/europe/sr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/europe/sr -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/europe/sv: -------------------------------------------------------------------------------- 1 | name swedish 2 | language sv 3 | gender male 4 | 5 | -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/fr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/fr -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/mb/mb-af1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/mb/mb-af1 -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/mb/mb-af1-en: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/mb/mb-af1-en -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/mb/mb-br1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/mb/mb-br1 -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/mb/mb-br3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/mb/mb-br3 -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/mb/mb-br4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/mb/mb-br4 -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/mb/mb-cr1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/mb/mb-cr1 -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/mb/mb-cz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/mb/mb-cz2 -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/mb/mb-de2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/mb/mb-de2 -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/mb/mb-de3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/mb/mb-de3 -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/mb/mb-de4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/mb/mb-de4 -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/mb/mb-de4-en: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/mb/mb-de4-en -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/mb/mb-de5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/mb/mb-de5 -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/mb/mb-de5-en: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/mb/mb-de5-en -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/mb/mb-de6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/mb/mb-de6 -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/mb/mb-de6-grc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/mb/mb-de6-grc -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/mb/mb-de7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/mb/mb-de7 -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/mb/mb-ee1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/mb/mb-ee1 -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/mb/mb-en1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/mb/mb-en1 -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/mb/mb-es1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/mb/mb-es1 -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/mb/mb-es2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/mb/mb-es2 -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/mb/mb-fr1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/mb/mb-fr1 -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/mb/mb-fr1-en: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/mb/mb-fr1-en -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/mb/mb-fr4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/mb/mb-fr4 -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/mb/mb-fr4-en: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/mb/mb-fr4-en -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/mb/mb-gr2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/mb/mb-gr2 -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/mb/mb-gr2-en: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/mb/mb-gr2-en -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/mb/mb-hu1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/mb/mb-hu1 -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/mb/mb-hu1-en: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/mb/mb-hu1-en -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/mb/mb-ic1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/mb/mb-ic1 -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/mb/mb-id1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/mb/mb-id1 -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/mb/mb-ir1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/mb/mb-ir1 -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/mb/mb-ir2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/mb/mb-ir2 -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/mb/mb-it3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/mb/mb-it3 -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/mb/mb-it4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/mb/mb-it4 -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/mb/mb-la1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/mb/mb-la1 -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/mb/mb-mx1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/mb/mb-mx1 -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/mb/mb-mx2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/mb/mb-mx2 -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/mb/mb-nl2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/mb/mb-nl2 -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/mb/mb-nl2-en: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/mb/mb-nl2-en -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/mb/mb-pl1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/mb/mb-pl1 -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/mb/mb-pl1-en: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/mb/mb-pl1-en -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/mb/mb-pt1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/mb/mb-pt1 -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/mb/mb-ro1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/mb/mb-ro1 -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/mb/mb-ro1-en: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/mb/mb-ro1-en -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/mb/mb-sw1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/mb/mb-sw1 -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/mb/mb-sw1-en: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/mb/mb-sw1-en -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/mb/mb-sw2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/mb/mb-sw2 -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/mb/mb-sw2-en: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/mb/mb-sw2-en -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/mb/mb-tr1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/mb/mb-tr1 -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/mb/mb-tr2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/mb/mb-tr2 -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/mb/mb-us1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/mb/mb-us1 -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/mb/mb-us2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/mb/mb-us2 -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/mb/mb-us3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/mb/mb-us3 -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/mb/mb-vz1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/mb/mb-vz1 -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/other/af: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/other/af -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/other/en-n: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/other/en-n -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/other/en-rp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/other/en-rp -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/other/en-sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/other/en-sc -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/other/en-wi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/other/en-wi -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/other/en-wm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/other/en-wm -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/other/eo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/other/eo -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/other/grc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/other/grc -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/other/jbo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/other/jbo -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/other/la: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/other/la -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/other/lfn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/other/lfn -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/other/sw: -------------------------------------------------------------------------------- 1 | name swahili-test 2 | language sw 3 | gender male 4 | 5 | -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/pt -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/test/am: -------------------------------------------------------------------------------- 1 | name amharic-test 2 | language am 3 | 4 | -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/test/as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/test/as -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/test/az: -------------------------------------------------------------------------------- 1 | name azerbaijani-test 2 | language az 3 | 4 | -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/test/bn: -------------------------------------------------------------------------------- 1 | name bengali-test 2 | language bn 3 | gender male 4 | -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/test/eu: -------------------------------------------------------------------------------- 1 | name basque-test 2 | language eu 3 | 4 | -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/test/gd: -------------------------------------------------------------------------------- 1 | name scottish-gaelic-test 2 | language gd 3 | 4 | -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/test/gu: -------------------------------------------------------------------------------- 1 | name gujarati-test 2 | language gu 3 | 4 | -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/test/kl: -------------------------------------------------------------------------------- 1 | name greenlandic 2 | language kl 3 | 4 | -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/test/ko: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/test/ko -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/test/nci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/test/nci -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/test/or: -------------------------------------------------------------------------------- 1 | name oriya-test 2 | language or 3 | -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/test/pap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/test/pap -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/test/si: -------------------------------------------------------------------------------- 1 | name sinhala-test 2 | language si 3 | 4 | intonation 2 5 | -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/test/sl: -------------------------------------------------------------------------------- 1 | name slovenian-test 2 | language sl 3 | -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/test/te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/voices/test/te -------------------------------------------------------------------------------- /src/sakit/espeak-data/voices/test/ur: -------------------------------------------------------------------------------- 1 | name urdu-test 2 | language ur 3 | 4 | stressrule 6 5 | 6 | -------------------------------------------------------------------------------- /src/sakit/espeak-data/zh_dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/zh_dict -------------------------------------------------------------------------------- /src/sakit/espeak-data/zhy_dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/espeak-data/zhy_dict -------------------------------------------------------------------------------- /src/sakit/libfreebsd32/libportaudio_x86.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/libfreebsd32/libportaudio_x86.so -------------------------------------------------------------------------------- /src/sakit/libfreebsd32/sak.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/libfreebsd32/sak.ini -------------------------------------------------------------------------------- /src/sakit/libfreebsd32/speak_x86: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/libfreebsd32/speak_x86 -------------------------------------------------------------------------------- /src/sakit/libfreebsd64/libportaudio_x64.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/libfreebsd64/libportaudio_x64.so -------------------------------------------------------------------------------- /src/sakit/libfreebsd64/sak.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/libfreebsd64/sak.ini -------------------------------------------------------------------------------- /src/sakit/libfreebsd64/speak_x64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/libfreebsd64/speak_x64 -------------------------------------------------------------------------------- /src/sakit/liblinux32/libportaudio_x86.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/liblinux32/libportaudio_x86.so -------------------------------------------------------------------------------- /src/sakit/liblinux32/sak.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/liblinux32/sak.ini -------------------------------------------------------------------------------- /src/sakit/liblinux32/speak_x86: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/liblinux32/speak_x86 -------------------------------------------------------------------------------- /src/sakit/liblinux64/libportaudio_x64.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/liblinux64/libportaudio_x64.so -------------------------------------------------------------------------------- /src/sakit/liblinux64/sak.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/liblinux64/sak.ini -------------------------------------------------------------------------------- /src/sakit/liblinux64/speak_x64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/liblinux64/speak_x64 -------------------------------------------------------------------------------- /src/sakit/libmac32/libportaudio_32.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/libmac32/libportaudio_32.dylib -------------------------------------------------------------------------------- /src/sakit/libmac32/sak.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/libmac32/sak.ini -------------------------------------------------------------------------------- /src/sakit/libmac32/speak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/libmac32/speak -------------------------------------------------------------------------------- /src/sakit/libwin32/espeak.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/libwin32/espeak.exe -------------------------------------------------------------------------------- /src/sakit/libwin32/sak.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/libwin32/sak.ini -------------------------------------------------------------------------------- /src/sakit/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/license.txt -------------------------------------------------------------------------------- /src/sakit/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/sakit/readme.txt -------------------------------------------------------------------------------- /src/synregexpr.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/synregexpr.pas -------------------------------------------------------------------------------- /src/testfpglib.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/testfpglib.pas -------------------------------------------------------------------------------- /src/testlib.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/testlib.lpi -------------------------------------------------------------------------------- /src/testlib.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/testlib.pas -------------------------------------------------------------------------------- /src/testlib_lcl.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/testlib_lcl.lpi -------------------------------------------------------------------------------- /src/testlib_lcl.lpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/testlib_lcl.lpr -------------------------------------------------------------------------------- /src/u_editgrid.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/u_editgrid.pas -------------------------------------------------------------------------------- /src/units/dummy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/uos_portaudio.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/uos_portaudio.pas -------------------------------------------------------------------------------- /src/vfd_constants.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/vfd_constants.pas -------------------------------------------------------------------------------- /src/vfd_constants.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/vfd_constants.rst -------------------------------------------------------------------------------- /src/vfd_designer.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/vfd_designer.pas -------------------------------------------------------------------------------- /src/vfd_editors.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/vfd_editors.pas -------------------------------------------------------------------------------- /src/vfd_file.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/vfd_file.pas -------------------------------------------------------------------------------- /src/vfd_formparser.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/vfd_formparser.pas -------------------------------------------------------------------------------- /src/vfd_main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/vfd_main.pas -------------------------------------------------------------------------------- /src/vfd_propeditgrid.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/vfd_propeditgrid.pas -------------------------------------------------------------------------------- /src/vfd_props.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/vfd_props.pas -------------------------------------------------------------------------------- /src/vfd_propsdev.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/vfd_propsdev.pas -------------------------------------------------------------------------------- /src/vfd_resizer.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/vfd_resizer.pas -------------------------------------------------------------------------------- /src/vfd_utils.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/vfd_utils.pas -------------------------------------------------------------------------------- /src/vfd_widgetclass.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/vfd_widgetclass.pas -------------------------------------------------------------------------------- /src/vfd_widgetclassdev.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/vfd_widgetclassdev.pas -------------------------------------------------------------------------------- /src/vfd_widgets.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/vfd_widgets.pas -------------------------------------------------------------------------------- /src/vfd_widgetsdev.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/src/vfd_widgetsdev.pas -------------------------------------------------------------------------------- /template/fpGUIDirectTemplate.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/template/fpGUIDirectTemplate.pas -------------------------------------------------------------------------------- /template/fpGUITemplate.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/template/fpGUITemplate.lpi -------------------------------------------------------------------------------- /template/fpGUITemplate.lpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredvs/uidesigner_ext/HEAD/template/fpGUITemplate.lpr --------------------------------------------------------------------------------