├── .gitignore ├── 3rd-party ├── Makefile.am └── scripteasy │ ├── Makefile.am │ ├── libscripteasy.so │ └── test │ ├── Makefile │ ├── dejavu_sans_ttf.h │ ├── font_table.c │ ├── fzxh_gb18030_1_ttf.le │ ├── fzxh_gb18030_1_ttf_stub.h │ ├── fzxh_gb18030_2_ttf.le │ ├── fzxh_gb18030_2_ttf_stub.h │ ├── fzxh_gb2312_ttf.h │ ├── fzxhgb_yh_ttf.h │ ├── kmx_latin1_ttf.h │ ├── sample.c │ └── se_minigui.h ├── AUTHORS.md ├── CMakeLists.txt ├── ChangeLog ├── ChangeLog.old ├── Doxyfile.procs ├── Doxyfile.sal ├── Doxyfile.ths ├── GNUmakefile ├── INSTALL ├── LICENSE ├── LICENSE-POLICY-en.md ├── LICENSE-POLICY-zh.md ├── Makefile.am ├── README ├── README.md ├── RELEASE-NOTES.md ├── Version.md ├── autogen.sh ├── clean_license.sh ├── cleanup-code.sh ├── cmake ├── FindFREETYPE.cmake ├── FindJPEG.cmake ├── FindMiniGUI.cmake ├── FindPNG.cmake ├── FindPTHREAD.cmake ├── FindZLIB.cmake ├── Makefile.am ├── common.cmake └── minigui-private.cmake ├── cmake_mgconfig.h.in ├── configs ├── Configure.help ├── Makefile.am ├── config.in ├── defconfig ├── feature.in └── mkdefconfig ├── configure.ac ├── doc ├── Makefile.am ├── articles │ ├── Makefile.am │ ├── ewhitepaper.html │ ├── guide-1 │ │ ├── Makefile.am │ │ └── index.html │ ├── guide-2 │ │ ├── Makefile.am │ │ └── index.html │ ├── guide-3 │ │ ├── Makefile.am │ │ ├── image.gif │ │ └── index.html │ ├── guide-4 │ │ ├── Makefile.am │ │ └── index.html │ ├── guide-5 │ │ ├── Makefile.am │ │ └── index.html │ ├── guide-6 │ │ ├── Makefile.am │ │ └── index.html │ ├── guide-7 │ │ ├── Makefile.am │ │ ├── image1.gif │ │ └── index.html │ ├── guide-8 │ │ ├── Makefile.am │ │ └── index.html │ ├── index.html │ ├── minigui-1 │ │ ├── Makefile.am │ │ └── index.html │ ├── minigui-2 │ │ ├── Makefile.am │ │ └── index.html │ ├── minigui-3 │ │ ├── Makefile.am │ │ └── index.html │ ├── minigui-4 │ │ ├── Makefile.am │ │ └── index.html │ ├── minigui-5 │ │ ├── Makefile.am │ │ └── index.html │ ├── minigui-6 │ │ ├── Makefile.am │ │ └── index.html │ ├── minigui-7 │ │ ├── Makefile.am │ │ └── index.html │ ├── minigui-8 │ │ ├── Makefile.am │ │ └── index.html │ ├── minigui-9 │ │ ├── Makefile.am │ │ └── index.html │ └── whitepaper.html ├── misc │ ├── README-demo-win32-zhcn │ ├── README-dev-linux-en │ ├── README-dev-win32-en │ ├── README-var-all-en │ ├── README-var-all-zhcn │ └── libminigui-1-6.spec-dev-linux └── others │ ├── Makefile.am │ ├── TrackBar-HOWTO │ └── TreeView-HOWTO ├── etc ├── Makefile.am ├── MiniGUI.cfg ├── MiniGUI.cfg.win32.in └── mvfb.cfg ├── examples ├── Makefile.am ├── activemenu.c ├── bitmap.c ├── blitting.c ├── buttondown.c ├── cfgfile.c ├── circlegenerator.c ├── client_startup.c ├── createlogfont.c ├── createlogfontex.c ├── createmainwindow.c ├── createvirtualwindow.c ├── createwindow.c ├── destroymainwindow.c ├── dialogbox.c ├── dlgtemplate.c ├── drawtext.c ├── endianness.c ├── fixed_point.c ├── fixedpoint.c ├── fixstr.c ├── getmessage.c ├── helloworld.c ├── initcliprgn.c ├── keydown.c ├── listenfd.c ├── lockdc.c ├── miniguimain.c ├── msg_initdialog.c ├── msg_paint.c ├── msg_sizechanged.c ├── msg_sizechanging.c ├── nextcontrol.c ├── rectvisible.c ├── region.c ├── registerwindowclass.c ├── request.c ├── server_startup.c ├── setcursor.c ├── settimer.c ├── socket.c ├── subclass.c └── ws_ex_notdraggable.c ├── include ├── Makefile.am ├── common.h ├── control.h ├── ctrl │ ├── Makefile.am │ ├── animation.h │ ├── button.h │ ├── combobox.h │ ├── coolbar.h │ ├── ctrlhelper.h │ ├── edit.h │ ├── gridview.h │ ├── iconview.h │ ├── listbox.h │ ├── listview.h │ ├── makefile.msvc │ ├── makefile.ng │ ├── menubutton.h │ ├── monthcal.h │ ├── newtoolbar.h │ ├── progressbar.h │ ├── propsheet.h │ ├── scrollbar.h │ ├── scrollview.h │ ├── spinbox.h │ ├── static.h │ ├── textedit.h │ ├── trackbar.h │ └── treeview.h ├── customial.h ├── dti.c ├── endianrw.h ├── exstubs.h ├── fixedmath.h ├── gdi.h ├── makefile.msvc ├── makefile.ng ├── minigui.h ├── nucleus_pthread.h ├── nucleus_semaphore.h ├── ose_semaphore.h ├── own_malloc.h ├── own_stdio.h ├── psos.h ├── psos_pthread.h ├── psos_semaphore.h ├── threadx_pthread.h ├── threadx_semaphore.h ├── ucos2_pthread.h ├── ucos2_semaphore.h ├── vxworks_pthread.h ├── vxworks_semaphore.h ├── win32_dirent.h ├── win32_pthread.h ├── win32_sched.h ├── win32_semaphore.h ├── window.h └── xvfb.h ├── m4 └── Makefile.am ├── make_tarball ├── makefile.msvc ├── makefile.ng ├── merge.log ├── minigui.pc.in ├── obsolete ├── ime │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── hzinput.c │ ├── hzinput.h │ ├── pinyin.c │ └── pinyin.h ├── oldgal.h └── vcongui.h ├── rtos ├── Makefile.am ├── nucleus_startup.c ├── psos_startup.c ├── threadx_startup.c ├── ucos2_startup.c └── vxworks_startup.c ├── rules.make ├── scripts ├── Configure ├── Lindent ├── MAKEDEV.ide ├── Makefile.am ├── Menuconfig ├── README.Menuconfig ├── checkconfig.pl ├── checkhelp.pl ├── checkincludes.pl ├── docgen ├── docproc.c ├── extract-ikconfig ├── gen-all-syms ├── header.tk ├── include_deps ├── kernel-doc ├── lxdialog │ ├── Makefile.am │ ├── checklist.c │ ├── colors.h │ ├── dialog.h │ ├── inputbox.c │ ├── lxdialog.c │ ├── makefile.lx │ ├── menubox.c │ ├── msgbox.c │ ├── textbox.c │ ├── util.c │ └── yesno.c ├── makefile.scripts ├── makelst ├── mkconfig ├── mkconfigs.c ├── mkdep ├── mkdep.c ├── mkspec ├── mkversion ├── patch-kernel ├── pathdown.sh ├── split-include.c ├── split-man ├── tail.tk ├── tkcond.c ├── tkgen.c ├── tkparse.c ├── tkparse.h └── ver_linux └── src ├── CMakeLists.txt ├── Makefile.am ├── client ├── CMakeLists.txt ├── Makefile.am ├── cliconn.c └── client.c ├── control ├── CMakeLists.txt ├── LICENSE ├── Makefile.am ├── bidiedit.c ├── bidiedit_impl.h ├── button.c ├── button_impl.h ├── combobox.c ├── combobox_impl.h ├── ctrlmisc.c ├── ctrlmisc.h ├── edit.c ├── edit_impl.h ├── listbox.c ├── listbox_impl.h ├── listmodel.c ├── listmodel.h ├── makefile.msvc ├── makefile.ng ├── medit_impl.h ├── menubutton.c ├── menubutton_impl.h ├── newtoolbar.c ├── newtoolbar_impl.h ├── progressbar.c ├── progressbar_impl.h ├── propsheet.c ├── propsheet.c_orig ├── propsheet_impl.h ├── scrollbar.c ├── scrolled.c ├── scrolled.h ├── scrollview.c ├── scrollview_impl.h ├── scrollwnd.c ├── scrollwnd.h ├── simedit_impl.h ├── static.c ├── static_impl.h ├── test │ ├── Makefile │ ├── bidi_text.txt │ ├── bidiedit_arabic.c │ ├── bidiedit_hebrew.c │ ├── resource.h │ ├── scrollbar_test.c │ └── scrollbar_test_res.c ├── text.h ├── textedit.c ├── textedit_impl.h ├── trackbar.c └── trackbar_impl.h ├── ex_ctrl ├── CMakeLists.txt ├── Makefile.am ├── animation.c ├── animation_impl.h ├── coolbar.c ├── coolbar_impl.h ├── gif89a.c ├── gridview.c ├── gridview_impl.h ├── gridviewcelltype.c ├── iconview.c ├── iconview_impl.h ├── listview.c ├── listview_impl.h ├── makefile.msvc ├── makefile.ng ├── monthcalendar.c ├── monthcalendar_impl.h ├── spinbox.c ├── spinbox_impl.h ├── treeview.c ├── treeview_impl.h └── treeview_rdr.c ├── font ├── CMakeLists.txt ├── Makefile.am ├── big5unimap.c ├── bitmapfont.c ├── bitmapfont.h ├── charset-arabic.c ├── charset-unicode.c ├── charset.c ├── charset.h ├── convgbmap.c ├── devfont.c ├── emoji_presentation_scanner.inc ├── euckrunimap.c ├── font-engines.c ├── fontcache.c ├── fontname.c ├── freetype1.c ├── freetype1.h ├── freetype2.c ├── freetype2.h ├── gb18030unimap.c ├── gbkunimap.c ├── gbunimap.c ├── harzbuff-minigui-funcs.c ├── in-core │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── makefile.msvc │ ├── makefile.ng │ ├── rbf_fixedsys_8x15.c │ ├── rbf_terminal_8x12.c │ ├── rbf_vgaoem_8x8.c │ ├── upf_smoothtimes_100_50.c │ ├── upf_times_12x10.c │ ├── upf_times_17x14.c │ ├── vbf_courier_8x13.c │ ├── vbf_sansserif_11x13.c │ └── vbf_system_14x16.c ├── jisunimap.c ├── language-code.c ├── legacy-bidi-tables.inc ├── legacy-bidi.c ├── logfont.c ├── makefile.msvc ├── makefile.ng ├── mapunitobig5.c ├── mapunitogb.c ├── mapunitogb18030.c ├── mapunitogbk.c ├── my_debug.h ├── nullfont.c ├── palette.h ├── qpf.c ├── qpf.h ├── rawbitmap.c ├── rawbitmap.h ├── script-language-table.inc ├── scripteasy.c ├── se_minigui.h ├── sjisunimap.c ├── sysfont.c ├── sysfont.old.c ├── test │ ├── arabic │ │ ├── Makefile │ │ ├── README │ │ ├── arabic_test.c │ │ ├── arabic_text.txt │ │ ├── arabic_text2.txt │ │ ├── arabic_text_all.txt │ │ ├── arabic_text_longline.txt │ │ ├── arabic_text_mirrorsymbol.txt │ │ ├── arabic_text_phonetics.txt │ │ ├── combin_test.c │ │ ├── letter-join.txt │ │ ├── letter.txt │ │ ├── phonetics-shadda-2.txt │ │ ├── phonetics-tatweel-2.txt │ │ ├── phonetics-tatweel-shadda-3.txt │ │ ├── shape_single.txt │ │ └── shape_test.c │ ├── avl │ │ ├── Makefile │ │ ├── avl-test.c │ │ ├── bmpfonttest.c │ │ └── bmpfonttest.h │ ├── bmpf │ │ ├── Makefile │ │ ├── bmpf-test-italic.c │ │ ├── bmpf-test.c │ │ ├── digits1.png │ │ ├── digits2.png │ │ ├── digits3.png │ │ └── digits4.png │ ├── compatible │ │ ├── Makefile │ │ ├── cmtp-test.c │ │ └── digits1.png │ └── hebrew │ │ ├── Makefile │ │ ├── hebrew_test.c │ │ ├── hebrew_text.txt │ │ ├── hebrew_text1.txt │ │ ├── hebrew_text2.txt │ │ ├── hebrew_text3.txt │ │ ├── hebrew_text4.txt │ │ ├── hebrew_text6.txt │ │ ├── hebrew_text7.txt │ │ └── helloworld.c ├── textops.c ├── type1.c ├── type1.h ├── ujisunimap.c ├── unicode-arabic-misc-table.inc ├── unicode-arabic-shaping-table.inc ├── unicode-arabic-shapping-tables.h ├── unicode-bidi-brackets-table.inc ├── unicode-bidi-brackets-type-table.inc ├── unicode-bidi-mirroring-table.inc ├── unicode-bidi-tables.h ├── unicode-bidi-type-table.inc ├── unicode-bidi-types-list.inc ├── unicode-bidi.c ├── unicode-bidi.h ├── unicode-break-arabic.c ├── unicode-break-indic.c ├── unicode-break-tables.h ├── unicode-break-thai.c ├── unicode-break.c ├── unicode-comp.c ├── unicode-comp.h ├── unicode-decomp.h ├── unicode-emoji-tables.h ├── unicode-emoji.c ├── unicode-iterators.c ├── unicode-joining-type-table.inc ├── unicode-joining-types-list.inc ├── unicode-joining-types.c ├── unicode-joining.c ├── unicode-script-table.h ├── unicode-script.c ├── unicode-shape-arabic.c ├── unicode-shape-complex-indic-table.c ├── unicode-shape.c ├── unicode-tables.h ├── unicode-vop-table.inc ├── unicode-vop.c ├── upf.c ├── upf.h ├── utils │ ├── IndicVowelConstraints.txt │ ├── Makefile │ ├── bin2c.c │ ├── fetch-emoji.sh │ ├── fetch-ucd.sh │ ├── gb18030-unicode.txt │ ├── gen-arabic-liga.sh │ ├── gen-arabic-shaping-tab.c │ ├── gen-arabic-table.py │ ├── gen-bidi-tables.py │ ├── gen-bidi-type-tab.c │ ├── gen-brackets-tab.c │ ├── gen-brackets-type-tab.c │ ├── gen-emoji-table.py │ ├── gen-indic-table.py │ ├── gen-iso8859-bidi-tables.py │ ├── gen-joining-type-tab.c │ ├── gen-mirroring-tab.c │ ├── gen-unicode-tables.pl │ ├── gen-unicode-version.c │ ├── gen-vop-tab.c │ ├── gen-vowel-constraints.py │ ├── iso-639-1.txt │ ├── iso-639.txt │ ├── mkmap-ucs-gb18030.c │ ├── mkmap-ucs-gb2312.c │ ├── my_debug.h │ ├── packtab.c │ ├── packtab.h │ ├── sjis-unicode.txt │ └── sjisunimap.c ├── varbitmap.c └── varbitmap.h ├── gui ├── CMakeLists.txt ├── Makefile.am ├── accelkey.c ├── arabickeymap.c ├── caret.c ├── ctrlclass.c ├── de-kmap.c ├── de-latin1-kmap.c ├── de-latin1-nodeadkeys-kmap.c ├── defkeymap.c ├── dialog.c ├── es-cp850-kmap.c ├── es-kmap.c ├── fr-kmap.c ├── fr-pc-kmap.c ├── hebrewkeymap.c ├── it-kmap.c ├── keyboard.c ├── keyboard.h ├── lf_classic.c ├── lf_common.c ├── lf_common.h ├── lf_fashion.c ├── lf_flat.c ├── lf_manager.c ├── lf_skin.c ├── lf_test │ ├── AUTHORS │ ├── COPYING │ ├── ChangeLog │ ├── INSTALL │ ├── Makefile.am │ ├── NEWS │ ├── README │ ├── autogen.sh │ ├── configure.in │ ├── design │ └── src │ │ ├── Makefile.am │ │ ├── bkgnd.jpg │ │ ├── button_my.c │ │ ├── combobox.c │ │ ├── coolbar.c │ │ ├── ctrldemo.c │ │ ├── ctrls.h │ │ ├── draw_fold.c │ │ ├── draw_radio.c │ │ ├── edit.c │ │ ├── font_dialog.c │ │ ├── grid.c │ │ ├── helloworld.c │ │ ├── listbox.c │ │ ├── listview.c │ │ ├── menubutton.c │ │ ├── monthcalendar.c │ │ ├── my_debug.h │ │ ├── newtoolbar.c │ │ ├── progbar.c │ │ ├── res │ │ ├── 1.gif │ │ ├── Makefile.am │ │ ├── audio.ico │ │ ├── bkgnd.gif │ │ ├── case │ │ │ ├── 1 │ │ │ ├── 2 │ │ │ ├── 3 │ │ │ ├── 20 │ │ │ └── 30 │ │ ├── cddrive.ico │ │ ├── closefolder.bmp │ │ ├── copy.bmp │ │ ├── cut.bmp │ │ ├── delete.bmp │ │ ├── exepro.bmp │ │ ├── fall_night.jpg │ │ ├── folder.bmp │ │ ├── mouse.bmp │ │ ├── new1.jpg │ │ ├── new2.jpg │ │ ├── new3.jpg │ │ ├── new4.jpg │ │ ├── newfolder.bmp │ │ ├── ntb2.bmp │ │ ├── paste.bmp │ │ ├── qq.bmp │ │ ├── table.ico │ │ └── updir.bmp │ │ ├── resource.h │ │ ├── spinbox.c │ │ ├── static.c │ │ ├── subclass.c │ │ ├── test_calccolor.c │ │ ├── test_draw.c │ │ ├── test_draw_menu.c │ │ ├── test_window.c │ │ ├── timeedit.c │ │ ├── tmp.c │ │ ├── toolbar.c │ │ ├── trackbar.c │ │ └── treeview.c ├── lf_tiny.c ├── linux_kd.h ├── linux_keyboard.h ├── linux_types.h ├── makefile.msvc ├── makefile.ng ├── menu.c ├── nrw_test │ ├── mem_test │ │ ├── 11.bmp │ │ ├── 22.bmp │ │ ├── 33.bmp │ │ ├── 44.bmp │ │ ├── 55.bmp │ │ ├── Makefile │ │ ├── mem_test.c │ │ ├── mginit.c │ │ ├── mtrace.sh │ │ ├── mtrace_test.c │ │ └── valgrind.sh │ ├── mybmp2region │ │ ├── 11.bmp │ │ ├── 22.bmp │ │ ├── 33.bmp │ │ ├── 44.bmp │ │ ├── 55.bmp │ │ ├── Makefile │ │ ├── mginit.c │ │ └── mybmp2region.c │ └── performance_test │ │ ├── 11.bmp │ │ ├── 22.bmp │ │ ├── 33.bmp │ │ ├── 44.bmp │ │ ├── 55.bmp │ │ ├── Makefile │ │ ├── btn.bmp │ │ ├── button.bmp │ │ ├── edit.bmp │ │ ├── mginit.c │ │ ├── normalwin.c │ │ ├── nr_btn.c │ │ ├── nr_ctrl.c │ │ ├── nr_ctrl2.c │ │ ├── nr_edit.c │ │ ├── nr_prog.c │ │ ├── nr_win.c │ │ ├── prog.bmp │ │ ├── roundcornerwin.c │ │ ├── thread_test.c │ │ └── trans_nr_win.c ├── transkey.c └── window.c ├── ial ├── 2410.c ├── 2410.h ├── 2440.c ├── 2440.h ├── CMakeLists.txt ├── Makefile.am ├── abs_signal_driver.c ├── abs_signal_driver.h ├── abssig.c ├── abssig.h ├── ads.c ├── ads.h ├── ads7846.c ├── ads7846.h ├── ads_internal.h ├── arm3000.c ├── arm3000.h ├── auto-protocol.h ├── auto.c ├── auto.h ├── c33l05.c ├── c33l05.h ├── calib.c ├── cisco_touchpad.c ├── cisco_touchpad.h ├── comminput.c ├── comminput.h ├── custom.h ├── davinci6446.c ├── davinci6446.h ├── dfb.c ├── dfb.h ├── dlcustom │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── dlcustom.c │ ├── dlcustom.h │ └── sample │ │ ├── Makefile │ │ ├── iale_custom.c │ │ └── iale_custom.h ├── dm270.c ├── dm270.h ├── dmg-stb.c ├── dmg-stb.h ├── dummy.c ├── dummy.h ├── em85.c ├── em85.h ├── em86.c ├── em86.h ├── em8620.c ├── em8620.h ├── embest2410.c ├── embest2410.h ├── embest44b0.c ├── embest44b0.h ├── ep7211.c ├── ep7211.h ├── ep7211_internal.h ├── evmv10.c ├── evmv10.h ├── fft7202.c ├── fft7202.h ├── figueroa.c ├── figueroa.h ├── fip.c ├── fip.h ├── fxrm9200.c ├── fxrm9200.h ├── fz_custom.c ├── helio.c ├── helio.h ├── hh2410r3.c ├── hh2410r3.h ├── hh2440.c ├── hh2440.h ├── hh5249kbdir.c ├── hh5249kbdir.h ├── hi3510.c ├── hi3510.h ├── ial.c ├── init_ts.c ├── ipaq-h3600.c ├── ipaq-h3600.h ├── ipaq-h5400.c ├── ipaq-h5400.h ├── jz4740.c ├── jz4740.h ├── l7200.c ├── l7200.h ├── libmc.h ├── lide.c ├── lide.h ├── linux-libinput.c ├── linux-libinput.h ├── linux-tty.c ├── makefile.msvc ├── makefile.ng ├── mc68x328.c ├── mc68x328.h ├── mgsock.c ├── mpc823.c ├── mpc823.h ├── mstarial.c ├── mstarial.h ├── native │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── README │ ├── kbd_event.c │ ├── kbd_tty.c │ ├── mou_gpm.c │ ├── mou_imps2.c │ ├── mou_ms.c │ ├── mou_ms3.c │ ├── mou_ps2.c │ ├── native.c │ ├── native.h │ └── vtswitch-lite.c ├── netial │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── README │ ├── netial.c │ └── netial.h ├── nexusial │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── nexus.c │ └── nexus.h ├── palm2.c ├── palm2.h ├── pcxvfb.h ├── pcxvfbial.c ├── ps2-conv.c ├── ps2-keycode.h ├── px255b.c ├── px255b.h ├── qemu.c ├── qemu.h ├── qvfb.c ├── qvfb.h ├── random.c ├── random.h ├── remoteial │ ├── Makefile │ ├── README │ ├── client │ │ ├── Makefile │ │ ├── netial.c │ │ ├── netial_ctrlwin.c │ │ └── netial_ctrlwin.h │ └── netial_server.c ├── rtos_xvfb.c ├── rtos_xvfb.h ├── singletouchkey.c ├── singletouchkey.h ├── skyeye-ep7312.c ├── skyeye-ep7312.h ├── spec_general_ts_drv.html ├── svgalib.c ├── svgalib.h ├── svpxx.c ├── svpxx.h ├── t800.c ├── t800.h ├── tf-code.h ├── tf-stb.c ├── tf-stb.h ├── thor.c ├── thor.h ├── tslibial.c ├── tslibial.h ├── ucb1x00.c ├── ucb1x00.h ├── usvfbinput.c ├── usvfbinput.h ├── utpmc.c ├── utpmc.h ├── vp2008.c ├── vp2008.h ├── vr4181.c ├── vr4181.h ├── vxi386_input.c ├── vxppc_input.c ├── winial.c ├── winial.h ├── wvfb.h └── wvfbial.c ├── image ├── CMakeLists.txt ├── Makefile.am ├── cdjpeg.h ├── gif.c ├── imgapi.c ├── imgapi.h ├── jcomapi.c ├── jdapimin.c ├── jdapistd.c ├── jdatasrc.c ├── jdcoefct.c ├── jdcolor.c ├── jdct.h ├── jddctmgr.c ├── jdhuff.c ├── jdhuff.h ├── jdinput.c ├── jdmainct.c ├── jdmarker.c ├── jdmaster.c ├── jdmerge.c ├── jdphuff.c ├── jdpostct.c ├── jdsample.c ├── jdtrans.c ├── jidct.c ├── jmorecfg.h ├── jpegint.h ├── jpeglib.h ├── jpg.c └── jutils.c ├── include ├── CMakeLists.txt ├── Makefile.am ├── accelkey.h ├── bidi.h ├── bitmap.h ├── blockheap.h.deprecated ├── client.h ├── clipboard.h ├── cliprect.h ├── constants.h ├── ctrlclass.h ├── cursor.h ├── dc.h ├── debug.h ├── devfont.h ├── drawsemop.h ├── element.h ├── event.h ├── fontname.h ├── gal.h ├── gif.h ├── glyph.h ├── ial.h ├── icon.h ├── incoreres.h ├── inline.h ├── internals.h ├── jpg.h ├── license.h ├── linux-tty.h ├── list.h ├── map.h ├── md5.h ├── memops.h ├── menu.h ├── mgsock.h ├── misc.h ├── msgstr.h ├── newgal.h ├── ourhdr.h ├── rbtree.h ├── readbmp.h ├── server.h ├── sharedres.h ├── sockio.h ├── sysfont.h ├── sysres.h ├── timer.h ├── unicode-ops.h └── zorder.h ├── kernel ├── CMakeLists.txt ├── Makefile.am ├── blockheap.c ├── compsor-fallback.c ├── compsor-manager.c ├── cursor-comm.c ├── cursor-procs.c ├── cursor-sa.c ├── cursor.c ├── desktop-comm.c ├── desktop-procs.c ├── desktop-sa.c ├── desktop-ths.c ├── desktop.c ├── event.c ├── fixstr.c ├── init-lite.c ├── init.c ├── listenfd.c ├── makefile.msvc ├── makefile.ng ├── message.c ├── sem-manager.c ├── sharedres.c ├── slotset.c ├── timer.c ├── timer_posix.c └── zorder.c ├── libc ├── CMakeLists.txt ├── Makefile.am ├── defdev.c ├── fnprintf.c ├── fprintf.c ├── fscanf.c ├── ieeefp.h ├── makefile.msvc ├── makefile.ng ├── malloc.c ├── mgslice.c ├── nucleus_mutex.c ├── nucleus_pprivate.h ├── nucleus_pthread.c ├── nucleus_sem.c ├── ose_sem.c ├── printf.c ├── psos_mutex.c ├── psos_pprivate.c ├── psos_pprivate.h ├── psos_pthread.c ├── psos_sem.c ├── scanf.c ├── snprintf.c ├── sprintf.c ├── sscanf.c ├── stdioinlines.c ├── sysvipc_mutex.c ├── sysvipc_private.c ├── sysvipc_private.h ├── sysvipc_sem.c ├── threadx_mutex.c ├── threadx_pprivate.c ├── threadx_pprivate.h ├── threadx_pthread.c ├── threadx_sem.c ├── ucos2_mutex.c ├── ucos2_pprivate.h ├── ucos2_pthread.c ├── ucos2_sem.c ├── vfnprintf.c ├── vfscanf.c ├── vsnprintf.c ├── vsscanf.c ├── vxworks_mutex.c ├── vxworks_pprivate.h ├── vxworks_pthread.c └── vxworks_sem.c ├── main ├── CMakeLists.txt ├── Makefile.am ├── main.c ├── makefile.msvc ├── makefile.ng └── minigui-win32.c ├── makefile.msvc ├── makefile.ng ├── misc ├── CMakeLists.txt ├── Makefile.am ├── about.c ├── anon_file.c ├── clipboard.c ├── drawsemop.c ├── endianrw.c ├── error.c ├── errorlog.c ├── license.c ├── lock_file.c ├── makefile.msvc ├── makefile.ng ├── map.c ├── math.c ├── misc-dt.c ├── misc-win.c ├── misc.c ├── nposix.c ├── rbtree.c ├── rc4.c ├── rc4.h ├── rwops.c ├── sockio.c └── systext.c ├── mybmp ├── CMakeLists.txt ├── Makefile.am ├── gif.c ├── jpeg.c ├── lbm.c ├── makefile.msvc ├── makefile.ng ├── mybmp.c ├── pcx.c ├── png12.c ├── png16.c ├── tga.c ├── webp.c └── winbmp.c ├── newgal ├── CMakeLists.txt ├── Makefile.am ├── RLEaccel.c ├── RLEaccel_c.h ├── bf533 │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── bf533video.c │ ├── bf533video.h │ └── makefile.ng ├── blit.c ├── blit.h ├── blit_0.c ├── blit_1.c ├── blit_A.c ├── blit_A.h ├── blit_N.c ├── commlcd │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── axlinux_c33l05.c │ ├── axlinux_c33l05.h │ ├── commlcd.c │ ├── commlcd.h │ ├── ecos_generic.c │ ├── ecos_mv6600.c │ ├── extern.c │ ├── makefile.msvc │ ├── makefile.ng │ ├── ose_mx21.c │ ├── vxworks_i386.c │ ├── vxworks_ppc.c │ └── win_generic.c ├── dfb │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── dfbvideo.c │ ├── dfbvideo.h │ ├── makefile.ng │ ├── st7167_video.c │ └── st7167_video.h ├── drm │ ├── Makefile.am │ ├── drmvideo.c │ ├── drmvideo.h │ ├── linux-dma-buf.h │ └── makefile.ng ├── dummy │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── makefile.msvc │ ├── makefile.ng │ ├── nullvideo.c │ └── nullvideo.h ├── em85xxosd │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── em85xxosd.c │ ├── em85xxosd.h │ └── realmagichwl_userland_api.c ├── em85xxyuv │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── em85xxyuv.c │ ├── em85xxyuv.h │ └── realmagichwl_userland_api.c ├── em86gfx │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── em86gfx.c │ └── em86gfx.h ├── fbcon │ ├── 3dfx_mmio.h │ ├── 3dfx_regs.h │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── compiler.h │ ├── fb3dfx.c │ ├── fb3dfx.h │ ├── fbmatrox.c │ ├── fbmatrox.h │ ├── fbneomagic.c │ ├── fbneomagic.h │ ├── fbvideo.c │ ├── fbvideo.h │ ├── hi3560aInit │ │ ├── Makefile │ │ ├── README │ │ └── hi3560a_init.c │ ├── matrox_mmio.h │ ├── matrox_regs.h │ ├── neomagic_mmio.h │ ├── pci_smi.c │ ├── pci_smi.h │ ├── pciinfo.h │ ├── pcivideo.c │ └── pcivideo.h ├── gamma.c ├── gdl │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── gdl_video.c │ └── gdl_video.h ├── hisi │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── gal_hi3560a.c │ ├── gal_hi3560a.h │ ├── hi3510_fb.h │ ├── hi3510_fbvideo.c │ ├── hi3510_fbvideo.h │ ├── hi3560_fb.h │ ├── hi3560_fbvideo.c │ ├── hi3560_fbvideo.h │ ├── hi_tde.h │ ├── pix_array.c │ ├── tde.c │ └── tde_reg.h ├── leaks.h ├── makefile.msvc ├── makefile.ng ├── mb93493 │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── makefile.ng │ ├── mb93493video.c │ ├── mb93493video.h │ ├── vdc_init.c │ └── vdc_init.h ├── mlshadow │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── makefile.msvc │ ├── makefile.ng │ ├── mlshadow-proc.c │ ├── mlshadow-proc.h │ ├── mlshadow-ths.c │ ├── mlshadow-ths.h │ └── test │ │ ├── 1.jpg │ │ ├── 2.jpg │ │ ├── 3.jpg │ │ ├── Makefile │ │ ├── mlshadow_test.jpg │ │ ├── mlshadowtest_left.c │ │ ├── mlshadowtest_right.c │ │ └── window_mini_max.c ├── mstar │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── mstar_video.c │ └── mstar_video.h ├── newgal.c ├── nexus │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── makefile.msvc │ ├── makefile.ng │ ├── nexusvideo.c │ ├── nexusvideo.h │ ├── nexusvideo_pri.c │ └── nexusvideo_pri.h ├── pcxvfb │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── pcxvfb-winfb.c │ ├── pcxvfb-winfb.h │ ├── pcxvfb.c │ └── pcxvfb.h ├── pixels.c ├── pixels_c.h ├── qvfb │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── qvfb.c │ └── qvfb.h ├── rtos_xvfb │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── rtos_xvfb.c │ ├── rtos_xvfb.h │ └── test │ │ ├── Makefile │ │ ├── hello.c │ │ ├── xvfb.c │ │ └── xvfb.h ├── s3c6410 │ ├── Makefile.am │ ├── gal-s3c6410.c │ └── gal-s3c6410.h ├── shadow-screen.c ├── shadow-screen.h ├── shadow │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── ecos_generic.c │ ├── makefile.msvc │ ├── makefile.ng │ ├── nucleus_monaco.c │ ├── shadow.c │ ├── shadow.h │ ├── shadow_refresh_msb_left.c │ ├── shadow_refresh_msb_right.c │ ├── threadx_anvil.c │ └── unknown.c ├── sigma8654 │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── sigma8654.c │ ├── sigma8654.h │ └── sigma8654_pri.h ├── stgfb │ ├── Makefile.am │ ├── makefile.ng │ ├── st_include │ │ ├── layer_rev.h │ │ ├── linuxcommon.h │ │ ├── linuxwrapper.h │ │ ├── stavmem.h │ │ ├── stblit.h │ │ ├── stblit_ioctl.h │ │ ├── stcommon.h │ │ ├── stddefs.h │ │ ├── stdevice.h │ │ ├── stevt.h │ │ ├── stevt_ioctl.h │ │ ├── stgfb.h │ │ ├── stgxobj.h │ │ ├── stlayer.h │ │ ├── stlayer_ioctl.h │ │ ├── stlite.h │ │ ├── stos.h │ │ └── stsys.h │ ├── stgfb_video.c │ └── stgfb_video.h ├── stretch.c ├── stretch_c.h ├── surface-cursor.c ├── surface-shared.c ├── surface-shm.c ├── surface.c ├── svpxxosd │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── makefile.ng │ ├── svphead.h │ ├── svpxxosd.c │ └── svpxxosd.h ├── sysvideo.h ├── usvfb │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── makefile.msvc │ ├── makefile.ng │ ├── usvfb.c │ └── usvfb.h ├── utpmc │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── makefile.ng │ ├── utpmcvideo-lite.c │ ├── utpmcvideo-lite.h │ ├── utpmcvideo.c │ └── utpmcvideo.h ├── video.c ├── videomem-bucket.c ├── videomem-bucket.h ├── wvfb │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── makefile.msvc │ ├── makefile.ng │ ├── winfb.c │ ├── winfb.h │ ├── wvfb.c │ └── wvfb.h ├── xlib │ ├── Makefile.am │ ├── makefile.msvc │ ├── makefile.ng │ ├── xlibvideo.c │ ├── xlibvideo.h │ └── xxvfb │ │ ├── Makefile │ │ ├── define.h │ │ ├── main.c │ │ ├── xxvfb.c │ │ ├── xxvfb.h │ │ ├── xxvfb_common.c │ │ ├── xxvfb_common.h │ │ ├── xxvfb_input.c │ │ ├── xxvfb_input.h │ │ └── xxvfbhdr.h ├── yuv.c ├── yuv_mmx.c ├── yuv_sw.c ├── yuv_sw_c.h └── yuvfuncs.h ├── newgdi ├── CMakeLists.txt ├── Makefile.am ├── achar-uchar.c ├── advapi.c ├── arc.c ├── attr.c ├── bitmap.c ├── clip.c ├── coor.c ├── drawtext.c ├── drawtext.h ├── flood.c ├── gdi.c ├── generators.c ├── glyph-old.c ├── glyph-shaped.c ├── glyph.c ├── glyph.h ├── icon.c ├── layout-ellipsize.c ├── layout-utils.c ├── layout.c ├── layout.h ├── legacy-bidi.c ├── line.c ├── makefile.msvc ├── makefile.ng ├── map.c ├── mi.h ├── miarc.c ├── midash.c ├── midc.h ├── mifillarc.c ├── mifillarc.h ├── mifpoly.h ├── mifpolycon.c ├── mispans.c ├── mispans.h ├── mistruct.h ├── miwideline.c ├── miwideline.h ├── obsolote │ ├── getucharsandbreaks.c │ └── logfont.c ├── palette.c ├── pixel.c ├── pixel_ops.c ├── pixel_ops.h ├── polygon.c ├── polygon.h ├── readbmp.c ├── rect.c ├── region.c ├── rotatebmp.c ├── screen.c ├── shape-glyphs-basic.c ├── shape-glyphs-complex.c ├── shared-surface.c ├── simple-glyph-renderer.c ├── tabbedtextout.c ├── test │ └── glyph │ │ ├── Makefile │ │ ├── glyph-bitmap.c │ │ ├── glyph-draw.c │ │ └── glyph-test.c ├── text.c ├── textout.c ├── textruns.c ├── textruns.h └── yuv.c ├── server ├── CMakeLists.txt ├── Makefile.am ├── client.c ├── layer.c ├── request.c ├── servaccept.c ├── server.c └── servlisten.c ├── standalone ├── CMakeLists.txt ├── Makefile.am ├── makefile.ng └── standalone.c ├── sysres ├── CMakeLists.txt ├── Makefile.am ├── bmp │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── _bmp_inner_res.c │ ├── classic_check_button.bmp.c │ ├── classic_radio_button.bmp.c │ ├── flat_check_button.bmp.c │ ├── flat_radio_button.bmp.c │ ├── makefile.ng │ ├── skin_arrows.gif.c │ ├── skin_arrows_shell.bmp.c │ ├── skin_bborder.bmp.c │ ├── skin_bkgnd.bmp.c │ ├── skin_caption.gif.c │ ├── skin_checkbtn.bmp.c │ ├── skin_cpn_btn.gif.c │ ├── skin_header.bmp.c │ ├── skin_lborder.bmp.c │ ├── skin_pb_htrack.gif.c │ ├── skin_pb_htruck.bmp.c │ ├── skin_pb_vtrack.gif.c │ ├── skin_pb_vtruck.bmp.c │ ├── skin_pushbtn.gif.c │ ├── skin_radiobtn.gif.c │ ├── skin_rborder.bmp.c │ ├── skin_sb_arrows.bmp.c │ ├── skin_sb_hshaft.bmp.c │ ├── skin_sb_hthumb.bmp.c │ ├── skin_sb_vshaft.bmp.c │ ├── skin_sb_vthumb.bmp.c │ ├── skin_tab.gif.c │ ├── skin_tb_horz.gif.c │ ├── skin_tb_vert.gif.c │ ├── skin_tborder.bmp.c │ ├── skin_tbslider_h.gif.c │ ├── skin_tbslider_v.gif.c │ └── skin_tree.bmp.c ├── cursor │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── cursors.c │ └── makefile.ng ├── font │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── _font_inner_res.c │ ├── incore-font00.c │ ├── incore-font01.c │ ├── incore-font02.c │ ├── incore-font03.c │ ├── incore-font04.c │ ├── incore-font05.c │ ├── incore-font06.c │ ├── incore-font07.c │ ├── incore-font08.c │ ├── incore-font09.c │ ├── incore-font10.c │ ├── incore-font11.c │ ├── incore-font12.c │ ├── incore-font13.c │ ├── incore-font14.c │ ├── incore-font15.c │ ├── incore-font16.c │ ├── incore-font17.c │ ├── incore-font18.c │ ├── incore-font19.c │ ├── incore-font20.c │ ├── incore-font21.c │ ├── incore-font22.c │ ├── incore-font23.c │ ├── incore-font24.c │ ├── incore-font25.c │ ├── incore-font26.c │ ├── incore-font27.c │ ├── incore-font28.c │ ├── incore-font29.c │ ├── incore-font30.c │ ├── incore-font31.c │ └── makefile.ng ├── icon │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── _icon_inner_res.c │ ├── excalmatory-flat.ico.c │ ├── excalmatory.ico.c │ ├── failed-flat.ico.c │ ├── failed.ico.c │ ├── fold-flat.ico.c │ ├── fold.ico.c │ ├── folder-flat.ico.c │ ├── folder.ico.c │ ├── form-flat.ico.c │ ├── form.ico.c │ ├── help-flat.ico.c │ ├── help.ico.c │ ├── makefile.ng │ ├── textfile-flat.ico.c │ ├── textfile.ico.c │ ├── unfold-flat.ico.c │ ├── unfold.ico.c │ ├── warning-flat.ico.c │ └── warning.ico.c ├── incoreres.c ├── inner-res-trans ├── license │ ├── Makefile.am │ ├── c_files │ │ ├── 00_minigui.dat.c │ │ ├── 01_fmsoft.dat.c │ │ ├── 02_feiman.dat.c │ │ ├── 03_progressbar.dat.c │ │ ├── 04_progressbar-bk.dat.c │ │ ├── Makefile.am │ │ └── _splash_inner_res.c │ ├── genkey.sh │ ├── pictures │ │ ├── common │ │ │ ├── 01_fmsoft.png │ │ │ ├── 02_feiman.png │ │ │ ├── 03_progressbar.png │ │ │ └── 04_progressbar-bk.png │ │ ├── hybridos │ │ │ ├── 00_minigui.png │ │ │ ├── 01_fmsoft.png │ │ │ ├── 02_feiman.png │ │ │ ├── 03_progressbar.png │ │ │ └── 04_progressbar-bk.png │ │ ├── mdolphin │ │ │ ├── 00_minigui.png │ │ │ ├── 01_fmsoft.png │ │ │ ├── 02_feiman.png │ │ │ ├── 03_progressbar.png │ │ │ └── 04_progressbar-bk.png │ │ └── minigui │ │ │ ├── 00_minigui.png │ │ │ ├── 01_fmsoft.png │ │ │ ├── 02_feiman.png │ │ │ ├── 03_progressbar.png │ │ │ └── 04_progressbar-bk.png │ └── runme.sh ├── makefile.msvc ├── makefile.ng ├── mgetc.c ├── mgetc_win32.c ├── mkinnerres.sh ├── resmgr.c ├── resmgr.h ├── resource.c └── test │ ├── Makefile │ ├── README │ ├── drawcursor.c │ ├── drawicon.c │ ├── drawimage.c │ ├── incore_pic.c │ ├── skin_test.c │ └── tools │ └── qsort.c ├── template.c ├── template.h └── textedit ├── CMakeLists.txt ├── Makefile.am ├── makefile.ng ├── mbtree.c ├── mbtree.h ├── mtextedit.c ├── mtextedit.h ├── mtexteditbase.h ├── mwidget.c ├── mwidget.h ├── object.c └── object.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/.gitignore -------------------------------------------------------------------------------- /3rd-party/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = scripteasy 2 | 3 | -------------------------------------------------------------------------------- /AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/AUTHORS.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/ChangeLog -------------------------------------------------------------------------------- /ChangeLog.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/ChangeLog.old -------------------------------------------------------------------------------- /Doxyfile.procs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/Doxyfile.procs -------------------------------------------------------------------------------- /Doxyfile.sal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/Doxyfile.sal -------------------------------------------------------------------------------- /Doxyfile.ths: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/Doxyfile.ths -------------------------------------------------------------------------------- /GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/GNUmakefile -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/INSTALL -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE-POLICY-en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/LICENSE-POLICY-en.md -------------------------------------------------------------------------------- /LICENSE-POLICY-zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/LICENSE-POLICY-zh.md -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/Makefile.am -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- 1 | Please refer to README.md. 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE-NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/RELEASE-NOTES.md -------------------------------------------------------------------------------- /Version.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/Version.md -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/autogen.sh -------------------------------------------------------------------------------- /clean_license.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/clean_license.sh -------------------------------------------------------------------------------- /cleanup-code.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/cleanup-code.sh -------------------------------------------------------------------------------- /cmake/FindFREETYPE.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/cmake/FindFREETYPE.cmake -------------------------------------------------------------------------------- /cmake/FindJPEG.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/cmake/FindJPEG.cmake -------------------------------------------------------------------------------- /cmake/FindMiniGUI.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/cmake/FindMiniGUI.cmake -------------------------------------------------------------------------------- /cmake/FindPNG.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/cmake/FindPNG.cmake -------------------------------------------------------------------------------- /cmake/FindPTHREAD.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/cmake/FindPTHREAD.cmake -------------------------------------------------------------------------------- /cmake/FindZLIB.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/cmake/FindZLIB.cmake -------------------------------------------------------------------------------- /cmake/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/cmake/Makefile.am -------------------------------------------------------------------------------- /cmake/common.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/cmake/common.cmake -------------------------------------------------------------------------------- /cmake/minigui-private.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/cmake/minigui-private.cmake -------------------------------------------------------------------------------- /cmake_mgconfig.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/cmake_mgconfig.h.in -------------------------------------------------------------------------------- /configs/Configure.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/configs/Configure.help -------------------------------------------------------------------------------- /configs/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/configs/Makefile.am -------------------------------------------------------------------------------- /configs/config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/configs/config.in -------------------------------------------------------------------------------- /configs/defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/configs/defconfig -------------------------------------------------------------------------------- /configs/feature.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/configs/feature.in -------------------------------------------------------------------------------- /configs/mkdefconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/configs/mkdefconfig -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/configure.ac -------------------------------------------------------------------------------- /doc/Makefile.am: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /doc/articles/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/doc/articles/Makefile.am -------------------------------------------------------------------------------- /doc/articles/guide-2/Makefile.am: -------------------------------------------------------------------------------- 1 | EXTRA_DIST = index.html 2 | 3 | -------------------------------------------------------------------------------- /doc/articles/guide-3/Makefile.am: -------------------------------------------------------------------------------- 1 | EXTRA_DIST = index.html image.gif 2 | 3 | -------------------------------------------------------------------------------- /doc/articles/guide-4/Makefile.am: -------------------------------------------------------------------------------- 1 | EXTRA_DIST = index.html 2 | 3 | -------------------------------------------------------------------------------- /doc/articles/guide-5/Makefile.am: -------------------------------------------------------------------------------- 1 | EXTRA_DIST = index.html 2 | 3 | -------------------------------------------------------------------------------- /doc/articles/guide-6/Makefile.am: -------------------------------------------------------------------------------- 1 | EXTRA_DIST = index.html 2 | 3 | -------------------------------------------------------------------------------- /doc/articles/guide-7/Makefile.am: -------------------------------------------------------------------------------- 1 | EXTRA_DIST = index.html image1.gif 2 | 3 | -------------------------------------------------------------------------------- /doc/articles/guide-8/Makefile.am: -------------------------------------------------------------------------------- 1 | EXTRA_DIST = index.html 2 | 3 | -------------------------------------------------------------------------------- /doc/articles/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/doc/articles/index.html -------------------------------------------------------------------------------- /doc/articles/minigui-1/Makefile.am: -------------------------------------------------------------------------------- 1 | EXTRA_DIST = index.html 2 | 3 | -------------------------------------------------------------------------------- /doc/articles/minigui-2/Makefile.am: -------------------------------------------------------------------------------- 1 | EXTRA_DIST = index.html 2 | 3 | -------------------------------------------------------------------------------- /doc/articles/minigui-3/Makefile.am: -------------------------------------------------------------------------------- 1 | EXTRA_DIST = index.html 2 | 3 | -------------------------------------------------------------------------------- /doc/articles/minigui-4/Makefile.am: -------------------------------------------------------------------------------- 1 | EXTRA_DIST = index.html 2 | 3 | -------------------------------------------------------------------------------- /doc/articles/minigui-5/Makefile.am: -------------------------------------------------------------------------------- 1 | EXTRA_DIST = index.html 2 | 3 | -------------------------------------------------------------------------------- /doc/articles/minigui-6/Makefile.am: -------------------------------------------------------------------------------- 1 | EXTRA_DIST = index.html 2 | 3 | -------------------------------------------------------------------------------- /doc/articles/minigui-7/Makefile.am: -------------------------------------------------------------------------------- 1 | EXTRA_DIST = index.html 2 | 3 | -------------------------------------------------------------------------------- /doc/articles/minigui-8/Makefile.am: -------------------------------------------------------------------------------- 1 | EXTRA_DIST = index.html 2 | 3 | -------------------------------------------------------------------------------- /doc/articles/minigui-9/Makefile.am: -------------------------------------------------------------------------------- 1 | EXTRA_DIST = index.html 2 | 3 | -------------------------------------------------------------------------------- /doc/misc/README-var-all-en: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/doc/misc/README-var-all-en -------------------------------------------------------------------------------- /doc/others/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/doc/others/Makefile.am -------------------------------------------------------------------------------- /doc/others/TrackBar-HOWTO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/doc/others/TrackBar-HOWTO -------------------------------------------------------------------------------- /doc/others/TreeView-HOWTO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/doc/others/TreeView-HOWTO -------------------------------------------------------------------------------- /etc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/etc/Makefile.am -------------------------------------------------------------------------------- /etc/MiniGUI.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/etc/MiniGUI.cfg -------------------------------------------------------------------------------- /etc/MiniGUI.cfg.win32.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/etc/MiniGUI.cfg.win32.in -------------------------------------------------------------------------------- /etc/mvfb.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/etc/mvfb.cfg -------------------------------------------------------------------------------- /examples/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/examples/Makefile.am -------------------------------------------------------------------------------- /examples/activemenu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/examples/activemenu.c -------------------------------------------------------------------------------- /examples/bitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/examples/bitmap.c -------------------------------------------------------------------------------- /examples/blitting.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/examples/blitting.c -------------------------------------------------------------------------------- /examples/buttondown.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/examples/buttondown.c -------------------------------------------------------------------------------- /examples/cfgfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/examples/cfgfile.c -------------------------------------------------------------------------------- /examples/circlegenerator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/examples/circlegenerator.c -------------------------------------------------------------------------------- /examples/client_startup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/examples/client_startup.c -------------------------------------------------------------------------------- /examples/createlogfont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/examples/createlogfont.c -------------------------------------------------------------------------------- /examples/createlogfontex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/examples/createlogfontex.c -------------------------------------------------------------------------------- /examples/createmainwindow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/examples/createmainwindow.c -------------------------------------------------------------------------------- /examples/createwindow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/examples/createwindow.c -------------------------------------------------------------------------------- /examples/dialogbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/examples/dialogbox.c -------------------------------------------------------------------------------- /examples/dlgtemplate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/examples/dlgtemplate.c -------------------------------------------------------------------------------- /examples/drawtext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/examples/drawtext.c -------------------------------------------------------------------------------- /examples/endianness.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/examples/endianness.c -------------------------------------------------------------------------------- /examples/fixed_point.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/examples/fixed_point.c -------------------------------------------------------------------------------- /examples/fixedpoint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/examples/fixedpoint.c -------------------------------------------------------------------------------- /examples/fixstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/examples/fixstr.c -------------------------------------------------------------------------------- /examples/getmessage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/examples/getmessage.c -------------------------------------------------------------------------------- /examples/helloworld.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/examples/helloworld.c -------------------------------------------------------------------------------- /examples/initcliprgn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/examples/initcliprgn.c -------------------------------------------------------------------------------- /examples/keydown.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/examples/keydown.c -------------------------------------------------------------------------------- /examples/listenfd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/examples/listenfd.c -------------------------------------------------------------------------------- /examples/lockdc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/examples/lockdc.c -------------------------------------------------------------------------------- /examples/miniguimain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/examples/miniguimain.c -------------------------------------------------------------------------------- /examples/msg_initdialog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/examples/msg_initdialog.c -------------------------------------------------------------------------------- /examples/msg_paint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/examples/msg_paint.c -------------------------------------------------------------------------------- /examples/msg_sizechanged.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/examples/msg_sizechanged.c -------------------------------------------------------------------------------- /examples/msg_sizechanging.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/examples/msg_sizechanging.c -------------------------------------------------------------------------------- /examples/nextcontrol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/examples/nextcontrol.c -------------------------------------------------------------------------------- /examples/rectvisible.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/examples/rectvisible.c -------------------------------------------------------------------------------- /examples/region.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/examples/region.c -------------------------------------------------------------------------------- /examples/request.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/examples/request.c -------------------------------------------------------------------------------- /examples/server_startup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/examples/server_startup.c -------------------------------------------------------------------------------- /examples/setcursor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/examples/setcursor.c -------------------------------------------------------------------------------- /examples/settimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/examples/settimer.c -------------------------------------------------------------------------------- /examples/socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/examples/socket.c -------------------------------------------------------------------------------- /examples/subclass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/examples/subclass.c -------------------------------------------------------------------------------- /include/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/include/Makefile.am -------------------------------------------------------------------------------- /include/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/include/common.h -------------------------------------------------------------------------------- /include/control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/include/control.h -------------------------------------------------------------------------------- /include/ctrl/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/include/ctrl/Makefile.am -------------------------------------------------------------------------------- /include/ctrl/animation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/include/ctrl/animation.h -------------------------------------------------------------------------------- /include/ctrl/button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/include/ctrl/button.h -------------------------------------------------------------------------------- /include/ctrl/combobox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/include/ctrl/combobox.h -------------------------------------------------------------------------------- /include/ctrl/coolbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/include/ctrl/coolbar.h -------------------------------------------------------------------------------- /include/ctrl/ctrlhelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/include/ctrl/ctrlhelper.h -------------------------------------------------------------------------------- /include/ctrl/edit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/include/ctrl/edit.h -------------------------------------------------------------------------------- /include/ctrl/gridview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/include/ctrl/gridview.h -------------------------------------------------------------------------------- /include/ctrl/iconview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/include/ctrl/iconview.h -------------------------------------------------------------------------------- /include/ctrl/listbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/include/ctrl/listbox.h -------------------------------------------------------------------------------- /include/ctrl/listview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/include/ctrl/listview.h -------------------------------------------------------------------------------- /include/ctrl/makefile.msvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/include/ctrl/makefile.msvc -------------------------------------------------------------------------------- /include/ctrl/makefile.ng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/include/ctrl/makefile.ng -------------------------------------------------------------------------------- /include/ctrl/menubutton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/include/ctrl/menubutton.h -------------------------------------------------------------------------------- /include/ctrl/monthcal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/include/ctrl/monthcal.h -------------------------------------------------------------------------------- /include/ctrl/newtoolbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/include/ctrl/newtoolbar.h -------------------------------------------------------------------------------- /include/ctrl/progressbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/include/ctrl/progressbar.h -------------------------------------------------------------------------------- /include/ctrl/propsheet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/include/ctrl/propsheet.h -------------------------------------------------------------------------------- /include/ctrl/scrollbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/include/ctrl/scrollbar.h -------------------------------------------------------------------------------- /include/ctrl/scrollview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/include/ctrl/scrollview.h -------------------------------------------------------------------------------- /include/ctrl/spinbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/include/ctrl/spinbox.h -------------------------------------------------------------------------------- /include/ctrl/static.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/include/ctrl/static.h -------------------------------------------------------------------------------- /include/ctrl/textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/include/ctrl/textedit.h -------------------------------------------------------------------------------- /include/ctrl/trackbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/include/ctrl/trackbar.h -------------------------------------------------------------------------------- /include/ctrl/treeview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/include/ctrl/treeview.h -------------------------------------------------------------------------------- /include/customial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/include/customial.h -------------------------------------------------------------------------------- /include/dti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/include/dti.c -------------------------------------------------------------------------------- /include/endianrw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/include/endianrw.h -------------------------------------------------------------------------------- /include/exstubs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/include/exstubs.h -------------------------------------------------------------------------------- /include/fixedmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/include/fixedmath.h -------------------------------------------------------------------------------- /include/gdi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/include/gdi.h -------------------------------------------------------------------------------- /include/makefile.msvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/include/makefile.msvc -------------------------------------------------------------------------------- /include/makefile.ng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/include/makefile.ng -------------------------------------------------------------------------------- /include/minigui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/include/minigui.h -------------------------------------------------------------------------------- /include/nucleus_pthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/include/nucleus_pthread.h -------------------------------------------------------------------------------- /include/nucleus_semaphore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/include/nucleus_semaphore.h -------------------------------------------------------------------------------- /include/ose_semaphore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/include/ose_semaphore.h -------------------------------------------------------------------------------- /include/own_malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/include/own_malloc.h -------------------------------------------------------------------------------- /include/own_stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/include/own_stdio.h -------------------------------------------------------------------------------- /include/psos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/include/psos.h -------------------------------------------------------------------------------- /include/psos_pthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/include/psos_pthread.h -------------------------------------------------------------------------------- /include/psos_semaphore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/include/psos_semaphore.h -------------------------------------------------------------------------------- /include/threadx_pthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/include/threadx_pthread.h -------------------------------------------------------------------------------- /include/threadx_semaphore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/include/threadx_semaphore.h -------------------------------------------------------------------------------- /include/ucos2_pthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/include/ucos2_pthread.h -------------------------------------------------------------------------------- /include/ucos2_semaphore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/include/ucos2_semaphore.h -------------------------------------------------------------------------------- /include/vxworks_pthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/include/vxworks_pthread.h -------------------------------------------------------------------------------- /include/vxworks_semaphore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/include/vxworks_semaphore.h -------------------------------------------------------------------------------- /include/win32_dirent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/include/win32_dirent.h -------------------------------------------------------------------------------- /include/win32_pthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/include/win32_pthread.h -------------------------------------------------------------------------------- /include/win32_sched.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/include/win32_sched.h -------------------------------------------------------------------------------- /include/win32_semaphore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/include/win32_semaphore.h -------------------------------------------------------------------------------- /include/window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/include/window.h -------------------------------------------------------------------------------- /include/xvfb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/include/xvfb.h -------------------------------------------------------------------------------- /m4/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/m4/Makefile.am -------------------------------------------------------------------------------- /make_tarball: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/make_tarball -------------------------------------------------------------------------------- /makefile.msvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/makefile.msvc -------------------------------------------------------------------------------- /makefile.ng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/makefile.ng -------------------------------------------------------------------------------- /merge.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/merge.log -------------------------------------------------------------------------------- /minigui.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/minigui.pc.in -------------------------------------------------------------------------------- /obsolete/ime/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/obsolete/ime/CMakeLists.txt -------------------------------------------------------------------------------- /obsolete/ime/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/obsolete/ime/Makefile.am -------------------------------------------------------------------------------- /obsolete/ime/hzinput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/obsolete/ime/hzinput.c -------------------------------------------------------------------------------- /obsolete/ime/hzinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/obsolete/ime/hzinput.h -------------------------------------------------------------------------------- /obsolete/ime/pinyin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/obsolete/ime/pinyin.c -------------------------------------------------------------------------------- /obsolete/ime/pinyin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/obsolete/ime/pinyin.h -------------------------------------------------------------------------------- /obsolete/oldgal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/obsolete/oldgal.h -------------------------------------------------------------------------------- /obsolete/vcongui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/obsolete/vcongui.h -------------------------------------------------------------------------------- /rtos/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/rtos/Makefile.am -------------------------------------------------------------------------------- /rtos/nucleus_startup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/rtos/nucleus_startup.c -------------------------------------------------------------------------------- /rtos/psos_startup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/rtos/psos_startup.c -------------------------------------------------------------------------------- /rtos/threadx_startup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/rtos/threadx_startup.c -------------------------------------------------------------------------------- /rtos/ucos2_startup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/rtos/ucos2_startup.c -------------------------------------------------------------------------------- /rtos/vxworks_startup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/rtos/vxworks_startup.c -------------------------------------------------------------------------------- /rules.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/rules.make -------------------------------------------------------------------------------- /scripts/Configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/scripts/Configure -------------------------------------------------------------------------------- /scripts/Lindent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/scripts/Lindent -------------------------------------------------------------------------------- /scripts/MAKEDEV.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/scripts/MAKEDEV.ide -------------------------------------------------------------------------------- /scripts/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/scripts/Makefile.am -------------------------------------------------------------------------------- /scripts/Menuconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/scripts/Menuconfig -------------------------------------------------------------------------------- /scripts/README.Menuconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/scripts/README.Menuconfig -------------------------------------------------------------------------------- /scripts/checkconfig.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/scripts/checkconfig.pl -------------------------------------------------------------------------------- /scripts/checkhelp.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/scripts/checkhelp.pl -------------------------------------------------------------------------------- /scripts/checkincludes.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/scripts/checkincludes.pl -------------------------------------------------------------------------------- /scripts/docgen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/scripts/docgen -------------------------------------------------------------------------------- /scripts/docproc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/scripts/docproc.c -------------------------------------------------------------------------------- /scripts/extract-ikconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/scripts/extract-ikconfig -------------------------------------------------------------------------------- /scripts/gen-all-syms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/scripts/gen-all-syms -------------------------------------------------------------------------------- /scripts/header.tk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/scripts/header.tk -------------------------------------------------------------------------------- /scripts/include_deps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/scripts/include_deps -------------------------------------------------------------------------------- /scripts/kernel-doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/scripts/kernel-doc -------------------------------------------------------------------------------- /scripts/lxdialog/colors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/scripts/lxdialog/colors.h -------------------------------------------------------------------------------- /scripts/lxdialog/dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/scripts/lxdialog/dialog.h -------------------------------------------------------------------------------- /scripts/lxdialog/inputbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/scripts/lxdialog/inputbox.c -------------------------------------------------------------------------------- /scripts/lxdialog/lxdialog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/scripts/lxdialog/lxdialog.c -------------------------------------------------------------------------------- /scripts/lxdialog/menubox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/scripts/lxdialog/menubox.c -------------------------------------------------------------------------------- /scripts/lxdialog/msgbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/scripts/lxdialog/msgbox.c -------------------------------------------------------------------------------- /scripts/lxdialog/textbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/scripts/lxdialog/textbox.c -------------------------------------------------------------------------------- /scripts/lxdialog/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/scripts/lxdialog/util.c -------------------------------------------------------------------------------- /scripts/lxdialog/yesno.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/scripts/lxdialog/yesno.c -------------------------------------------------------------------------------- /scripts/makefile.scripts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/scripts/makefile.scripts -------------------------------------------------------------------------------- /scripts/makelst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/scripts/makelst -------------------------------------------------------------------------------- /scripts/mkconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/scripts/mkconfig -------------------------------------------------------------------------------- /scripts/mkconfigs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/scripts/mkconfigs.c -------------------------------------------------------------------------------- /scripts/mkdep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/scripts/mkdep -------------------------------------------------------------------------------- /scripts/mkdep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/scripts/mkdep.c -------------------------------------------------------------------------------- /scripts/mkspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/scripts/mkspec -------------------------------------------------------------------------------- /scripts/mkversion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/scripts/mkversion -------------------------------------------------------------------------------- /scripts/patch-kernel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/scripts/patch-kernel -------------------------------------------------------------------------------- /scripts/pathdown.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/scripts/pathdown.sh -------------------------------------------------------------------------------- /scripts/split-include.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/scripts/split-include.c -------------------------------------------------------------------------------- /scripts/split-man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/scripts/split-man -------------------------------------------------------------------------------- /scripts/tail.tk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/scripts/tail.tk -------------------------------------------------------------------------------- /scripts/tkcond.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/scripts/tkcond.c -------------------------------------------------------------------------------- /scripts/tkgen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/scripts/tkgen.c -------------------------------------------------------------------------------- /scripts/tkparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/scripts/tkparse.c -------------------------------------------------------------------------------- /scripts/tkparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/scripts/tkparse.h -------------------------------------------------------------------------------- /scripts/ver_linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/scripts/ver_linux -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/client/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/client/CMakeLists.txt -------------------------------------------------------------------------------- /src/client/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/client/Makefile.am -------------------------------------------------------------------------------- /src/client/cliconn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/client/cliconn.c -------------------------------------------------------------------------------- /src/client/client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/client/client.c -------------------------------------------------------------------------------- /src/control/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/control/CMakeLists.txt -------------------------------------------------------------------------------- /src/control/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/control/LICENSE -------------------------------------------------------------------------------- /src/control/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/control/Makefile.am -------------------------------------------------------------------------------- /src/control/bidiedit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/control/bidiedit.c -------------------------------------------------------------------------------- /src/control/bidiedit_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/control/bidiedit_impl.h -------------------------------------------------------------------------------- /src/control/button.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/control/button.c -------------------------------------------------------------------------------- /src/control/button_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/control/button_impl.h -------------------------------------------------------------------------------- /src/control/combobox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/control/combobox.c -------------------------------------------------------------------------------- /src/control/combobox_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/control/combobox_impl.h -------------------------------------------------------------------------------- /src/control/ctrlmisc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/control/ctrlmisc.c -------------------------------------------------------------------------------- /src/control/ctrlmisc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/control/ctrlmisc.h -------------------------------------------------------------------------------- /src/control/edit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/control/edit.c -------------------------------------------------------------------------------- /src/control/edit_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/control/edit_impl.h -------------------------------------------------------------------------------- /src/control/listbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/control/listbox.c -------------------------------------------------------------------------------- /src/control/listbox_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/control/listbox_impl.h -------------------------------------------------------------------------------- /src/control/listmodel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/control/listmodel.c -------------------------------------------------------------------------------- /src/control/listmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/control/listmodel.h -------------------------------------------------------------------------------- /src/control/makefile.msvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/control/makefile.msvc -------------------------------------------------------------------------------- /src/control/makefile.ng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/control/makefile.ng -------------------------------------------------------------------------------- /src/control/medit_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/control/medit_impl.h -------------------------------------------------------------------------------- /src/control/menubutton.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/control/menubutton.c -------------------------------------------------------------------------------- /src/control/newtoolbar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/control/newtoolbar.c -------------------------------------------------------------------------------- /src/control/progressbar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/control/progressbar.c -------------------------------------------------------------------------------- /src/control/propsheet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/control/propsheet.c -------------------------------------------------------------------------------- /src/control/scrollbar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/control/scrollbar.c -------------------------------------------------------------------------------- /src/control/scrolled.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/control/scrolled.c -------------------------------------------------------------------------------- /src/control/scrolled.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/control/scrolled.h -------------------------------------------------------------------------------- /src/control/scrollview.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/control/scrollview.c -------------------------------------------------------------------------------- /src/control/scrollwnd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/control/scrollwnd.c -------------------------------------------------------------------------------- /src/control/scrollwnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/control/scrollwnd.h -------------------------------------------------------------------------------- /src/control/simedit_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/control/simedit_impl.h -------------------------------------------------------------------------------- /src/control/static.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/control/static.c -------------------------------------------------------------------------------- /src/control/static_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/control/static_impl.h -------------------------------------------------------------------------------- /src/control/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/control/test/Makefile -------------------------------------------------------------------------------- /src/control/test/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/control/test/resource.h -------------------------------------------------------------------------------- /src/control/text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/control/text.h -------------------------------------------------------------------------------- /src/control/textedit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/control/textedit.c -------------------------------------------------------------------------------- /src/control/textedit_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/control/textedit_impl.h -------------------------------------------------------------------------------- /src/control/trackbar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/control/trackbar.c -------------------------------------------------------------------------------- /src/control/trackbar_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/control/trackbar_impl.h -------------------------------------------------------------------------------- /src/ex_ctrl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ex_ctrl/CMakeLists.txt -------------------------------------------------------------------------------- /src/ex_ctrl/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ex_ctrl/Makefile.am -------------------------------------------------------------------------------- /src/ex_ctrl/animation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ex_ctrl/animation.c -------------------------------------------------------------------------------- /src/ex_ctrl/coolbar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ex_ctrl/coolbar.c -------------------------------------------------------------------------------- /src/ex_ctrl/coolbar_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ex_ctrl/coolbar_impl.h -------------------------------------------------------------------------------- /src/ex_ctrl/gif89a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ex_ctrl/gif89a.c -------------------------------------------------------------------------------- /src/ex_ctrl/gridview.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ex_ctrl/gridview.c -------------------------------------------------------------------------------- /src/ex_ctrl/gridview_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ex_ctrl/gridview_impl.h -------------------------------------------------------------------------------- /src/ex_ctrl/iconview.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ex_ctrl/iconview.c -------------------------------------------------------------------------------- /src/ex_ctrl/iconview_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ex_ctrl/iconview_impl.h -------------------------------------------------------------------------------- /src/ex_ctrl/listview.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ex_ctrl/listview.c -------------------------------------------------------------------------------- /src/ex_ctrl/listview_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ex_ctrl/listview_impl.h -------------------------------------------------------------------------------- /src/ex_ctrl/makefile.msvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ex_ctrl/makefile.msvc -------------------------------------------------------------------------------- /src/ex_ctrl/makefile.ng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ex_ctrl/makefile.ng -------------------------------------------------------------------------------- /src/ex_ctrl/monthcalendar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ex_ctrl/monthcalendar.c -------------------------------------------------------------------------------- /src/ex_ctrl/spinbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ex_ctrl/spinbox.c -------------------------------------------------------------------------------- /src/ex_ctrl/spinbox_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ex_ctrl/spinbox_impl.h -------------------------------------------------------------------------------- /src/ex_ctrl/treeview.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ex_ctrl/treeview.c -------------------------------------------------------------------------------- /src/ex_ctrl/treeview_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ex_ctrl/treeview_impl.h -------------------------------------------------------------------------------- /src/ex_ctrl/treeview_rdr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ex_ctrl/treeview_rdr.c -------------------------------------------------------------------------------- /src/font/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/font/CMakeLists.txt -------------------------------------------------------------------------------- /src/font/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/font/Makefile.am -------------------------------------------------------------------------------- /src/font/big5unimap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/font/big5unimap.c -------------------------------------------------------------------------------- /src/font/bitmapfont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/font/bitmapfont.c -------------------------------------------------------------------------------- /src/font/bitmapfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/font/bitmapfont.h -------------------------------------------------------------------------------- /src/font/charset-arabic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/font/charset-arabic.c -------------------------------------------------------------------------------- /src/font/charset-unicode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/font/charset-unicode.c -------------------------------------------------------------------------------- /src/font/charset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/font/charset.c -------------------------------------------------------------------------------- /src/font/charset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/font/charset.h -------------------------------------------------------------------------------- /src/font/convgbmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/font/convgbmap.c -------------------------------------------------------------------------------- /src/font/devfont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/font/devfont.c -------------------------------------------------------------------------------- /src/font/euckrunimap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/font/euckrunimap.c -------------------------------------------------------------------------------- /src/font/font-engines.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/font/font-engines.c -------------------------------------------------------------------------------- /src/font/fontcache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/font/fontcache.c -------------------------------------------------------------------------------- /src/font/fontname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/font/fontname.c -------------------------------------------------------------------------------- /src/font/freetype1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/font/freetype1.c -------------------------------------------------------------------------------- /src/font/freetype1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/font/freetype1.h -------------------------------------------------------------------------------- /src/font/freetype2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/font/freetype2.c -------------------------------------------------------------------------------- /src/font/freetype2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/font/freetype2.h -------------------------------------------------------------------------------- /src/font/gb18030unimap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/font/gb18030unimap.c -------------------------------------------------------------------------------- /src/font/gbkunimap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/font/gbkunimap.c -------------------------------------------------------------------------------- /src/font/gbunimap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/font/gbunimap.c -------------------------------------------------------------------------------- /src/font/jisunimap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/font/jisunimap.c -------------------------------------------------------------------------------- /src/font/language-code.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/font/language-code.c -------------------------------------------------------------------------------- /src/font/legacy-bidi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/font/legacy-bidi.c -------------------------------------------------------------------------------- /src/font/logfont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/font/logfont.c -------------------------------------------------------------------------------- /src/font/makefile.msvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/font/makefile.msvc -------------------------------------------------------------------------------- /src/font/makefile.ng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/font/makefile.ng -------------------------------------------------------------------------------- /src/font/mapunitobig5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/font/mapunitobig5.c -------------------------------------------------------------------------------- /src/font/mapunitogb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/font/mapunitogb.c -------------------------------------------------------------------------------- /src/font/mapunitogb18030.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/font/mapunitogb18030.c -------------------------------------------------------------------------------- /src/font/mapunitogbk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/font/mapunitogbk.c -------------------------------------------------------------------------------- /src/font/my_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/font/my_debug.h -------------------------------------------------------------------------------- /src/font/nullfont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/font/nullfont.c -------------------------------------------------------------------------------- /src/font/palette.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/font/palette.h -------------------------------------------------------------------------------- /src/font/qpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/font/qpf.c -------------------------------------------------------------------------------- /src/font/qpf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/font/qpf.h -------------------------------------------------------------------------------- /src/font/rawbitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/font/rawbitmap.c -------------------------------------------------------------------------------- /src/font/rawbitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/font/rawbitmap.h -------------------------------------------------------------------------------- /src/font/scripteasy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/font/scripteasy.c -------------------------------------------------------------------------------- /src/font/se_minigui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/font/se_minigui.h -------------------------------------------------------------------------------- /src/font/sjisunimap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/font/sjisunimap.c -------------------------------------------------------------------------------- /src/font/sysfont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/font/sysfont.c -------------------------------------------------------------------------------- /src/font/sysfont.old.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/font/sysfont.old.c -------------------------------------------------------------------------------- /src/font/test/arabic/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/font/test/arabic/README -------------------------------------------------------------------------------- /src/font/test/avl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/font/test/avl/Makefile -------------------------------------------------------------------------------- /src/font/test/bmpf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/font/test/bmpf/Makefile -------------------------------------------------------------------------------- /src/font/textops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/font/textops.c -------------------------------------------------------------------------------- /src/font/type1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/font/type1.c -------------------------------------------------------------------------------- /src/font/type1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/font/type1.h -------------------------------------------------------------------------------- /src/font/ujisunimap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/font/ujisunimap.c -------------------------------------------------------------------------------- /src/font/unicode-bidi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/font/unicode-bidi.c -------------------------------------------------------------------------------- /src/font/unicode-bidi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/font/unicode-bidi.h -------------------------------------------------------------------------------- /src/font/unicode-break.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/font/unicode-break.c -------------------------------------------------------------------------------- /src/font/unicode-comp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/font/unicode-comp.c -------------------------------------------------------------------------------- /src/font/unicode-comp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/font/unicode-comp.h -------------------------------------------------------------------------------- /src/font/unicode-decomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/font/unicode-decomp.h -------------------------------------------------------------------------------- /src/font/unicode-emoji.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/font/unicode-emoji.c -------------------------------------------------------------------------------- /src/font/unicode-joining.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/font/unicode-joining.c -------------------------------------------------------------------------------- /src/font/unicode-script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/font/unicode-script.c -------------------------------------------------------------------------------- /src/font/unicode-shape.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/font/unicode-shape.c -------------------------------------------------------------------------------- /src/font/unicode-tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/font/unicode-tables.h -------------------------------------------------------------------------------- /src/font/unicode-vop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/font/unicode-vop.c -------------------------------------------------------------------------------- /src/font/upf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/font/upf.c -------------------------------------------------------------------------------- /src/font/upf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/font/upf.h -------------------------------------------------------------------------------- /src/font/utils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/font/utils/Makefile -------------------------------------------------------------------------------- /src/font/utils/bin2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/font/utils/bin2c.c -------------------------------------------------------------------------------- /src/font/utils/fetch-ucd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/font/utils/fetch-ucd.sh -------------------------------------------------------------------------------- /src/font/utils/iso-639.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/font/utils/iso-639.txt -------------------------------------------------------------------------------- /src/font/utils/my_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/font/utils/my_debug.h -------------------------------------------------------------------------------- /src/font/utils/packtab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/font/utils/packtab.c -------------------------------------------------------------------------------- /src/font/utils/packtab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/font/utils/packtab.h -------------------------------------------------------------------------------- /src/font/utils/sjisunimap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/font/utils/sjisunimap.c -------------------------------------------------------------------------------- /src/font/varbitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/font/varbitmap.c -------------------------------------------------------------------------------- /src/font/varbitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/font/varbitmap.h -------------------------------------------------------------------------------- /src/gui/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/gui/CMakeLists.txt -------------------------------------------------------------------------------- /src/gui/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/gui/Makefile.am -------------------------------------------------------------------------------- /src/gui/accelkey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/gui/accelkey.c -------------------------------------------------------------------------------- /src/gui/arabickeymap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/gui/arabickeymap.c -------------------------------------------------------------------------------- /src/gui/caret.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/gui/caret.c -------------------------------------------------------------------------------- /src/gui/ctrlclass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/gui/ctrlclass.c -------------------------------------------------------------------------------- /src/gui/de-kmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/gui/de-kmap.c -------------------------------------------------------------------------------- /src/gui/de-latin1-kmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/gui/de-latin1-kmap.c -------------------------------------------------------------------------------- /src/gui/defkeymap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/gui/defkeymap.c -------------------------------------------------------------------------------- /src/gui/dialog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/gui/dialog.c -------------------------------------------------------------------------------- /src/gui/es-cp850-kmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/gui/es-cp850-kmap.c -------------------------------------------------------------------------------- /src/gui/es-kmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/gui/es-kmap.c -------------------------------------------------------------------------------- /src/gui/fr-kmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/gui/fr-kmap.c -------------------------------------------------------------------------------- /src/gui/fr-pc-kmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/gui/fr-pc-kmap.c -------------------------------------------------------------------------------- /src/gui/hebrewkeymap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/gui/hebrewkeymap.c -------------------------------------------------------------------------------- /src/gui/it-kmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/gui/it-kmap.c -------------------------------------------------------------------------------- /src/gui/keyboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/gui/keyboard.c -------------------------------------------------------------------------------- /src/gui/keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/gui/keyboard.h -------------------------------------------------------------------------------- /src/gui/lf_classic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/gui/lf_classic.c -------------------------------------------------------------------------------- /src/gui/lf_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/gui/lf_common.c -------------------------------------------------------------------------------- /src/gui/lf_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/gui/lf_common.h -------------------------------------------------------------------------------- /src/gui/lf_fashion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/gui/lf_fashion.c -------------------------------------------------------------------------------- /src/gui/lf_flat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/gui/lf_flat.c -------------------------------------------------------------------------------- /src/gui/lf_manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/gui/lf_manager.c -------------------------------------------------------------------------------- /src/gui/lf_skin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/gui/lf_skin.c -------------------------------------------------------------------------------- /src/gui/lf_test/AUTHORS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/gui/lf_test/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/gui/lf_test/COPYING -------------------------------------------------------------------------------- /src/gui/lf_test/ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/gui/lf_test/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/gui/lf_test/INSTALL -------------------------------------------------------------------------------- /src/gui/lf_test/Makefile.am: -------------------------------------------------------------------------------- 1 | EXTRA_DIST = autogen.sh 2 | 3 | SUBDIRS=src 4 | 5 | -------------------------------------------------------------------------------- /src/gui/lf_test/NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/gui/lf_test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/gui/lf_test/README -------------------------------------------------------------------------------- /src/gui/lf_test/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/gui/lf_test/autogen.sh -------------------------------------------------------------------------------- /src/gui/lf_test/design: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/gui/lf_test/design -------------------------------------------------------------------------------- /src/gui/lf_test/src/ctrls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/gui/lf_test/src/ctrls.h -------------------------------------------------------------------------------- /src/gui/lf_test/src/edit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/gui/lf_test/src/edit.c -------------------------------------------------------------------------------- /src/gui/lf_test/src/grid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/gui/lf_test/src/grid.c -------------------------------------------------------------------------------- /src/gui/lf_test/src/res/case/1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/gui/lf_test/src/res/case/2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/gui/lf_test/src/res/case/20: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/gui/lf_test/src/res/case/3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/gui/lf_test/src/res/case/30: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/gui/lf_test/src/tmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/gui/lf_test/src/tmp.c -------------------------------------------------------------------------------- /src/gui/lf_tiny.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/gui/lf_tiny.c -------------------------------------------------------------------------------- /src/gui/linux_kd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/gui/linux_kd.h -------------------------------------------------------------------------------- /src/gui/linux_keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/gui/linux_keyboard.h -------------------------------------------------------------------------------- /src/gui/linux_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/gui/linux_types.h -------------------------------------------------------------------------------- /src/gui/makefile.msvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/gui/makefile.msvc -------------------------------------------------------------------------------- /src/gui/makefile.ng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/gui/makefile.ng -------------------------------------------------------------------------------- /src/gui/menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/gui/menu.c -------------------------------------------------------------------------------- /src/gui/transkey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/gui/transkey.c -------------------------------------------------------------------------------- /src/gui/window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/gui/window.c -------------------------------------------------------------------------------- /src/ial/2410.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/2410.c -------------------------------------------------------------------------------- /src/ial/2410.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/2410.h -------------------------------------------------------------------------------- /src/ial/2440.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/2440.c -------------------------------------------------------------------------------- /src/ial/2440.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/2440.h -------------------------------------------------------------------------------- /src/ial/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/CMakeLists.txt -------------------------------------------------------------------------------- /src/ial/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/Makefile.am -------------------------------------------------------------------------------- /src/ial/abs_signal_driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/abs_signal_driver.c -------------------------------------------------------------------------------- /src/ial/abs_signal_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/abs_signal_driver.h -------------------------------------------------------------------------------- /src/ial/abssig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/abssig.c -------------------------------------------------------------------------------- /src/ial/abssig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/abssig.h -------------------------------------------------------------------------------- /src/ial/ads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/ads.c -------------------------------------------------------------------------------- /src/ial/ads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/ads.h -------------------------------------------------------------------------------- /src/ial/ads7846.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/ads7846.c -------------------------------------------------------------------------------- /src/ial/ads7846.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/ads7846.h -------------------------------------------------------------------------------- /src/ial/ads_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/ads_internal.h -------------------------------------------------------------------------------- /src/ial/arm3000.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/arm3000.c -------------------------------------------------------------------------------- /src/ial/arm3000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/arm3000.h -------------------------------------------------------------------------------- /src/ial/auto-protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/auto-protocol.h -------------------------------------------------------------------------------- /src/ial/auto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/auto.c -------------------------------------------------------------------------------- /src/ial/auto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/auto.h -------------------------------------------------------------------------------- /src/ial/c33l05.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/c33l05.c -------------------------------------------------------------------------------- /src/ial/c33l05.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/c33l05.h -------------------------------------------------------------------------------- /src/ial/calib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/calib.c -------------------------------------------------------------------------------- /src/ial/cisco_touchpad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/cisco_touchpad.c -------------------------------------------------------------------------------- /src/ial/cisco_touchpad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/cisco_touchpad.h -------------------------------------------------------------------------------- /src/ial/comminput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/comminput.c -------------------------------------------------------------------------------- /src/ial/comminput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/comminput.h -------------------------------------------------------------------------------- /src/ial/custom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/custom.h -------------------------------------------------------------------------------- /src/ial/davinci6446.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/davinci6446.c -------------------------------------------------------------------------------- /src/ial/davinci6446.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/davinci6446.h -------------------------------------------------------------------------------- /src/ial/dfb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/dfb.c -------------------------------------------------------------------------------- /src/ial/dfb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/dfb.h -------------------------------------------------------------------------------- /src/ial/dlcustom/dlcustom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/dlcustom/dlcustom.c -------------------------------------------------------------------------------- /src/ial/dlcustom/dlcustom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/dlcustom/dlcustom.h -------------------------------------------------------------------------------- /src/ial/dm270.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/dm270.c -------------------------------------------------------------------------------- /src/ial/dm270.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/dm270.h -------------------------------------------------------------------------------- /src/ial/dmg-stb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/dmg-stb.c -------------------------------------------------------------------------------- /src/ial/dmg-stb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/dmg-stb.h -------------------------------------------------------------------------------- /src/ial/dummy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/dummy.c -------------------------------------------------------------------------------- /src/ial/dummy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/dummy.h -------------------------------------------------------------------------------- /src/ial/em85.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/em85.c -------------------------------------------------------------------------------- /src/ial/em85.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/em85.h -------------------------------------------------------------------------------- /src/ial/em86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/em86.c -------------------------------------------------------------------------------- /src/ial/em86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/em86.h -------------------------------------------------------------------------------- /src/ial/em8620.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/em8620.c -------------------------------------------------------------------------------- /src/ial/em8620.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/em8620.h -------------------------------------------------------------------------------- /src/ial/embest2410.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/embest2410.c -------------------------------------------------------------------------------- /src/ial/embest2410.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/embest2410.h -------------------------------------------------------------------------------- /src/ial/embest44b0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/embest44b0.c -------------------------------------------------------------------------------- /src/ial/embest44b0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/embest44b0.h -------------------------------------------------------------------------------- /src/ial/ep7211.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/ep7211.c -------------------------------------------------------------------------------- /src/ial/ep7211.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/ep7211.h -------------------------------------------------------------------------------- /src/ial/ep7211_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/ep7211_internal.h -------------------------------------------------------------------------------- /src/ial/evmv10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/evmv10.c -------------------------------------------------------------------------------- /src/ial/evmv10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/evmv10.h -------------------------------------------------------------------------------- /src/ial/fft7202.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/fft7202.c -------------------------------------------------------------------------------- /src/ial/fft7202.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/fft7202.h -------------------------------------------------------------------------------- /src/ial/figueroa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/figueroa.c -------------------------------------------------------------------------------- /src/ial/figueroa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/figueroa.h -------------------------------------------------------------------------------- /src/ial/fip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/fip.c -------------------------------------------------------------------------------- /src/ial/fip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/fip.h -------------------------------------------------------------------------------- /src/ial/fxrm9200.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/fxrm9200.c -------------------------------------------------------------------------------- /src/ial/fxrm9200.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/fxrm9200.h -------------------------------------------------------------------------------- /src/ial/fz_custom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/fz_custom.c -------------------------------------------------------------------------------- /src/ial/helio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/helio.c -------------------------------------------------------------------------------- /src/ial/helio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/helio.h -------------------------------------------------------------------------------- /src/ial/hh2410r3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/hh2410r3.c -------------------------------------------------------------------------------- /src/ial/hh2410r3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/hh2410r3.h -------------------------------------------------------------------------------- /src/ial/hh2440.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/hh2440.c -------------------------------------------------------------------------------- /src/ial/hh2440.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/hh2440.h -------------------------------------------------------------------------------- /src/ial/hh5249kbdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/hh5249kbdir.c -------------------------------------------------------------------------------- /src/ial/hh5249kbdir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/hh5249kbdir.h -------------------------------------------------------------------------------- /src/ial/hi3510.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/hi3510.c -------------------------------------------------------------------------------- /src/ial/hi3510.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/hi3510.h -------------------------------------------------------------------------------- /src/ial/ial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/ial.c -------------------------------------------------------------------------------- /src/ial/init_ts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/init_ts.c -------------------------------------------------------------------------------- /src/ial/ipaq-h3600.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/ipaq-h3600.c -------------------------------------------------------------------------------- /src/ial/ipaq-h3600.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/ipaq-h3600.h -------------------------------------------------------------------------------- /src/ial/ipaq-h5400.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/ipaq-h5400.c -------------------------------------------------------------------------------- /src/ial/ipaq-h5400.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/ipaq-h5400.h -------------------------------------------------------------------------------- /src/ial/jz4740.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/jz4740.c -------------------------------------------------------------------------------- /src/ial/jz4740.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/jz4740.h -------------------------------------------------------------------------------- /src/ial/l7200.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/l7200.c -------------------------------------------------------------------------------- /src/ial/l7200.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/l7200.h -------------------------------------------------------------------------------- /src/ial/libmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/libmc.h -------------------------------------------------------------------------------- /src/ial/lide.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/lide.c -------------------------------------------------------------------------------- /src/ial/lide.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/lide.h -------------------------------------------------------------------------------- /src/ial/linux-libinput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/linux-libinput.c -------------------------------------------------------------------------------- /src/ial/linux-libinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/linux-libinput.h -------------------------------------------------------------------------------- /src/ial/linux-tty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/linux-tty.c -------------------------------------------------------------------------------- /src/ial/makefile.msvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/makefile.msvc -------------------------------------------------------------------------------- /src/ial/makefile.ng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/makefile.ng -------------------------------------------------------------------------------- /src/ial/mc68x328.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/mc68x328.c -------------------------------------------------------------------------------- /src/ial/mc68x328.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/mc68x328.h -------------------------------------------------------------------------------- /src/ial/mgsock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/mgsock.c -------------------------------------------------------------------------------- /src/ial/mpc823.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/mpc823.c -------------------------------------------------------------------------------- /src/ial/mpc823.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/mpc823.h -------------------------------------------------------------------------------- /src/ial/mstarial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/mstarial.c -------------------------------------------------------------------------------- /src/ial/mstarial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/mstarial.h -------------------------------------------------------------------------------- /src/ial/native/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/native/Makefile.am -------------------------------------------------------------------------------- /src/ial/native/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/native/README -------------------------------------------------------------------------------- /src/ial/native/kbd_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/native/kbd_event.c -------------------------------------------------------------------------------- /src/ial/native/kbd_tty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/native/kbd_tty.c -------------------------------------------------------------------------------- /src/ial/native/mou_gpm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/native/mou_gpm.c -------------------------------------------------------------------------------- /src/ial/native/mou_imps2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/native/mou_imps2.c -------------------------------------------------------------------------------- /src/ial/native/mou_ms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/native/mou_ms.c -------------------------------------------------------------------------------- /src/ial/native/mou_ms3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/native/mou_ms3.c -------------------------------------------------------------------------------- /src/ial/native/mou_ps2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/native/mou_ps2.c -------------------------------------------------------------------------------- /src/ial/native/native.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/native/native.c -------------------------------------------------------------------------------- /src/ial/native/native.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/native/native.h -------------------------------------------------------------------------------- /src/ial/netial/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/netial/Makefile.am -------------------------------------------------------------------------------- /src/ial/netial/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/netial/README -------------------------------------------------------------------------------- /src/ial/netial/netial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/netial/netial.c -------------------------------------------------------------------------------- /src/ial/netial/netial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/netial/netial.h -------------------------------------------------------------------------------- /src/ial/nexusial/nexus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/nexusial/nexus.c -------------------------------------------------------------------------------- /src/ial/nexusial/nexus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/nexusial/nexus.h -------------------------------------------------------------------------------- /src/ial/palm2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/palm2.c -------------------------------------------------------------------------------- /src/ial/palm2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/palm2.h -------------------------------------------------------------------------------- /src/ial/pcxvfb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/pcxvfb.h -------------------------------------------------------------------------------- /src/ial/pcxvfbial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/pcxvfbial.c -------------------------------------------------------------------------------- /src/ial/ps2-conv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/ps2-conv.c -------------------------------------------------------------------------------- /src/ial/ps2-keycode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/ps2-keycode.h -------------------------------------------------------------------------------- /src/ial/px255b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/px255b.c -------------------------------------------------------------------------------- /src/ial/px255b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/px255b.h -------------------------------------------------------------------------------- /src/ial/qemu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/qemu.c -------------------------------------------------------------------------------- /src/ial/qemu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/qemu.h -------------------------------------------------------------------------------- /src/ial/qvfb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/qvfb.c -------------------------------------------------------------------------------- /src/ial/qvfb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/qvfb.h -------------------------------------------------------------------------------- /src/ial/random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/random.c -------------------------------------------------------------------------------- /src/ial/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/random.h -------------------------------------------------------------------------------- /src/ial/remoteial/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/remoteial/Makefile -------------------------------------------------------------------------------- /src/ial/remoteial/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/remoteial/README -------------------------------------------------------------------------------- /src/ial/rtos_xvfb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/rtos_xvfb.c -------------------------------------------------------------------------------- /src/ial/rtos_xvfb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/rtos_xvfb.h -------------------------------------------------------------------------------- /src/ial/singletouchkey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/singletouchkey.c -------------------------------------------------------------------------------- /src/ial/singletouchkey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/singletouchkey.h -------------------------------------------------------------------------------- /src/ial/skyeye-ep7312.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/skyeye-ep7312.c -------------------------------------------------------------------------------- /src/ial/skyeye-ep7312.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/skyeye-ep7312.h -------------------------------------------------------------------------------- /src/ial/svgalib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/svgalib.c -------------------------------------------------------------------------------- /src/ial/svgalib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/svgalib.h -------------------------------------------------------------------------------- /src/ial/svpxx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/svpxx.c -------------------------------------------------------------------------------- /src/ial/svpxx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/svpxx.h -------------------------------------------------------------------------------- /src/ial/t800.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/t800.c -------------------------------------------------------------------------------- /src/ial/t800.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/t800.h -------------------------------------------------------------------------------- /src/ial/tf-code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/tf-code.h -------------------------------------------------------------------------------- /src/ial/tf-stb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/tf-stb.c -------------------------------------------------------------------------------- /src/ial/tf-stb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/tf-stb.h -------------------------------------------------------------------------------- /src/ial/thor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/thor.c -------------------------------------------------------------------------------- /src/ial/thor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/thor.h -------------------------------------------------------------------------------- /src/ial/tslibial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/tslibial.c -------------------------------------------------------------------------------- /src/ial/tslibial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/tslibial.h -------------------------------------------------------------------------------- /src/ial/ucb1x00.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/ucb1x00.c -------------------------------------------------------------------------------- /src/ial/ucb1x00.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/ucb1x00.h -------------------------------------------------------------------------------- /src/ial/usvfbinput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/usvfbinput.c -------------------------------------------------------------------------------- /src/ial/usvfbinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/usvfbinput.h -------------------------------------------------------------------------------- /src/ial/utpmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/utpmc.c -------------------------------------------------------------------------------- /src/ial/utpmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/utpmc.h -------------------------------------------------------------------------------- /src/ial/vp2008.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/vp2008.c -------------------------------------------------------------------------------- /src/ial/vp2008.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/vp2008.h -------------------------------------------------------------------------------- /src/ial/vr4181.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/vr4181.c -------------------------------------------------------------------------------- /src/ial/vr4181.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/vr4181.h -------------------------------------------------------------------------------- /src/ial/vxi386_input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/vxi386_input.c -------------------------------------------------------------------------------- /src/ial/vxppc_input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/vxppc_input.c -------------------------------------------------------------------------------- /src/ial/winial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/winial.c -------------------------------------------------------------------------------- /src/ial/winial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/winial.h -------------------------------------------------------------------------------- /src/ial/wvfb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/wvfb.h -------------------------------------------------------------------------------- /src/ial/wvfbial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/ial/wvfbial.c -------------------------------------------------------------------------------- /src/image/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/image/CMakeLists.txt -------------------------------------------------------------------------------- /src/image/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/image/Makefile.am -------------------------------------------------------------------------------- /src/image/cdjpeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/image/cdjpeg.h -------------------------------------------------------------------------------- /src/image/gif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/image/gif.c -------------------------------------------------------------------------------- /src/image/imgapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/image/imgapi.c -------------------------------------------------------------------------------- /src/image/imgapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/image/imgapi.h -------------------------------------------------------------------------------- /src/image/jcomapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/image/jcomapi.c -------------------------------------------------------------------------------- /src/image/jdapimin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/image/jdapimin.c -------------------------------------------------------------------------------- /src/image/jdapistd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/image/jdapistd.c -------------------------------------------------------------------------------- /src/image/jdatasrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/image/jdatasrc.c -------------------------------------------------------------------------------- /src/image/jdcoefct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/image/jdcoefct.c -------------------------------------------------------------------------------- /src/image/jdcolor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/image/jdcolor.c -------------------------------------------------------------------------------- /src/image/jdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/image/jdct.h -------------------------------------------------------------------------------- /src/image/jddctmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/image/jddctmgr.c -------------------------------------------------------------------------------- /src/image/jdhuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/image/jdhuff.c -------------------------------------------------------------------------------- /src/image/jdhuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/image/jdhuff.h -------------------------------------------------------------------------------- /src/image/jdinput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/image/jdinput.c -------------------------------------------------------------------------------- /src/image/jdmainct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/image/jdmainct.c -------------------------------------------------------------------------------- /src/image/jdmarker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/image/jdmarker.c -------------------------------------------------------------------------------- /src/image/jdmaster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/image/jdmaster.c -------------------------------------------------------------------------------- /src/image/jdmerge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/image/jdmerge.c -------------------------------------------------------------------------------- /src/image/jdphuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/image/jdphuff.c -------------------------------------------------------------------------------- /src/image/jdpostct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/image/jdpostct.c -------------------------------------------------------------------------------- /src/image/jdsample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/image/jdsample.c -------------------------------------------------------------------------------- /src/image/jdtrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/image/jdtrans.c -------------------------------------------------------------------------------- /src/image/jidct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/image/jidct.c -------------------------------------------------------------------------------- /src/image/jmorecfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/image/jmorecfg.h -------------------------------------------------------------------------------- /src/image/jpegint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/image/jpegint.h -------------------------------------------------------------------------------- /src/image/jpeglib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/image/jpeglib.h -------------------------------------------------------------------------------- /src/image/jpg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/image/jpg.c -------------------------------------------------------------------------------- /src/image/jutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/image/jutils.c -------------------------------------------------------------------------------- /src/include/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/include/CMakeLists.txt -------------------------------------------------------------------------------- /src/include/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/include/Makefile.am -------------------------------------------------------------------------------- /src/include/accelkey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/include/accelkey.h -------------------------------------------------------------------------------- /src/include/bidi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/include/bidi.h -------------------------------------------------------------------------------- /src/include/bitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/include/bitmap.h -------------------------------------------------------------------------------- /src/include/client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/include/client.h -------------------------------------------------------------------------------- /src/include/clipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/include/clipboard.h -------------------------------------------------------------------------------- /src/include/cliprect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/include/cliprect.h -------------------------------------------------------------------------------- /src/include/constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/include/constants.h -------------------------------------------------------------------------------- /src/include/ctrlclass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/include/ctrlclass.h -------------------------------------------------------------------------------- /src/include/cursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/include/cursor.h -------------------------------------------------------------------------------- /src/include/dc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/include/dc.h -------------------------------------------------------------------------------- /src/include/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/include/debug.h -------------------------------------------------------------------------------- /src/include/devfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/include/devfont.h -------------------------------------------------------------------------------- /src/include/drawsemop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/include/drawsemop.h -------------------------------------------------------------------------------- /src/include/element.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/include/element.h -------------------------------------------------------------------------------- /src/include/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/include/event.h -------------------------------------------------------------------------------- /src/include/fontname.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/include/fontname.h -------------------------------------------------------------------------------- /src/include/gal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/include/gal.h -------------------------------------------------------------------------------- /src/include/gif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/include/gif.h -------------------------------------------------------------------------------- /src/include/glyph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/include/glyph.h -------------------------------------------------------------------------------- /src/include/ial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/include/ial.h -------------------------------------------------------------------------------- /src/include/icon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/include/icon.h -------------------------------------------------------------------------------- /src/include/incoreres.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/include/incoreres.h -------------------------------------------------------------------------------- /src/include/inline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/include/inline.h -------------------------------------------------------------------------------- /src/include/internals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/include/internals.h -------------------------------------------------------------------------------- /src/include/jpg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/include/jpg.h -------------------------------------------------------------------------------- /src/include/license.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/include/license.h -------------------------------------------------------------------------------- /src/include/linux-tty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/include/linux-tty.h -------------------------------------------------------------------------------- /src/include/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/include/list.h -------------------------------------------------------------------------------- /src/include/map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/include/map.h -------------------------------------------------------------------------------- /src/include/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/include/md5.h -------------------------------------------------------------------------------- /src/include/memops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/include/memops.h -------------------------------------------------------------------------------- /src/include/menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/include/menu.h -------------------------------------------------------------------------------- /src/include/mgsock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/include/mgsock.h -------------------------------------------------------------------------------- /src/include/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/include/misc.h -------------------------------------------------------------------------------- /src/include/msgstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/include/msgstr.h -------------------------------------------------------------------------------- /src/include/newgal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/include/newgal.h -------------------------------------------------------------------------------- /src/include/ourhdr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/include/ourhdr.h -------------------------------------------------------------------------------- /src/include/rbtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/include/rbtree.h -------------------------------------------------------------------------------- /src/include/readbmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/include/readbmp.h -------------------------------------------------------------------------------- /src/include/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/include/server.h -------------------------------------------------------------------------------- /src/include/sharedres.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/include/sharedres.h -------------------------------------------------------------------------------- /src/include/sockio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/include/sockio.h -------------------------------------------------------------------------------- /src/include/sysfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/include/sysfont.h -------------------------------------------------------------------------------- /src/include/sysres.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/include/sysres.h -------------------------------------------------------------------------------- /src/include/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/include/timer.h -------------------------------------------------------------------------------- /src/include/unicode-ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/include/unicode-ops.h -------------------------------------------------------------------------------- /src/include/zorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/include/zorder.h -------------------------------------------------------------------------------- /src/kernel/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/kernel/CMakeLists.txt -------------------------------------------------------------------------------- /src/kernel/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/kernel/Makefile.am -------------------------------------------------------------------------------- /src/kernel/blockheap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/kernel/blockheap.c -------------------------------------------------------------------------------- /src/kernel/cursor-comm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/kernel/cursor-comm.c -------------------------------------------------------------------------------- /src/kernel/cursor-procs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/kernel/cursor-procs.c -------------------------------------------------------------------------------- /src/kernel/cursor-sa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/kernel/cursor-sa.c -------------------------------------------------------------------------------- /src/kernel/cursor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/kernel/cursor.c -------------------------------------------------------------------------------- /src/kernel/desktop-comm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/kernel/desktop-comm.c -------------------------------------------------------------------------------- /src/kernel/desktop-procs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/kernel/desktop-procs.c -------------------------------------------------------------------------------- /src/kernel/desktop-sa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/kernel/desktop-sa.c -------------------------------------------------------------------------------- /src/kernel/desktop-ths.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/kernel/desktop-ths.c -------------------------------------------------------------------------------- /src/kernel/desktop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/kernel/desktop.c -------------------------------------------------------------------------------- /src/kernel/event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/kernel/event.c -------------------------------------------------------------------------------- /src/kernel/fixstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/kernel/fixstr.c -------------------------------------------------------------------------------- /src/kernel/init-lite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/kernel/init-lite.c -------------------------------------------------------------------------------- /src/kernel/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/kernel/init.c -------------------------------------------------------------------------------- /src/kernel/listenfd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/kernel/listenfd.c -------------------------------------------------------------------------------- /src/kernel/makefile.msvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/kernel/makefile.msvc -------------------------------------------------------------------------------- /src/kernel/makefile.ng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/kernel/makefile.ng -------------------------------------------------------------------------------- /src/kernel/message.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/kernel/message.c -------------------------------------------------------------------------------- /src/kernel/sem-manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/kernel/sem-manager.c -------------------------------------------------------------------------------- /src/kernel/sharedres.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/kernel/sharedres.c -------------------------------------------------------------------------------- /src/kernel/slotset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/kernel/slotset.c -------------------------------------------------------------------------------- /src/kernel/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/kernel/timer.c -------------------------------------------------------------------------------- /src/kernel/timer_posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/kernel/timer_posix.c -------------------------------------------------------------------------------- /src/kernel/zorder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/kernel/zorder.c -------------------------------------------------------------------------------- /src/libc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/libc/CMakeLists.txt -------------------------------------------------------------------------------- /src/libc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/libc/Makefile.am -------------------------------------------------------------------------------- /src/libc/defdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/libc/defdev.c -------------------------------------------------------------------------------- /src/libc/fnprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/libc/fnprintf.c -------------------------------------------------------------------------------- /src/libc/fprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/libc/fprintf.c -------------------------------------------------------------------------------- /src/libc/fscanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/libc/fscanf.c -------------------------------------------------------------------------------- /src/libc/ieeefp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/libc/ieeefp.h -------------------------------------------------------------------------------- /src/libc/makefile.msvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/libc/makefile.msvc -------------------------------------------------------------------------------- /src/libc/makefile.ng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/libc/makefile.ng -------------------------------------------------------------------------------- /src/libc/malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/libc/malloc.c -------------------------------------------------------------------------------- /src/libc/mgslice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/libc/mgslice.c -------------------------------------------------------------------------------- /src/libc/nucleus_mutex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/libc/nucleus_mutex.c -------------------------------------------------------------------------------- /src/libc/nucleus_pprivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/libc/nucleus_pprivate.h -------------------------------------------------------------------------------- /src/libc/nucleus_pthread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/libc/nucleus_pthread.c -------------------------------------------------------------------------------- /src/libc/nucleus_sem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/libc/nucleus_sem.c -------------------------------------------------------------------------------- /src/libc/ose_sem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/libc/ose_sem.c -------------------------------------------------------------------------------- /src/libc/printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/libc/printf.c -------------------------------------------------------------------------------- /src/libc/psos_mutex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/libc/psos_mutex.c -------------------------------------------------------------------------------- /src/libc/psos_pprivate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/libc/psos_pprivate.c -------------------------------------------------------------------------------- /src/libc/psos_pprivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/libc/psos_pprivate.h -------------------------------------------------------------------------------- /src/libc/psos_pthread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/libc/psos_pthread.c -------------------------------------------------------------------------------- /src/libc/psos_sem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/libc/psos_sem.c -------------------------------------------------------------------------------- /src/libc/scanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/libc/scanf.c -------------------------------------------------------------------------------- /src/libc/snprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/libc/snprintf.c -------------------------------------------------------------------------------- /src/libc/sprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/libc/sprintf.c -------------------------------------------------------------------------------- /src/libc/sscanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/libc/sscanf.c -------------------------------------------------------------------------------- /src/libc/stdioinlines.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/libc/stdioinlines.c -------------------------------------------------------------------------------- /src/libc/sysvipc_mutex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/libc/sysvipc_mutex.c -------------------------------------------------------------------------------- /src/libc/sysvipc_private.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/libc/sysvipc_private.c -------------------------------------------------------------------------------- /src/libc/sysvipc_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/libc/sysvipc_private.h -------------------------------------------------------------------------------- /src/libc/sysvipc_sem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/libc/sysvipc_sem.c -------------------------------------------------------------------------------- /src/libc/threadx_mutex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/libc/threadx_mutex.c -------------------------------------------------------------------------------- /src/libc/threadx_pprivate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/libc/threadx_pprivate.c -------------------------------------------------------------------------------- /src/libc/threadx_pprivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/libc/threadx_pprivate.h -------------------------------------------------------------------------------- /src/libc/threadx_pthread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/libc/threadx_pthread.c -------------------------------------------------------------------------------- /src/libc/threadx_sem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/libc/threadx_sem.c -------------------------------------------------------------------------------- /src/libc/ucos2_mutex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/libc/ucos2_mutex.c -------------------------------------------------------------------------------- /src/libc/ucos2_pprivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/libc/ucos2_pprivate.h -------------------------------------------------------------------------------- /src/libc/ucos2_pthread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/libc/ucos2_pthread.c -------------------------------------------------------------------------------- /src/libc/ucos2_sem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/libc/ucos2_sem.c -------------------------------------------------------------------------------- /src/libc/vfnprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/libc/vfnprintf.c -------------------------------------------------------------------------------- /src/libc/vfscanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/libc/vfscanf.c -------------------------------------------------------------------------------- /src/libc/vsnprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/libc/vsnprintf.c -------------------------------------------------------------------------------- /src/libc/vsscanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/libc/vsscanf.c -------------------------------------------------------------------------------- /src/libc/vxworks_mutex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/libc/vxworks_mutex.c -------------------------------------------------------------------------------- /src/libc/vxworks_pprivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/libc/vxworks_pprivate.h -------------------------------------------------------------------------------- /src/libc/vxworks_pthread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/libc/vxworks_pthread.c -------------------------------------------------------------------------------- /src/libc/vxworks_sem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/libc/vxworks_sem.c -------------------------------------------------------------------------------- /src/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/main/CMakeLists.txt -------------------------------------------------------------------------------- /src/main/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/main/Makefile.am -------------------------------------------------------------------------------- /src/main/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/main/main.c -------------------------------------------------------------------------------- /src/main/makefile.msvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/main/makefile.msvc -------------------------------------------------------------------------------- /src/main/makefile.ng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/main/makefile.ng -------------------------------------------------------------------------------- /src/main/minigui-win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/main/minigui-win32.c -------------------------------------------------------------------------------- /src/makefile.msvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/makefile.msvc -------------------------------------------------------------------------------- /src/makefile.ng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/makefile.ng -------------------------------------------------------------------------------- /src/misc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/misc/CMakeLists.txt -------------------------------------------------------------------------------- /src/misc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/misc/Makefile.am -------------------------------------------------------------------------------- /src/misc/about.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/misc/about.c -------------------------------------------------------------------------------- /src/misc/anon_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/misc/anon_file.c -------------------------------------------------------------------------------- /src/misc/clipboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/misc/clipboard.c -------------------------------------------------------------------------------- /src/misc/drawsemop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/misc/drawsemop.c -------------------------------------------------------------------------------- /src/misc/endianrw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/misc/endianrw.c -------------------------------------------------------------------------------- /src/misc/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/misc/error.c -------------------------------------------------------------------------------- /src/misc/errorlog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/misc/errorlog.c -------------------------------------------------------------------------------- /src/misc/license.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/misc/license.c -------------------------------------------------------------------------------- /src/misc/lock_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/misc/lock_file.c -------------------------------------------------------------------------------- /src/misc/makefile.msvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/misc/makefile.msvc -------------------------------------------------------------------------------- /src/misc/makefile.ng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/misc/makefile.ng -------------------------------------------------------------------------------- /src/misc/map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/misc/map.c -------------------------------------------------------------------------------- /src/misc/math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/misc/math.c -------------------------------------------------------------------------------- /src/misc/misc-dt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/misc/misc-dt.c -------------------------------------------------------------------------------- /src/misc/misc-win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/misc/misc-win.c -------------------------------------------------------------------------------- /src/misc/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/misc/misc.c -------------------------------------------------------------------------------- /src/misc/nposix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/misc/nposix.c -------------------------------------------------------------------------------- /src/misc/rbtree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/misc/rbtree.c -------------------------------------------------------------------------------- /src/misc/rc4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/misc/rc4.c -------------------------------------------------------------------------------- /src/misc/rc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/misc/rc4.h -------------------------------------------------------------------------------- /src/misc/rwops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/misc/rwops.c -------------------------------------------------------------------------------- /src/misc/sockio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/misc/sockio.c -------------------------------------------------------------------------------- /src/misc/systext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/misc/systext.c -------------------------------------------------------------------------------- /src/mybmp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/mybmp/CMakeLists.txt -------------------------------------------------------------------------------- /src/mybmp/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/mybmp/Makefile.am -------------------------------------------------------------------------------- /src/mybmp/gif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/mybmp/gif.c -------------------------------------------------------------------------------- /src/mybmp/jpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/mybmp/jpeg.c -------------------------------------------------------------------------------- /src/mybmp/lbm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/mybmp/lbm.c -------------------------------------------------------------------------------- /src/mybmp/makefile.msvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/mybmp/makefile.msvc -------------------------------------------------------------------------------- /src/mybmp/makefile.ng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/mybmp/makefile.ng -------------------------------------------------------------------------------- /src/mybmp/mybmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/mybmp/mybmp.c -------------------------------------------------------------------------------- /src/mybmp/pcx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/mybmp/pcx.c -------------------------------------------------------------------------------- /src/mybmp/png12.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/mybmp/png12.c -------------------------------------------------------------------------------- /src/mybmp/png16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/mybmp/png16.c -------------------------------------------------------------------------------- /src/mybmp/tga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/mybmp/tga.c -------------------------------------------------------------------------------- /src/mybmp/webp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/mybmp/webp.c -------------------------------------------------------------------------------- /src/mybmp/winbmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/mybmp/winbmp.c -------------------------------------------------------------------------------- /src/newgal/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/newgal/CMakeLists.txt -------------------------------------------------------------------------------- /src/newgal/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/newgal/Makefile.am -------------------------------------------------------------------------------- /src/newgal/RLEaccel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/newgal/RLEaccel.c -------------------------------------------------------------------------------- /src/newgal/RLEaccel_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/newgal/RLEaccel_c.h -------------------------------------------------------------------------------- /src/newgal/blit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/newgal/blit.c -------------------------------------------------------------------------------- /src/newgal/blit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/newgal/blit.h -------------------------------------------------------------------------------- /src/newgal/blit_0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/newgal/blit_0.c -------------------------------------------------------------------------------- /src/newgal/blit_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/newgal/blit_1.c -------------------------------------------------------------------------------- /src/newgal/blit_A.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/newgal/blit_A.c -------------------------------------------------------------------------------- /src/newgal/blit_A.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/newgal/blit_A.h -------------------------------------------------------------------------------- /src/newgal/blit_N.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/newgal/blit_N.c -------------------------------------------------------------------------------- /src/newgal/commlcd/extern.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/newgal/commlcd/extern.c -------------------------------------------------------------------------------- /src/newgal/dfb/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/newgal/dfb/Makefile.am -------------------------------------------------------------------------------- /src/newgal/dfb/dfbvideo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/newgal/dfb/dfbvideo.c -------------------------------------------------------------------------------- /src/newgal/dfb/dfbvideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/newgal/dfb/dfbvideo.h -------------------------------------------------------------------------------- /src/newgal/dfb/makefile.ng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/newgal/dfb/makefile.ng -------------------------------------------------------------------------------- /src/newgal/drm/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/newgal/drm/Makefile.am -------------------------------------------------------------------------------- /src/newgal/drm/drmvideo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/newgal/drm/drmvideo.c -------------------------------------------------------------------------------- /src/newgal/drm/drmvideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/newgal/drm/drmvideo.h -------------------------------------------------------------------------------- /src/newgal/drm/makefile.ng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/newgal/drm/makefile.ng -------------------------------------------------------------------------------- /src/newgal/fbcon/compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/newgal/fbcon/compiler.h -------------------------------------------------------------------------------- /src/newgal/fbcon/fb3dfx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/newgal/fbcon/fb3dfx.c -------------------------------------------------------------------------------- /src/newgal/fbcon/fb3dfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/newgal/fbcon/fb3dfx.h -------------------------------------------------------------------------------- /src/newgal/fbcon/fbmatrox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/newgal/fbcon/fbmatrox.c -------------------------------------------------------------------------------- /src/newgal/fbcon/fbmatrox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/newgal/fbcon/fbmatrox.h -------------------------------------------------------------------------------- /src/newgal/fbcon/hi3560aInit/README: -------------------------------------------------------------------------------- 1 | 2 | Run 'hi3560ainit' directory, and do not exit. 3 | -------------------------------------------------------------------------------- /src/newgal/gamma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/newgal/gamma.c -------------------------------------------------------------------------------- /src/newgal/hisi/hi_tde.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/newgal/hisi/hi_tde.h -------------------------------------------------------------------------------- /src/newgal/hisi/tde.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/newgal/hisi/tde.c -------------------------------------------------------------------------------- /src/newgal/leaks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/newgal/leaks.h -------------------------------------------------------------------------------- /src/newgal/makefile.msvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/newgal/makefile.msvc -------------------------------------------------------------------------------- /src/newgal/makefile.ng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/newgal/makefile.ng -------------------------------------------------------------------------------- /src/newgal/newgal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/newgal/newgal.c -------------------------------------------------------------------------------- /src/newgal/pixels.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/newgal/pixels.c -------------------------------------------------------------------------------- /src/newgal/pixels_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/newgal/pixels_c.h -------------------------------------------------------------------------------- /src/newgal/qvfb/qvfb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/newgal/qvfb/qvfb.c -------------------------------------------------------------------------------- /src/newgal/qvfb/qvfb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/newgal/qvfb/qvfb.h -------------------------------------------------------------------------------- /src/newgal/stretch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/newgal/stretch.c -------------------------------------------------------------------------------- /src/newgal/stretch_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/newgal/stretch_c.h -------------------------------------------------------------------------------- /src/newgal/surface-shm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/newgal/surface-shm.c -------------------------------------------------------------------------------- /src/newgal/surface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/newgal/surface.c -------------------------------------------------------------------------------- /src/newgal/sysvideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/newgal/sysvideo.h -------------------------------------------------------------------------------- /src/newgal/usvfb/usvfb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/newgal/usvfb/usvfb.c -------------------------------------------------------------------------------- /src/newgal/usvfb/usvfb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/newgal/usvfb/usvfb.h -------------------------------------------------------------------------------- /src/newgal/video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/newgal/video.c -------------------------------------------------------------------------------- /src/newgal/wvfb/winfb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/newgal/wvfb/winfb.c -------------------------------------------------------------------------------- /src/newgal/wvfb/winfb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/newgal/wvfb/winfb.h -------------------------------------------------------------------------------- /src/newgal/wvfb/wvfb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/newgal/wvfb/wvfb.c -------------------------------------------------------------------------------- /src/newgal/wvfb/wvfb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/newgal/wvfb/wvfb.h -------------------------------------------------------------------------------- /src/newgal/yuv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/newgal/yuv.c -------------------------------------------------------------------------------- /src/newgal/yuv_mmx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/newgal/yuv_mmx.c -------------------------------------------------------------------------------- /src/newgal/yuv_sw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/newgal/yuv_sw.c -------------------------------------------------------------------------------- /src/newgal/yuv_sw_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/newgal/yuv_sw_c.h -------------------------------------------------------------------------------- /src/newgal/yuvfuncs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/newgal/yuvfuncs.h -------------------------------------------------------------------------------- /src/newgdi/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/newgdi/Makefile.am -------------------------------------------------------------------------------- /src/newgdi/achar-uchar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/newgdi/achar-uchar.c -------------------------------------------------------------------------------- /src/newgdi/advapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/newgdi/advapi.c -------------------------------------------------------------------------------- /src/newgdi/arc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/newgdi/arc.c -------------------------------------------------------------------------------- /src/newgdi/attr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/newgdi/attr.c -------------------------------------------------------------------------------- /src/newgdi/bitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/newgdi/bitmap.c -------------------------------------------------------------------------------- /src/newgdi/clip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/newgdi/clip.c -------------------------------------------------------------------------------- /src/newgdi/coor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/newgdi/coor.c -------------------------------------------------------------------------------- /src/newgdi/drawtext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/newgdi/drawtext.c -------------------------------------------------------------------------------- /src/newgdi/drawtext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/newgdi/drawtext.h -------------------------------------------------------------------------------- /src/newgdi/flood.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/newgdi/flood.c -------------------------------------------------------------------------------- /src/newgdi/gdi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/newgdi/gdi.c -------------------------------------------------------------------------------- /src/newgdi/generators.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/newgdi/generators.c -------------------------------------------------------------------------------- /src/newgdi/glyph-old.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/newgdi/glyph-old.c -------------------------------------------------------------------------------- /src/newgdi/glyph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/newgdi/glyph.c -------------------------------------------------------------------------------- /src/newgdi/glyph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/newgdi/glyph.h -------------------------------------------------------------------------------- /src/newgdi/icon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/newgdi/icon.c -------------------------------------------------------------------------------- /src/newgdi/layout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/newgdi/layout.c -------------------------------------------------------------------------------- /src/newgdi/layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/newgdi/layout.h -------------------------------------------------------------------------------- /src/newgdi/legacy-bidi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/newgdi/legacy-bidi.c -------------------------------------------------------------------------------- /src/newgdi/line.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/newgdi/line.c -------------------------------------------------------------------------------- /src/newgdi/makefile.msvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/newgdi/makefile.msvc -------------------------------------------------------------------------------- /src/newgdi/makefile.ng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/newgdi/makefile.ng -------------------------------------------------------------------------------- /src/newgdi/map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/newgdi/map.c -------------------------------------------------------------------------------- /src/newgdi/mi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/newgdi/mi.h -------------------------------------------------------------------------------- /src/newgdi/miarc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/newgdi/miarc.c -------------------------------------------------------------------------------- /src/newgdi/midash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/newgdi/midash.c -------------------------------------------------------------------------------- /src/newgdi/midc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/newgdi/midc.h -------------------------------------------------------------------------------- /src/newgdi/mifillarc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/newgdi/mifillarc.c -------------------------------------------------------------------------------- /src/newgdi/mifillarc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/newgdi/mifillarc.h -------------------------------------------------------------------------------- /src/newgdi/mifpoly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/newgdi/mifpoly.h -------------------------------------------------------------------------------- /src/newgdi/mifpolycon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/newgdi/mifpolycon.c -------------------------------------------------------------------------------- /src/newgdi/mispans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/newgdi/mispans.c -------------------------------------------------------------------------------- /src/newgdi/mispans.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/newgdi/mispans.h -------------------------------------------------------------------------------- /src/newgdi/mistruct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/newgdi/mistruct.h -------------------------------------------------------------------------------- /src/newgdi/miwideline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/newgdi/miwideline.c -------------------------------------------------------------------------------- /src/newgdi/miwideline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/newgdi/miwideline.h -------------------------------------------------------------------------------- /src/newgdi/palette.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/newgdi/palette.c -------------------------------------------------------------------------------- /src/newgdi/pixel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/newgdi/pixel.c -------------------------------------------------------------------------------- /src/newgdi/pixel_ops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/newgdi/pixel_ops.c -------------------------------------------------------------------------------- /src/newgdi/pixel_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/newgdi/pixel_ops.h -------------------------------------------------------------------------------- /src/newgdi/polygon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/newgdi/polygon.c -------------------------------------------------------------------------------- /src/newgdi/polygon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/newgdi/polygon.h -------------------------------------------------------------------------------- /src/newgdi/readbmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/newgdi/readbmp.c -------------------------------------------------------------------------------- /src/newgdi/rect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/newgdi/rect.c -------------------------------------------------------------------------------- /src/newgdi/region.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/newgdi/region.c -------------------------------------------------------------------------------- /src/newgdi/rotatebmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/newgdi/rotatebmp.c -------------------------------------------------------------------------------- /src/newgdi/screen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/newgdi/screen.c -------------------------------------------------------------------------------- /src/newgdi/text.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/newgdi/text.c -------------------------------------------------------------------------------- /src/newgdi/textout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/newgdi/textout.c -------------------------------------------------------------------------------- /src/newgdi/textruns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/newgdi/textruns.c -------------------------------------------------------------------------------- /src/newgdi/textruns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/newgdi/textruns.h -------------------------------------------------------------------------------- /src/newgdi/yuv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/newgdi/yuv.c -------------------------------------------------------------------------------- /src/server/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/server/Makefile.am -------------------------------------------------------------------------------- /src/server/client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/server/client.c -------------------------------------------------------------------------------- /src/server/layer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/server/layer.c -------------------------------------------------------------------------------- /src/server/request.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/server/request.c -------------------------------------------------------------------------------- /src/server/servaccept.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/server/servaccept.c -------------------------------------------------------------------------------- /src/server/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/server/server.c -------------------------------------------------------------------------------- /src/server/servlisten.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/server/servlisten.c -------------------------------------------------------------------------------- /src/sysres/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/sysres/Makefile.am -------------------------------------------------------------------------------- /src/sysres/incoreres.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/sysres/incoreres.c -------------------------------------------------------------------------------- /src/sysres/license/pictures/hybridos/01_fmsoft.png: -------------------------------------------------------------------------------- 1 | ../common/01_fmsoft.png -------------------------------------------------------------------------------- /src/sysres/license/pictures/hybridos/02_feiman.png: -------------------------------------------------------------------------------- 1 | ../common/02_feiman.png -------------------------------------------------------------------------------- /src/sysres/license/pictures/hybridos/03_progressbar.png: -------------------------------------------------------------------------------- 1 | ../common/03_progressbar.png -------------------------------------------------------------------------------- /src/sysres/license/pictures/hybridos/04_progressbar-bk.png: -------------------------------------------------------------------------------- 1 | ../common/04_progressbar-bk.png -------------------------------------------------------------------------------- /src/sysres/license/pictures/mdolphin/01_fmsoft.png: -------------------------------------------------------------------------------- 1 | ../common/01_fmsoft.png -------------------------------------------------------------------------------- /src/sysres/license/pictures/mdolphin/02_feiman.png: -------------------------------------------------------------------------------- 1 | ../common/02_feiman.png -------------------------------------------------------------------------------- /src/sysres/license/pictures/mdolphin/03_progressbar.png: -------------------------------------------------------------------------------- 1 | ../common/03_progressbar.png -------------------------------------------------------------------------------- /src/sysres/license/pictures/mdolphin/04_progressbar-bk.png: -------------------------------------------------------------------------------- 1 | ../common/04_progressbar-bk.png -------------------------------------------------------------------------------- /src/sysres/license/pictures/minigui/01_fmsoft.png: -------------------------------------------------------------------------------- 1 | ../common/01_fmsoft.png -------------------------------------------------------------------------------- /src/sysres/license/pictures/minigui/02_feiman.png: -------------------------------------------------------------------------------- 1 | ../common/02_feiman.png -------------------------------------------------------------------------------- /src/sysres/license/pictures/minigui/03_progressbar.png: -------------------------------------------------------------------------------- 1 | ../common/03_progressbar.png -------------------------------------------------------------------------------- /src/sysres/license/pictures/minigui/04_progressbar-bk.png: -------------------------------------------------------------------------------- 1 | ../common/04_progressbar-bk.png -------------------------------------------------------------------------------- /src/sysres/makefile.msvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/sysres/makefile.msvc -------------------------------------------------------------------------------- /src/sysres/makefile.ng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/sysres/makefile.ng -------------------------------------------------------------------------------- /src/sysres/mgetc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/sysres/mgetc.c -------------------------------------------------------------------------------- /src/sysres/mgetc_win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/sysres/mgetc_win32.c -------------------------------------------------------------------------------- /src/sysres/mkinnerres.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/sysres/mkinnerres.sh -------------------------------------------------------------------------------- /src/sysres/resmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/sysres/resmgr.c -------------------------------------------------------------------------------- /src/sysres/resmgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/sysres/resmgr.h -------------------------------------------------------------------------------- /src/sysres/resource.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/sysres/resource.c -------------------------------------------------------------------------------- /src/sysres/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/sysres/test/Makefile -------------------------------------------------------------------------------- /src/sysres/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/sysres/test/README -------------------------------------------------------------------------------- /src/template.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/template.c -------------------------------------------------------------------------------- /src/template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/template.h -------------------------------------------------------------------------------- /src/textedit/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/textedit/Makefile.am -------------------------------------------------------------------------------- /src/textedit/makefile.ng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/textedit/makefile.ng -------------------------------------------------------------------------------- /src/textedit/mbtree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/textedit/mbtree.c -------------------------------------------------------------------------------- /src/textedit/mbtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/textedit/mbtree.h -------------------------------------------------------------------------------- /src/textedit/mtextedit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/textedit/mtextedit.c -------------------------------------------------------------------------------- /src/textedit/mtextedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/textedit/mtextedit.h -------------------------------------------------------------------------------- /src/textedit/mwidget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/textedit/mwidget.c -------------------------------------------------------------------------------- /src/textedit/mwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/textedit/mwidget.h -------------------------------------------------------------------------------- /src/textedit/object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/textedit/object.c -------------------------------------------------------------------------------- /src/textedit/object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWei/MiniGUI/HEAD/src/textedit/object.h --------------------------------------------------------------------------------