├── AUTHORS ├── BUGS ├── COPYING ├── ChangeLog ├── FAQ ├── Makefile ├── Makefile.lib ├── README ├── TODO ├── configs ├── Config ├── linux-single.config ├── linux.config ├── mingw.config └── pspdev.config ├── demo ├── Makefile ├── child │ ├── Makefile │ └── child.c ├── desktop │ ├── Makefile │ ├── cfg │ │ └── desktop.cfg │ ├── desktop.c │ ├── desktop.h │ ├── img │ │ ├── icons │ │ │ ├── aim.png │ │ │ ├── app.png │ │ │ ├── exit.png │ │ │ ├── gimp.png │ │ │ ├── lbreakout2.png │ │ │ ├── links.png │ │ │ ├── load.png │ │ │ ├── ltris.png │ │ │ ├── mines.png │ │ │ ├── sdl.png │ │ │ ├── terminal.png │ │ │ ├── xchat.png │ │ │ └── xynth.png │ │ ├── widget │ │ │ ├── button3.png │ │ │ ├── button4.png │ │ │ └── taskbar.png │ │ └── wpaper │ │ │ └── xynth.png │ ├── main.c │ ├── menu.c │ └── taskbar.c ├── guioo │ ├── Demo.cpp │ ├── Demo.h │ ├── DesktopWindow.cpp │ ├── DesktopWindow.h │ ├── Makefile │ ├── ShutdownWindow.cpp │ ├── ShutdownWindow.h │ ├── SlideWindow.cpp │ ├── SlideWindow.h │ ├── StartSplashWindow.cpp │ ├── StartSplashWindow.h │ ├── Thread.cpp │ ├── Thread.h │ └── data │ │ ├── gui.xml │ │ ├── logo01.png │ │ ├── logo02.png │ │ ├── logo03.png │ │ ├── logo04.png │ │ ├── logo05.png │ │ ├── logo06.png │ │ ├── logo07.png │ │ ├── logo08.png │ │ ├── logo09.png │ │ ├── logo10.png │ │ ├── logo11.png │ │ ├── logo12.png │ │ ├── slide-1.png │ │ ├── slide-10.png │ │ ├── slide-11.png │ │ ├── slide-2.png │ │ ├── slide-3.png │ │ ├── slide-4.png │ │ ├── slide-5.png │ │ ├── slide-6.png │ │ ├── slide-7.png │ │ ├── slide-8.png │ │ └── slide-9.png ├── hide │ ├── Makefile │ └── hide.c ├── img │ ├── Makefile │ └── img.c ├── load │ ├── Makefile │ └── load.c ├── mines │ ├── Makefile │ └── mines.cpp ├── object │ ├── Makefile │ └── object.c ├── onscreenkeyboard │ ├── Makefile │ └── onscreenkeyboard.c ├── region │ ├── Makefile │ └── region.c ├── simple │ ├── Makefile │ └── simple.c ├── temp │ ├── Makefile │ └── temp.c ├── term │ ├── Makefile │ └── term.c ├── timer │ ├── Makefile │ └── timer.c ├── widgetx │ ├── Makefile │ ├── widgetx.c │ ├── widgetx.js │ └── widgetx.xws ├── xdialog │ ├── Makefile │ ├── msgbox.c │ ├── xdialog.c │ ├── xdialog.h │ └── yesno.c └── xynthlogout │ ├── Makefile │ └── xynthlogout.c ├── description-pak ├── doxygen.cfg ├── ports ├── cairo │ └── cairo-1.4.12-xynth.diff ├── gtk │ ├── gtk+-2.10.14 │ │ ├── Makefile.am │ │ ├── gdkcolor-xynth.c │ │ ├── gdkcursor-xynth.c │ │ ├── gdkdisplay-xynth.c │ │ ├── gdkdnd-xynth.c │ │ ├── gdkdrawable-xynth.c │ │ ├── gdkevents-xynth.c │ │ ├── gdkgc-xynth.c │ │ ├── gdkgeometry-xynth.c │ │ ├── gdkglobals-xynth.c │ │ ├── gdkimage-xynth.c │ │ ├── gdkinput-xynth.c │ │ ├── gdkkeys-xynth.c │ │ ├── gdkmain-xynth.c │ │ ├── gdkpixmap-xynth.c │ │ ├── gdkscreen-xynth.c │ │ ├── gdkvisual-xynth.c │ │ ├── gdkwindow-xynth.c │ │ ├── gdkxynth.c │ │ ├── gdkxynth.h │ │ └── x-cursors.xbm │ ├── gtk+-2.10.x-xynth.diff │ └── gtk+-2.4.14-xynth.diff ├── kaffe │ ├── kaffe-1.1.7-xynth.diff │ └── xynth │ │ ├── Makefile.am │ │ ├── color.c │ │ ├── event.c │ │ ├── font.c │ │ ├── graphic.c │ │ ├── image.c │ │ ├── toolkit.c │ │ ├── toolkit.h │ │ └── window.c ├── links │ ├── links-2.1pre31-xynth.diff │ └── xynth.c ├── mplayer │ ├── MPlayer-1.0rc2-xynth.diff │ └── vo_xynth.c ├── ports.sh └── sdl │ ├── SDL-1.2.13-xynth.diff │ └── xynth │ ├── SDL_xynth.h │ ├── SDL_xynthcursor.c │ ├── SDL_xynthevent.c │ ├── SDL_xynthgamma.c │ ├── SDL_xynthgl.c │ ├── SDL_xynthhw.c │ ├── SDL_xynthvideo.c │ └── SDL_xynthwm.c ├── src ├── Makefile ├── configs │ ├── Makefile │ └── xynth.conf ├── fonts │ ├── Makefile │ ├── arial.ttf │ ├── trebuc.ttf │ ├── trebucbd.ttf │ └── veramono.ttf ├── guioo │ ├── GuiAnimation.cpp │ ├── GuiAnimation.h │ ├── GuiButton.cpp │ ├── GuiButton.h │ ├── GuiCheckBox.cpp │ ├── GuiCheckBox.h │ ├── GuiEditBox.cpp │ ├── GuiEditBox.h │ ├── GuiEffectWindow.cpp │ ├── GuiEffectWindow.h │ ├── GuiFrame.cpp │ ├── GuiFrame.h │ ├── GuiImage.cpp │ ├── GuiImage.h │ ├── GuiImageCache.cpp │ ├── GuiImageCache.h │ ├── GuiMultiTextBox.cpp │ ├── GuiMultiTextBox.h │ ├── GuiPrimitive.cpp │ ├── GuiPrimitive.h │ ├── GuiProgressBar.cpp │ ├── GuiProgressBar.h │ ├── GuiRectangle.cpp │ ├── GuiRectangle.h │ ├── GuiScrollBar.cpp │ ├── GuiScrollBar.h │ ├── GuiScrollWindow.cpp │ ├── GuiScrollWindow.h │ ├── GuiSurface.cpp │ ├── GuiSurface.h │ ├── GuiTemplate.cpp │ ├── GuiTemplate.h │ ├── GuiTextBox.cpp │ ├── GuiTextBox.h │ ├── GuiTextMatrix.cpp │ ├── GuiTextMatrix.h │ ├── GuiWindow.cpp │ ├── GuiWindow.h │ ├── GuiWindowWorker.cpp │ ├── GuiWindowWorker.h │ ├── Makefile │ └── README ├── lib │ ├── Makefile │ ├── alloc.c │ ├── child.c │ ├── config.c │ ├── debug.c │ ├── driver.c │ ├── event.c │ ├── eventq.c │ ├── expat │ │ ├── Makefile │ │ ├── README │ │ ├── ascii.h │ │ ├── asciitab.h │ │ ├── expat.h │ │ ├── expat_config.h │ │ ├── expat_external.h │ │ ├── iasciitab.h │ │ ├── internal.h │ │ ├── latin1tab.h │ │ ├── nametab.h │ │ ├── utf8tab.h │ │ ├── xmlparse.c │ │ ├── xmlrole.c │ │ ├── xmlrole.h │ │ ├── xmltok.c │ │ ├── xmltok.h │ │ ├── xmltok_impl.c │ │ ├── xmltok_impl.h │ │ └── xmltok_ns.c │ ├── font.c │ ├── freetype2 │ │ ├── Makefile │ │ ├── README │ │ ├── afangles.c │ │ ├── afangles.h │ │ ├── afcjk.c │ │ ├── afcjk.h │ │ ├── afdummy.c │ │ ├── afdummy.h │ │ ├── aferrors.h │ │ ├── afglobal.c │ │ ├── afglobal.h │ │ ├── afhints.c │ │ ├── afhints.h │ │ ├── afindic.c │ │ ├── afindic.h │ │ ├── aflatin.c │ │ ├── aflatin.h │ │ ├── afloader.c │ │ ├── afloader.h │ │ ├── afmodule.c │ │ ├── afmodule.h │ │ ├── aftypes.h │ │ ├── autofit.c │ │ ├── ftbase.c │ │ ├── ftbitmap.c │ │ ├── ftcalc.c │ │ ├── ftdbgmem.c │ │ ├── ftdebug.c │ │ ├── ftgloadr.c │ │ ├── ftglyph.c │ │ ├── ftgrays.c │ │ ├── ftgrays.h │ │ ├── ftinit.c │ │ ├── ftmac.c │ │ ├── ftnames.c │ │ ├── ftobjs.c │ │ ├── ftoutln.c │ │ ├── ftrfork.c │ │ ├── ftsmerrs.h │ │ ├── ftsmooth.c │ │ ├── ftsmooth.h │ │ ├── ftstream.c │ │ ├── ftsystem.c │ │ ├── fttrigon.c │ │ ├── ftutil.c │ │ ├── include │ │ │ ├── freetype │ │ │ │ ├── config │ │ │ │ │ ├── ftconfig.h │ │ │ │ │ ├── ftheader.h │ │ │ │ │ ├── ftmodule.h │ │ │ │ │ ├── ftoption.h │ │ │ │ │ └── ftstdlib.h │ │ │ │ ├── freetype.h │ │ │ │ ├── ftbbox.h │ │ │ │ ├── ftbdf.h │ │ │ │ ├── ftbitmap.h │ │ │ │ ├── ftcache.h │ │ │ │ ├── ftchapters.h │ │ │ │ ├── fterrdef.h │ │ │ │ ├── fterrors.h │ │ │ │ ├── ftgasp.h │ │ │ │ ├── ftglyph.h │ │ │ │ ├── ftgxval.h │ │ │ │ ├── ftgzip.h │ │ │ │ ├── ftimage.h │ │ │ │ ├── ftincrem.h │ │ │ │ ├── ftlcdfil.h │ │ │ │ ├── ftlist.h │ │ │ │ ├── ftlzw.h │ │ │ │ ├── ftmac.h │ │ │ │ ├── ftmm.h │ │ │ │ ├── ftmodapi.h │ │ │ │ ├── ftmoderr.h │ │ │ │ ├── ftotval.h │ │ │ │ ├── ftoutln.h │ │ │ │ ├── ftpfr.h │ │ │ │ ├── ftrender.h │ │ │ │ ├── ftsizes.h │ │ │ │ ├── ftsnames.h │ │ │ │ ├── ftstroke.h │ │ │ │ ├── ftsynth.h │ │ │ │ ├── ftsystem.h │ │ │ │ ├── fttrigon.h │ │ │ │ ├── fttypes.h │ │ │ │ ├── ftwinfnt.h │ │ │ │ ├── ftxf86.h │ │ │ │ ├── internal │ │ │ │ │ ├── autohint.h │ │ │ │ │ ├── ftcalc.h │ │ │ │ │ ├── ftdebug.h │ │ │ │ │ ├── ftdriver.h │ │ │ │ │ ├── ftgloadr.h │ │ │ │ │ ├── ftmemory.h │ │ │ │ │ ├── ftobjs.h │ │ │ │ │ ├── ftrfork.h │ │ │ │ │ ├── ftserv.h │ │ │ │ │ ├── ftstream.h │ │ │ │ │ ├── fttrace.h │ │ │ │ │ ├── ftvalid.h │ │ │ │ │ ├── internal.h │ │ │ │ │ ├── pcftypes.h │ │ │ │ │ ├── psaux.h │ │ │ │ │ ├── pshints.h │ │ │ │ │ ├── services │ │ │ │ │ │ ├── svbdf.h │ │ │ │ │ │ ├── svgldict.h │ │ │ │ │ │ ├── svgxval.h │ │ │ │ │ │ ├── svkern.h │ │ │ │ │ │ ├── svmm.h │ │ │ │ │ │ ├── svotval.h │ │ │ │ │ │ ├── svpfr.h │ │ │ │ │ │ ├── svpostnm.h │ │ │ │ │ │ ├── svpscmap.h │ │ │ │ │ │ ├── svpsinfo.h │ │ │ │ │ │ ├── svsfnt.h │ │ │ │ │ │ ├── svttcmap.h │ │ │ │ │ │ ├── svtteng.h │ │ │ │ │ │ ├── svttglyf.h │ │ │ │ │ │ ├── svwinfnt.h │ │ │ │ │ │ └── svxf86nm.h │ │ │ │ │ ├── sfnt.h │ │ │ │ │ ├── t1types.h │ │ │ │ │ └── tttypes.h │ │ │ │ ├── t1tables.h │ │ │ │ ├── ttnameid.h │ │ │ │ ├── tttables.h │ │ │ │ ├── tttags.h │ │ │ │ └── ttunpat.h │ │ │ └── ft2build.h │ │ ├── sfdriver.c │ │ ├── sfdriver.h │ │ ├── sferrors.h │ │ ├── sfnt.c │ │ ├── sfobjs.c │ │ ├── sfobjs.h │ │ ├── smooth.c │ │ ├── truetype.c │ │ ├── ttbdf.c │ │ ├── ttbdf.h │ │ ├── ttcmap.c │ │ ├── ttcmap.h │ │ ├── ttdriver.c │ │ ├── ttdriver.h │ │ ├── tterrors.h │ │ ├── ttgload.c │ │ ├── ttgload.h │ │ ├── ttgxvar.c │ │ ├── ttgxvar.h │ │ ├── ttinterp.c │ │ ├── ttinterp.h │ │ ├── ttkern.c │ │ ├── ttkern.h │ │ ├── ttload.c │ │ ├── ttload.h │ │ ├── ttmtx.c │ │ ├── ttmtx.h │ │ ├── ttobjs.c │ │ ├── ttobjs.h │ │ ├── ttpload.c │ │ ├── ttpload.h │ │ ├── ttpost.c │ │ ├── ttpost.h │ │ ├── ttsbit.c │ │ └── ttsbit.h │ ├── gettime.c │ ├── grlib.c │ ├── handler.c │ ├── hashtable.c │ ├── image.c │ ├── image_gif.c │ ├── image_png.c │ ├── image_xpm.c │ ├── libpng │ │ ├── Makefile │ │ ├── README │ │ ├── png.c │ │ ├── png.h │ │ ├── pngconf.h │ │ ├── pngerror.c │ │ ├── pngget.c │ │ ├── pngmem.c │ │ ├── pngpread.c │ │ ├── pngread.c │ │ ├── pngrio.c │ │ ├── pngrtran.c │ │ ├── pngrutil.c │ │ ├── pngset.c │ │ ├── pngtrans.c │ │ ├── pngwio.c │ │ ├── pngwrite.c │ │ ├── pngwtran.c │ │ └── pngwutil.c │ ├── libz │ │ ├── Makefile │ │ ├── README │ │ ├── adler32.c │ │ ├── compress.c │ │ ├── crc32.c │ │ ├── crc32.h │ │ ├── deflate.c │ │ ├── deflate.h │ │ ├── gzio.c │ │ ├── infback.c │ │ ├── inffast.c │ │ ├── inffast.h │ │ ├── inffixed.h │ │ ├── inflate.c │ │ ├── inflate.h │ │ ├── inftrees.c │ │ ├── inftrees.h │ │ ├── trees.c │ │ ├── trees.h │ │ ├── uncompr.c │ │ ├── zconf.h │ │ ├── zlib.h │ │ ├── zutil.c │ │ └── zutil.h │ ├── list.c │ ├── mem.h │ ├── pipe_api.c │ ├── pipe_mem.c │ ├── pipe_posix.c │ ├── pixman │ │ ├── Makefile │ │ ├── config.h │ │ ├── fbcompose.c │ │ ├── fbedge.c │ │ ├── fbedgeimp.h │ │ ├── fbmmx.c │ │ ├── fbmmx.h │ │ ├── fbpict.c │ │ ├── fbpict.h │ │ ├── fbtrap.c │ │ ├── icblt.c │ │ ├── icbltone.c │ │ ├── iccolor.c │ │ ├── icformat.c │ │ ├── icimage.c │ │ ├── icimage.h │ │ ├── icpixels.c │ │ ├── icrect.c │ │ ├── icrop.h │ │ ├── icstipple.c │ │ ├── ictransform.c │ │ ├── ictrap.c │ │ ├── ictri.c │ │ ├── icutil.c │ │ ├── pixman-remap.h │ │ ├── pixman-xserver-compat.h │ │ ├── pixman.h │ │ ├── pixmanint.h │ │ ├── pixregion.c │ │ ├── pixregionint.h │ │ ├── renderedge.c │ │ └── renderedge.h │ ├── pollfd.c │ ├── region.c │ ├── render.c │ ├── socket.c │ ├── socket_api.c │ ├── socket_bsd.c │ ├── socket_pipe.c │ ├── surface.c │ ├── thread.c │ ├── thread_mutex_emul.c │ ├── thread_pspdev.c │ ├── thread_pthreads.c │ ├── thread_win32.c │ ├── timer.c │ ├── window.c │ ├── xml.c │ ├── xynth.h │ └── xynth_.h ├── python │ ├── Makefile │ ├── window.c │ ├── xynth.py │ ├── xynthpy.c │ └── xynthpy.h ├── server │ ├── Makefile │ ├── cursor.h │ ├── event.c │ ├── id.c │ ├── irr.c │ ├── kbd.c │ ├── kbd_map.h │ ├── mouse.c │ ├── priority.c │ ├── server.c │ ├── server.h │ ├── single.c │ ├── socket.c │ ├── start.c │ ├── surface.c │ ├── theme.c │ ├── theme_static.h │ ├── video │ │ ├── artec │ │ │ ├── Makefile │ │ │ ├── fb.c │ │ │ ├── fbdev.h │ │ │ ├── keypad.c │ │ │ ├── server.c │ │ │ └── touch.c │ │ ├── caca │ │ │ ├── Makefile │ │ │ ├── caca.h │ │ │ ├── event.c │ │ │ ├── kbd.c │ │ │ ├── mouse.c │ │ │ └── server.c │ │ ├── fb │ │ │ ├── Makefile │ │ │ ├── fb.c │ │ │ ├── fbdev.h │ │ │ ├── kbd.c │ │ │ ├── server.c │ │ │ └── timing.c │ │ ├── gdi │ │ │ ├── Makefile │ │ │ ├── event.c │ │ │ ├── gdi.h │ │ │ ├── kbd.c │ │ │ ├── mouse.c │ │ │ ├── pthread_w32 │ │ │ │ ├── libpthreadGC2.a │ │ │ │ ├── pthread.h │ │ │ │ ├── pthreadGC2.dll │ │ │ │ ├── sched.h │ │ │ │ └── semaphore.h │ │ │ └── server.c │ │ ├── gp2x │ │ │ ├── Makefile │ │ │ ├── event.c │ │ │ ├── gp2x.h │ │ │ ├── kbd.c │ │ │ ├── mouse.c │ │ │ └── server.c │ │ ├── helper │ │ │ ├── Makefile │ │ │ ├── console.c │ │ │ ├── helper.h │ │ │ ├── irair.c │ │ │ ├── irman.c │ │ │ ├── kbd.c │ │ │ ├── kbd.h │ │ │ ├── modes.c │ │ │ ├── mouse.c │ │ │ ├── mouse.h │ │ │ ├── mouse_1.c │ │ │ ├── mouse_2.c │ │ │ ├── mtrr.c │ │ │ └── tscreen.c │ │ ├── null │ │ │ ├── Makefile │ │ │ ├── kbd.c │ │ │ ├── mouse.c │ │ │ ├── null.h │ │ │ └── server.c │ │ ├── pspdev │ │ │ ├── Makefile │ │ │ ├── event.c │ │ │ ├── kbd.c │ │ │ ├── mouse.c │ │ │ ├── pspdev.h │ │ │ └── server.c │ │ ├── sdl │ │ │ ├── Makefile │ │ │ ├── event.c │ │ │ ├── kbd.c │ │ │ ├── mouse.c │ │ │ ├── sdl.h │ │ │ └── server.c │ │ ├── svga │ │ │ ├── Makefile │ │ │ ├── kbd.c │ │ │ ├── server.c │ │ │ └── svga.h │ │ └── vesa │ │ │ ├── Makefile │ │ │ ├── kbd.c │ │ │ ├── lrmi.c │ │ │ ├── lrmi.h │ │ │ ├── server.c │ │ │ ├── vbe.h │ │ │ └── vesa.h │ ├── window.c │ ├── window_handler.c │ └── window_move_resize.c ├── themes │ ├── Makefile │ ├── keramik │ │ ├── Makefile │ │ ├── README │ │ ├── bottom-active.xpm │ │ ├── bottom-inactive.xpm │ │ ├── bottom-left-active.xpm │ │ ├── bottom-left-inactive.xpm │ │ ├── bottom-right-active.xpm │ │ ├── bottom-right-inactive.xpm │ │ ├── close-active.xpm │ │ ├── close-inactive.xpm │ │ ├── close-pressed.xpm │ │ ├── hide-active.xpm │ │ ├── hide-inactive.xpm │ │ ├── hide-pressed.xpm │ │ ├── left-active.xpm │ │ ├── left-inactive.xpm │ │ ├── maximize-active.xpm │ │ ├── maximize-inactive.xpm │ │ ├── maximize-pressed.xpm │ │ ├── menu-active.xpm │ │ ├── menu-inactive.xpm │ │ ├── menu-pressed.xpm │ │ ├── right-active.xpm │ │ ├── right-inactive.xpm │ │ ├── shade-active.xpm │ │ ├── shade-inactive.xpm │ │ ├── shade-pressed.xpm │ │ ├── stick-active.xpm │ │ ├── stick-inactive.xpm │ │ ├── stick-pressed.xpm │ │ ├── themerc │ │ ├── title-1-active.xpm │ │ ├── title-1-inactive.xpm │ │ ├── title-2-active.xpm │ │ ├── title-2-inactive.xpm │ │ ├── title-3-active.xpm │ │ ├── title-3-inactive.xpm │ │ ├── title-4-active.xpm │ │ ├── title-4-inactive.xpm │ │ ├── title-5-active.xpm │ │ ├── title-5-inactive.xpm │ │ ├── top-left-active.xpm │ │ ├── top-left-inactive.xpm │ │ ├── top-right-active.xpm │ │ └── top-right-inactive.xpm │ ├── microgui │ │ ├── Makefile │ │ ├── README │ │ ├── bottom-active.xpm │ │ ├── bottom-inactive.xpm │ │ ├── bottom-left-active.xpm │ │ ├── bottom-left-inactive.xpm │ │ ├── bottom-right-active.xpm │ │ ├── bottom-right-inactive.xpm │ │ ├── close-active.xpm │ │ ├── close-inactive.xpm │ │ ├── close-pressed.xpm │ │ ├── hide-active.xpm │ │ ├── hide-inactive.xpm │ │ ├── hide-pressed.xpm │ │ ├── left-active.xpm │ │ ├── left-inactive.xpm │ │ ├── maximize-active.xpm │ │ ├── maximize-inactive.xpm │ │ ├── maximize-pressed.xpm │ │ ├── menu-active.xpm │ │ ├── menu-inactive.xpm │ │ ├── menu-pressed.xpm │ │ ├── right-active.xpm │ │ ├── right-inactive.xpm │ │ ├── themerc │ │ ├── title-1-active.xpm │ │ ├── title-1-inactive.xpm │ │ ├── title-2-active.xpm │ │ ├── title-2-inactive.xpm │ │ ├── title-3-active.xpm │ │ ├── title-3-inactive.xpm │ │ ├── title-4-active.xpm │ │ ├── title-4-inactive.xpm │ │ ├── title-5-active.xpm │ │ ├── title-5-inactive.xpm │ │ ├── top-left-active.xpm │ │ ├── top-left-inactive.xpm │ │ ├── top-right-active.xpm │ │ └── top-right-inactive.xpm │ └── silverado │ │ ├── Makefile │ │ ├── README │ │ ├── bottom-active.xpm │ │ ├── bottom-inactive.xpm │ │ ├── bottom-left-active.xpm │ │ ├── bottom-left-inactive.xpm │ │ ├── bottom-right-active.xpm │ │ ├── bottom-right-inactive.xpm │ │ ├── close-active.xpm │ │ ├── close-inactive.xpm │ │ ├── close-pressed.xpm │ │ ├── hide-active.xpm │ │ ├── hide-inactive.xpm │ │ ├── hide-pressed.xpm │ │ ├── left-active.xpm │ │ ├── left-inactive.xpm │ │ ├── maximize-active.xpm │ │ ├── maximize-inactive.xpm │ │ ├── maximize-pressed.xpm │ │ ├── menu-active.xpm │ │ ├── menu-inactive.xpm │ │ ├── menu-pressed.xpm │ │ ├── right-active.xpm │ │ ├── right-inactive.xpm │ │ ├── themerc │ │ ├── title-1-active.xpm │ │ ├── title-1-inactive.xpm │ │ ├── title-2-active.xpm │ │ ├── title-2-inactive.xpm │ │ ├── title-3-active.xpm │ │ ├── title-3-inactive.xpm │ │ ├── title-4-active.xpm │ │ ├── title-4-inactive.xpm │ │ ├── title-5-active.xpm │ │ ├── title-5-inactive.xpm │ │ ├── top-left-active.xpm │ │ ├── top-left-inactive.xpm │ │ ├── top-right-active.xpm │ │ └── top-right-inactive.xpm ├── widget │ ├── Makefile │ ├── button.c │ ├── checkbox.c │ ├── clistbox.c │ ├── editbox.c │ ├── effect.c │ ├── frame.c │ ├── listbox.c │ ├── object.c │ ├── progressbar.c │ ├── pushbutton.c │ ├── scrollbuffer.c │ ├── signal.c │ ├── textbox.c │ ├── toolbar.c │ ├── widget.h │ ├── widgetc │ │ ├── Makefile │ │ ├── code.c │ │ ├── code.h │ │ ├── header.c │ │ ├── header.h │ │ ├── list.c │ │ ├── list.h │ │ ├── widgetc.c │ │ ├── xml.c │ │ └── xml.h │ ├── widgetr │ │ ├── Makefile │ │ ├── README.script │ │ ├── code.c │ │ ├── code.h │ │ ├── js.c │ │ ├── js.h │ │ ├── widgetr.c │ │ └── widgetr.h │ └── window.c └── widgetoo │ ├── Makefile │ ├── README │ ├── button.cpp │ ├── frame.cpp │ ├── handler.cpp │ ├── layout.cpp │ ├── object.cpp │ ├── rect.cpp │ ├── widgetoo.h │ └── window.cpp ├── tools ├── bdf │ ├── bdf2c.c │ └── bdf2h.c ├── config │ ├── Kconfig-language.txt │ ├── Makefile │ ├── conf.c │ ├── confdata.c │ ├── expr.c │ ├── expr.h │ ├── lex.zconf.c │ ├── lkc.h │ ├── lkc_proto.h │ ├── lxdialog │ │ ├── BIG.FAT.WARNING │ │ ├── Makefile │ │ ├── checklist.c │ │ ├── colors.h │ │ ├── dialog.h │ │ ├── inputbox.c │ │ ├── menubox.c │ │ ├── textbox.c │ │ ├── util.c │ │ └── yesno.c │ ├── mconf.c │ ├── menu.c │ ├── mkconfigs │ ├── symbol.c │ ├── util.c │ ├── zconf.gperf │ ├── zconf.hash.c │ ├── zconf.l │ ├── zconf.tab.c │ └── zconf.y ├── gp2x │ └── xynth.png ├── kmap │ ├── Makefile │ ├── map2h.c │ ├── trq.map │ │ ├── linux-keys-bare.inc │ │ ├── linux-with-alt-and-altgr.inc │ │ └── trq.map │ └── us.map │ │ ├── compose.latin1 │ │ ├── euro1.map │ │ ├── linux-keys-bare.inc │ │ ├── linux-with-alt-and-altgr.inc │ │ ├── qwerty-layout.inc │ │ └── us.map ├── optimize │ ├── Makefile │ ├── optim.sh │ └── xynth.sh ├── pspdev │ ├── icon0.png │ └── pic1.png └── theme │ ├── Makefile │ └── theme.c └── xynth.pc.in /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/AUTHORS -------------------------------------------------------------------------------- /BUGS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/BUGS -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/ChangeLog -------------------------------------------------------------------------------- /FAQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/FAQ -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/Makefile.lib -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/README -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/TODO -------------------------------------------------------------------------------- /configs/Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/configs/Config -------------------------------------------------------------------------------- /configs/linux-single.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/configs/linux-single.config -------------------------------------------------------------------------------- /configs/linux.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/configs/linux.config -------------------------------------------------------------------------------- /configs/mingw.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/configs/mingw.config -------------------------------------------------------------------------------- /configs/pspdev.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/configs/pspdev.config -------------------------------------------------------------------------------- /demo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/demo/Makefile -------------------------------------------------------------------------------- /demo/child/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/demo/child/Makefile -------------------------------------------------------------------------------- /demo/child/child.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/demo/child/child.c -------------------------------------------------------------------------------- /demo/desktop/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/demo/desktop/Makefile -------------------------------------------------------------------------------- /demo/desktop/cfg/desktop.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/demo/desktop/cfg/desktop.cfg -------------------------------------------------------------------------------- /demo/desktop/desktop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/demo/desktop/desktop.c -------------------------------------------------------------------------------- /demo/desktop/desktop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/demo/desktop/desktop.h -------------------------------------------------------------------------------- /demo/desktop/img/icons/aim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/demo/desktop/img/icons/aim.png -------------------------------------------------------------------------------- /demo/desktop/img/icons/app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/demo/desktop/img/icons/app.png -------------------------------------------------------------------------------- /demo/desktop/img/icons/exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/demo/desktop/img/icons/exit.png -------------------------------------------------------------------------------- /demo/desktop/img/icons/gimp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/demo/desktop/img/icons/gimp.png -------------------------------------------------------------------------------- /demo/desktop/img/icons/lbreakout2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/demo/desktop/img/icons/lbreakout2.png -------------------------------------------------------------------------------- /demo/desktop/img/icons/links.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/demo/desktop/img/icons/links.png -------------------------------------------------------------------------------- /demo/desktop/img/icons/load.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/demo/desktop/img/icons/load.png -------------------------------------------------------------------------------- /demo/desktop/img/icons/ltris.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/demo/desktop/img/icons/ltris.png -------------------------------------------------------------------------------- /demo/desktop/img/icons/mines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/demo/desktop/img/icons/mines.png -------------------------------------------------------------------------------- /demo/desktop/img/icons/sdl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/demo/desktop/img/icons/sdl.png -------------------------------------------------------------------------------- /demo/desktop/img/icons/terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/demo/desktop/img/icons/terminal.png -------------------------------------------------------------------------------- /demo/desktop/img/icons/xchat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/demo/desktop/img/icons/xchat.png -------------------------------------------------------------------------------- /demo/desktop/img/icons/xynth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/demo/desktop/img/icons/xynth.png -------------------------------------------------------------------------------- /demo/desktop/img/widget/button3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/demo/desktop/img/widget/button3.png -------------------------------------------------------------------------------- /demo/desktop/img/widget/button4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/demo/desktop/img/widget/button4.png -------------------------------------------------------------------------------- /demo/desktop/img/widget/taskbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/demo/desktop/img/widget/taskbar.png -------------------------------------------------------------------------------- /demo/desktop/img/wpaper/xynth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/demo/desktop/img/wpaper/xynth.png -------------------------------------------------------------------------------- /demo/desktop/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/demo/desktop/main.c -------------------------------------------------------------------------------- /demo/desktop/menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/demo/desktop/menu.c -------------------------------------------------------------------------------- /demo/desktop/taskbar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/demo/desktop/taskbar.c -------------------------------------------------------------------------------- /demo/guioo/Demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/demo/guioo/Demo.cpp -------------------------------------------------------------------------------- /demo/guioo/Demo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/demo/guioo/Demo.h -------------------------------------------------------------------------------- /demo/guioo/DesktopWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/demo/guioo/DesktopWindow.cpp -------------------------------------------------------------------------------- /demo/guioo/DesktopWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/demo/guioo/DesktopWindow.h -------------------------------------------------------------------------------- /demo/guioo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/demo/guioo/Makefile -------------------------------------------------------------------------------- /demo/guioo/ShutdownWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/demo/guioo/ShutdownWindow.cpp -------------------------------------------------------------------------------- /demo/guioo/ShutdownWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/demo/guioo/ShutdownWindow.h -------------------------------------------------------------------------------- /demo/guioo/SlideWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/demo/guioo/SlideWindow.cpp -------------------------------------------------------------------------------- /demo/guioo/SlideWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/demo/guioo/SlideWindow.h -------------------------------------------------------------------------------- /demo/guioo/StartSplashWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/demo/guioo/StartSplashWindow.cpp -------------------------------------------------------------------------------- /demo/guioo/StartSplashWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/demo/guioo/StartSplashWindow.h -------------------------------------------------------------------------------- /demo/guioo/Thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/demo/guioo/Thread.cpp -------------------------------------------------------------------------------- /demo/guioo/Thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/demo/guioo/Thread.h -------------------------------------------------------------------------------- /demo/guioo/data/gui.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/demo/guioo/data/gui.xml -------------------------------------------------------------------------------- /demo/guioo/data/logo01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/demo/guioo/data/logo01.png -------------------------------------------------------------------------------- /demo/guioo/data/logo02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/demo/guioo/data/logo02.png -------------------------------------------------------------------------------- /demo/guioo/data/logo03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/demo/guioo/data/logo03.png -------------------------------------------------------------------------------- /demo/guioo/data/logo04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/demo/guioo/data/logo04.png -------------------------------------------------------------------------------- /demo/guioo/data/logo05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/demo/guioo/data/logo05.png -------------------------------------------------------------------------------- /demo/guioo/data/logo06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/demo/guioo/data/logo06.png -------------------------------------------------------------------------------- /demo/guioo/data/logo07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/demo/guioo/data/logo07.png -------------------------------------------------------------------------------- /demo/guioo/data/logo08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/demo/guioo/data/logo08.png -------------------------------------------------------------------------------- /demo/guioo/data/logo09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/demo/guioo/data/logo09.png -------------------------------------------------------------------------------- /demo/guioo/data/logo10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/demo/guioo/data/logo10.png -------------------------------------------------------------------------------- /demo/guioo/data/logo11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/demo/guioo/data/logo11.png -------------------------------------------------------------------------------- /demo/guioo/data/logo12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/demo/guioo/data/logo12.png -------------------------------------------------------------------------------- /demo/guioo/data/slide-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/demo/guioo/data/slide-1.png -------------------------------------------------------------------------------- /demo/guioo/data/slide-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/demo/guioo/data/slide-10.png -------------------------------------------------------------------------------- /demo/guioo/data/slide-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/demo/guioo/data/slide-11.png -------------------------------------------------------------------------------- /demo/guioo/data/slide-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/demo/guioo/data/slide-2.png -------------------------------------------------------------------------------- /demo/guioo/data/slide-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/demo/guioo/data/slide-3.png -------------------------------------------------------------------------------- /demo/guioo/data/slide-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/demo/guioo/data/slide-4.png -------------------------------------------------------------------------------- /demo/guioo/data/slide-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/demo/guioo/data/slide-5.png -------------------------------------------------------------------------------- /demo/guioo/data/slide-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/demo/guioo/data/slide-6.png -------------------------------------------------------------------------------- /demo/guioo/data/slide-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/demo/guioo/data/slide-7.png -------------------------------------------------------------------------------- /demo/guioo/data/slide-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/demo/guioo/data/slide-8.png -------------------------------------------------------------------------------- /demo/guioo/data/slide-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/demo/guioo/data/slide-9.png -------------------------------------------------------------------------------- /demo/hide/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/demo/hide/Makefile -------------------------------------------------------------------------------- /demo/hide/hide.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/demo/hide/hide.c -------------------------------------------------------------------------------- /demo/img/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/demo/img/Makefile -------------------------------------------------------------------------------- /demo/img/img.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/demo/img/img.c -------------------------------------------------------------------------------- /demo/load/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/demo/load/Makefile -------------------------------------------------------------------------------- /demo/load/load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/demo/load/load.c -------------------------------------------------------------------------------- /demo/mines/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/demo/mines/Makefile -------------------------------------------------------------------------------- /demo/mines/mines.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/demo/mines/mines.cpp -------------------------------------------------------------------------------- /demo/object/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/demo/object/Makefile -------------------------------------------------------------------------------- /demo/object/object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/demo/object/object.c -------------------------------------------------------------------------------- /demo/onscreenkeyboard/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/demo/onscreenkeyboard/Makefile -------------------------------------------------------------------------------- /demo/onscreenkeyboard/onscreenkeyboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/demo/onscreenkeyboard/onscreenkeyboard.c -------------------------------------------------------------------------------- /demo/region/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/demo/region/Makefile -------------------------------------------------------------------------------- /demo/region/region.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/demo/region/region.c -------------------------------------------------------------------------------- /demo/simple/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/demo/simple/Makefile -------------------------------------------------------------------------------- /demo/simple/simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/demo/simple/simple.c -------------------------------------------------------------------------------- /demo/temp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/demo/temp/Makefile -------------------------------------------------------------------------------- /demo/temp/temp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/demo/temp/temp.c -------------------------------------------------------------------------------- /demo/term/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/demo/term/Makefile -------------------------------------------------------------------------------- /demo/term/term.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/demo/term/term.c -------------------------------------------------------------------------------- /demo/timer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/demo/timer/Makefile -------------------------------------------------------------------------------- /demo/timer/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/demo/timer/timer.c -------------------------------------------------------------------------------- /demo/widgetx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/demo/widgetx/Makefile -------------------------------------------------------------------------------- /demo/widgetx/widgetx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/demo/widgetx/widgetx.c -------------------------------------------------------------------------------- /demo/widgetx/widgetx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/demo/widgetx/widgetx.js -------------------------------------------------------------------------------- /demo/widgetx/widgetx.xws: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/demo/widgetx/widgetx.xws -------------------------------------------------------------------------------- /demo/xdialog/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/demo/xdialog/Makefile -------------------------------------------------------------------------------- /demo/xdialog/msgbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/demo/xdialog/msgbox.c -------------------------------------------------------------------------------- /demo/xdialog/xdialog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/demo/xdialog/xdialog.c -------------------------------------------------------------------------------- /demo/xdialog/xdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/demo/xdialog/xdialog.h -------------------------------------------------------------------------------- /demo/xdialog/yesno.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/demo/xdialog/yesno.c -------------------------------------------------------------------------------- /demo/xynthlogout/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/demo/xynthlogout/Makefile -------------------------------------------------------------------------------- /demo/xynthlogout/xynthlogout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/demo/xynthlogout/xynthlogout.c -------------------------------------------------------------------------------- /description-pak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/description-pak -------------------------------------------------------------------------------- /doxygen.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/doxygen.cfg -------------------------------------------------------------------------------- /ports/cairo/cairo-1.4.12-xynth.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/ports/cairo/cairo-1.4.12-xynth.diff -------------------------------------------------------------------------------- /ports/gtk/gtk+-2.10.14/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/ports/gtk/gtk+-2.10.14/Makefile.am -------------------------------------------------------------------------------- /ports/gtk/gtk+-2.10.14/gdkcolor-xynth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/ports/gtk/gtk+-2.10.14/gdkcolor-xynth.c -------------------------------------------------------------------------------- /ports/gtk/gtk+-2.10.14/gdkcursor-xynth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/ports/gtk/gtk+-2.10.14/gdkcursor-xynth.c -------------------------------------------------------------------------------- /ports/gtk/gtk+-2.10.14/gdkdisplay-xynth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/ports/gtk/gtk+-2.10.14/gdkdisplay-xynth.c -------------------------------------------------------------------------------- /ports/gtk/gtk+-2.10.14/gdkdnd-xynth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/ports/gtk/gtk+-2.10.14/gdkdnd-xynth.c -------------------------------------------------------------------------------- /ports/gtk/gtk+-2.10.14/gdkdrawable-xynth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/ports/gtk/gtk+-2.10.14/gdkdrawable-xynth.c -------------------------------------------------------------------------------- /ports/gtk/gtk+-2.10.14/gdkevents-xynth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/ports/gtk/gtk+-2.10.14/gdkevents-xynth.c -------------------------------------------------------------------------------- /ports/gtk/gtk+-2.10.14/gdkgc-xynth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/ports/gtk/gtk+-2.10.14/gdkgc-xynth.c -------------------------------------------------------------------------------- /ports/gtk/gtk+-2.10.14/gdkgeometry-xynth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/ports/gtk/gtk+-2.10.14/gdkgeometry-xynth.c -------------------------------------------------------------------------------- /ports/gtk/gtk+-2.10.14/gdkglobals-xynth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/ports/gtk/gtk+-2.10.14/gdkglobals-xynth.c -------------------------------------------------------------------------------- /ports/gtk/gtk+-2.10.14/gdkimage-xynth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/ports/gtk/gtk+-2.10.14/gdkimage-xynth.c -------------------------------------------------------------------------------- /ports/gtk/gtk+-2.10.14/gdkinput-xynth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/ports/gtk/gtk+-2.10.14/gdkinput-xynth.c -------------------------------------------------------------------------------- /ports/gtk/gtk+-2.10.14/gdkkeys-xynth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/ports/gtk/gtk+-2.10.14/gdkkeys-xynth.c -------------------------------------------------------------------------------- /ports/gtk/gtk+-2.10.14/gdkmain-xynth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/ports/gtk/gtk+-2.10.14/gdkmain-xynth.c -------------------------------------------------------------------------------- /ports/gtk/gtk+-2.10.14/gdkpixmap-xynth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/ports/gtk/gtk+-2.10.14/gdkpixmap-xynth.c -------------------------------------------------------------------------------- /ports/gtk/gtk+-2.10.14/gdkscreen-xynth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/ports/gtk/gtk+-2.10.14/gdkscreen-xynth.c -------------------------------------------------------------------------------- /ports/gtk/gtk+-2.10.14/gdkvisual-xynth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/ports/gtk/gtk+-2.10.14/gdkvisual-xynth.c -------------------------------------------------------------------------------- /ports/gtk/gtk+-2.10.14/gdkwindow-xynth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/ports/gtk/gtk+-2.10.14/gdkwindow-xynth.c -------------------------------------------------------------------------------- /ports/gtk/gtk+-2.10.14/gdkxynth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/ports/gtk/gtk+-2.10.14/gdkxynth.c -------------------------------------------------------------------------------- /ports/gtk/gtk+-2.10.14/gdkxynth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/ports/gtk/gtk+-2.10.14/gdkxynth.h -------------------------------------------------------------------------------- /ports/gtk/gtk+-2.10.14/x-cursors.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/ports/gtk/gtk+-2.10.14/x-cursors.xbm -------------------------------------------------------------------------------- /ports/gtk/gtk+-2.10.x-xynth.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/ports/gtk/gtk+-2.10.x-xynth.diff -------------------------------------------------------------------------------- /ports/gtk/gtk+-2.4.14-xynth.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/ports/gtk/gtk+-2.4.14-xynth.diff -------------------------------------------------------------------------------- /ports/kaffe/kaffe-1.1.7-xynth.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/ports/kaffe/kaffe-1.1.7-xynth.diff -------------------------------------------------------------------------------- /ports/kaffe/xynth/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/ports/kaffe/xynth/Makefile.am -------------------------------------------------------------------------------- /ports/kaffe/xynth/color.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/ports/kaffe/xynth/color.c -------------------------------------------------------------------------------- /ports/kaffe/xynth/event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/ports/kaffe/xynth/event.c -------------------------------------------------------------------------------- /ports/kaffe/xynth/font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/ports/kaffe/xynth/font.c -------------------------------------------------------------------------------- /ports/kaffe/xynth/graphic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/ports/kaffe/xynth/graphic.c -------------------------------------------------------------------------------- /ports/kaffe/xynth/image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/ports/kaffe/xynth/image.c -------------------------------------------------------------------------------- /ports/kaffe/xynth/toolkit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/ports/kaffe/xynth/toolkit.c -------------------------------------------------------------------------------- /ports/kaffe/xynth/toolkit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/ports/kaffe/xynth/toolkit.h -------------------------------------------------------------------------------- /ports/kaffe/xynth/window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/ports/kaffe/xynth/window.c -------------------------------------------------------------------------------- /ports/links/links-2.1pre31-xynth.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/ports/links/links-2.1pre31-xynth.diff -------------------------------------------------------------------------------- /ports/links/xynth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/ports/links/xynth.c -------------------------------------------------------------------------------- /ports/mplayer/MPlayer-1.0rc2-xynth.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/ports/mplayer/MPlayer-1.0rc2-xynth.diff -------------------------------------------------------------------------------- /ports/mplayer/vo_xynth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/ports/mplayer/vo_xynth.c -------------------------------------------------------------------------------- /ports/ports.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/ports/ports.sh -------------------------------------------------------------------------------- /ports/sdl/SDL-1.2.13-xynth.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/ports/sdl/SDL-1.2.13-xynth.diff -------------------------------------------------------------------------------- /ports/sdl/xynth/SDL_xynth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/ports/sdl/xynth/SDL_xynth.h -------------------------------------------------------------------------------- /ports/sdl/xynth/SDL_xynthcursor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/ports/sdl/xynth/SDL_xynthcursor.c -------------------------------------------------------------------------------- /ports/sdl/xynth/SDL_xynthevent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/ports/sdl/xynth/SDL_xynthevent.c -------------------------------------------------------------------------------- /ports/sdl/xynth/SDL_xynthgamma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/ports/sdl/xynth/SDL_xynthgamma.c -------------------------------------------------------------------------------- /ports/sdl/xynth/SDL_xynthgl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/ports/sdl/xynth/SDL_xynthgl.c -------------------------------------------------------------------------------- /ports/sdl/xynth/SDL_xynthhw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/ports/sdl/xynth/SDL_xynthhw.c -------------------------------------------------------------------------------- /ports/sdl/xynth/SDL_xynthvideo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/ports/sdl/xynth/SDL_xynthvideo.c -------------------------------------------------------------------------------- /ports/sdl/xynth/SDL_xynthwm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/ports/sdl/xynth/SDL_xynthwm.c -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/configs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/configs/Makefile -------------------------------------------------------------------------------- /src/configs/xynth.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/configs/xynth.conf -------------------------------------------------------------------------------- /src/fonts/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/fonts/Makefile -------------------------------------------------------------------------------- /src/fonts/arial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/fonts/arial.ttf -------------------------------------------------------------------------------- /src/fonts/trebuc.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/fonts/trebuc.ttf -------------------------------------------------------------------------------- /src/fonts/trebucbd.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/fonts/trebucbd.ttf -------------------------------------------------------------------------------- /src/fonts/veramono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/fonts/veramono.ttf -------------------------------------------------------------------------------- /src/guioo/GuiAnimation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/guioo/GuiAnimation.cpp -------------------------------------------------------------------------------- /src/guioo/GuiAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/guioo/GuiAnimation.h -------------------------------------------------------------------------------- /src/guioo/GuiButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/guioo/GuiButton.cpp -------------------------------------------------------------------------------- /src/guioo/GuiButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/guioo/GuiButton.h -------------------------------------------------------------------------------- /src/guioo/GuiCheckBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/guioo/GuiCheckBox.cpp -------------------------------------------------------------------------------- /src/guioo/GuiCheckBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/guioo/GuiCheckBox.h -------------------------------------------------------------------------------- /src/guioo/GuiEditBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/guioo/GuiEditBox.cpp -------------------------------------------------------------------------------- /src/guioo/GuiEditBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/guioo/GuiEditBox.h -------------------------------------------------------------------------------- /src/guioo/GuiEffectWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/guioo/GuiEffectWindow.cpp -------------------------------------------------------------------------------- /src/guioo/GuiEffectWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/guioo/GuiEffectWindow.h -------------------------------------------------------------------------------- /src/guioo/GuiFrame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/guioo/GuiFrame.cpp -------------------------------------------------------------------------------- /src/guioo/GuiFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/guioo/GuiFrame.h -------------------------------------------------------------------------------- /src/guioo/GuiImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/guioo/GuiImage.cpp -------------------------------------------------------------------------------- /src/guioo/GuiImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/guioo/GuiImage.h -------------------------------------------------------------------------------- /src/guioo/GuiImageCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/guioo/GuiImageCache.cpp -------------------------------------------------------------------------------- /src/guioo/GuiImageCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/guioo/GuiImageCache.h -------------------------------------------------------------------------------- /src/guioo/GuiMultiTextBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/guioo/GuiMultiTextBox.cpp -------------------------------------------------------------------------------- /src/guioo/GuiMultiTextBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/guioo/GuiMultiTextBox.h -------------------------------------------------------------------------------- /src/guioo/GuiPrimitive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/guioo/GuiPrimitive.cpp -------------------------------------------------------------------------------- /src/guioo/GuiPrimitive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/guioo/GuiPrimitive.h -------------------------------------------------------------------------------- /src/guioo/GuiProgressBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/guioo/GuiProgressBar.cpp -------------------------------------------------------------------------------- /src/guioo/GuiProgressBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/guioo/GuiProgressBar.h -------------------------------------------------------------------------------- /src/guioo/GuiRectangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/guioo/GuiRectangle.cpp -------------------------------------------------------------------------------- /src/guioo/GuiRectangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/guioo/GuiRectangle.h -------------------------------------------------------------------------------- /src/guioo/GuiScrollBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/guioo/GuiScrollBar.cpp -------------------------------------------------------------------------------- /src/guioo/GuiScrollBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/guioo/GuiScrollBar.h -------------------------------------------------------------------------------- /src/guioo/GuiScrollWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/guioo/GuiScrollWindow.cpp -------------------------------------------------------------------------------- /src/guioo/GuiScrollWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/guioo/GuiScrollWindow.h -------------------------------------------------------------------------------- /src/guioo/GuiSurface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/guioo/GuiSurface.cpp -------------------------------------------------------------------------------- /src/guioo/GuiSurface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/guioo/GuiSurface.h -------------------------------------------------------------------------------- /src/guioo/GuiTemplate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/guioo/GuiTemplate.cpp -------------------------------------------------------------------------------- /src/guioo/GuiTemplate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/guioo/GuiTemplate.h -------------------------------------------------------------------------------- /src/guioo/GuiTextBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/guioo/GuiTextBox.cpp -------------------------------------------------------------------------------- /src/guioo/GuiTextBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/guioo/GuiTextBox.h -------------------------------------------------------------------------------- /src/guioo/GuiTextMatrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/guioo/GuiTextMatrix.cpp -------------------------------------------------------------------------------- /src/guioo/GuiTextMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/guioo/GuiTextMatrix.h -------------------------------------------------------------------------------- /src/guioo/GuiWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/guioo/GuiWindow.cpp -------------------------------------------------------------------------------- /src/guioo/GuiWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/guioo/GuiWindow.h -------------------------------------------------------------------------------- /src/guioo/GuiWindowWorker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/guioo/GuiWindowWorker.cpp -------------------------------------------------------------------------------- /src/guioo/GuiWindowWorker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/guioo/GuiWindowWorker.h -------------------------------------------------------------------------------- /src/guioo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/guioo/Makefile -------------------------------------------------------------------------------- /src/guioo/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/guioo/README -------------------------------------------------------------------------------- /src/lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/Makefile -------------------------------------------------------------------------------- /src/lib/alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/alloc.c -------------------------------------------------------------------------------- /src/lib/child.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/child.c -------------------------------------------------------------------------------- /src/lib/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/config.c -------------------------------------------------------------------------------- /src/lib/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/debug.c -------------------------------------------------------------------------------- /src/lib/driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/driver.c -------------------------------------------------------------------------------- /src/lib/event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/event.c -------------------------------------------------------------------------------- /src/lib/eventq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/eventq.c -------------------------------------------------------------------------------- /src/lib/expat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/expat/Makefile -------------------------------------------------------------------------------- /src/lib/expat/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/expat/README -------------------------------------------------------------------------------- /src/lib/expat/ascii.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/expat/ascii.h -------------------------------------------------------------------------------- /src/lib/expat/asciitab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/expat/asciitab.h -------------------------------------------------------------------------------- /src/lib/expat/expat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/expat/expat.h -------------------------------------------------------------------------------- /src/lib/expat/expat_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/expat/expat_config.h -------------------------------------------------------------------------------- /src/lib/expat/expat_external.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/expat/expat_external.h -------------------------------------------------------------------------------- /src/lib/expat/iasciitab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/expat/iasciitab.h -------------------------------------------------------------------------------- /src/lib/expat/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/expat/internal.h -------------------------------------------------------------------------------- /src/lib/expat/latin1tab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/expat/latin1tab.h -------------------------------------------------------------------------------- /src/lib/expat/nametab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/expat/nametab.h -------------------------------------------------------------------------------- /src/lib/expat/utf8tab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/expat/utf8tab.h -------------------------------------------------------------------------------- /src/lib/expat/xmlparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/expat/xmlparse.c -------------------------------------------------------------------------------- /src/lib/expat/xmlrole.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/expat/xmlrole.c -------------------------------------------------------------------------------- /src/lib/expat/xmlrole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/expat/xmlrole.h -------------------------------------------------------------------------------- /src/lib/expat/xmltok.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/expat/xmltok.c -------------------------------------------------------------------------------- /src/lib/expat/xmltok.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/expat/xmltok.h -------------------------------------------------------------------------------- /src/lib/expat/xmltok_impl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/expat/xmltok_impl.c -------------------------------------------------------------------------------- /src/lib/expat/xmltok_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/expat/xmltok_impl.h -------------------------------------------------------------------------------- /src/lib/expat/xmltok_ns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/expat/xmltok_ns.c -------------------------------------------------------------------------------- /src/lib/font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/font.c -------------------------------------------------------------------------------- /src/lib/freetype2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/Makefile -------------------------------------------------------------------------------- /src/lib/freetype2/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/README -------------------------------------------------------------------------------- /src/lib/freetype2/afangles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/afangles.c -------------------------------------------------------------------------------- /src/lib/freetype2/afangles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/afangles.h -------------------------------------------------------------------------------- /src/lib/freetype2/afcjk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/afcjk.c -------------------------------------------------------------------------------- /src/lib/freetype2/afcjk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/afcjk.h -------------------------------------------------------------------------------- /src/lib/freetype2/afdummy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/afdummy.c -------------------------------------------------------------------------------- /src/lib/freetype2/afdummy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/afdummy.h -------------------------------------------------------------------------------- /src/lib/freetype2/aferrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/aferrors.h -------------------------------------------------------------------------------- /src/lib/freetype2/afglobal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/afglobal.c -------------------------------------------------------------------------------- /src/lib/freetype2/afglobal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/afglobal.h -------------------------------------------------------------------------------- /src/lib/freetype2/afhints.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/afhints.c -------------------------------------------------------------------------------- /src/lib/freetype2/afhints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/afhints.h -------------------------------------------------------------------------------- /src/lib/freetype2/afindic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/afindic.c -------------------------------------------------------------------------------- /src/lib/freetype2/afindic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/afindic.h -------------------------------------------------------------------------------- /src/lib/freetype2/aflatin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/aflatin.c -------------------------------------------------------------------------------- /src/lib/freetype2/aflatin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/aflatin.h -------------------------------------------------------------------------------- /src/lib/freetype2/afloader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/afloader.c -------------------------------------------------------------------------------- /src/lib/freetype2/afloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/afloader.h -------------------------------------------------------------------------------- /src/lib/freetype2/afmodule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/afmodule.c -------------------------------------------------------------------------------- /src/lib/freetype2/afmodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/afmodule.h -------------------------------------------------------------------------------- /src/lib/freetype2/aftypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/aftypes.h -------------------------------------------------------------------------------- /src/lib/freetype2/autofit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/autofit.c -------------------------------------------------------------------------------- /src/lib/freetype2/ftbase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/ftbase.c -------------------------------------------------------------------------------- /src/lib/freetype2/ftbitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/ftbitmap.c -------------------------------------------------------------------------------- /src/lib/freetype2/ftcalc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/ftcalc.c -------------------------------------------------------------------------------- /src/lib/freetype2/ftdbgmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/ftdbgmem.c -------------------------------------------------------------------------------- /src/lib/freetype2/ftdebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/ftdebug.c -------------------------------------------------------------------------------- /src/lib/freetype2/ftgloadr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/ftgloadr.c -------------------------------------------------------------------------------- /src/lib/freetype2/ftglyph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/ftglyph.c -------------------------------------------------------------------------------- /src/lib/freetype2/ftgrays.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/ftgrays.c -------------------------------------------------------------------------------- /src/lib/freetype2/ftgrays.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/ftgrays.h -------------------------------------------------------------------------------- /src/lib/freetype2/ftinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/ftinit.c -------------------------------------------------------------------------------- /src/lib/freetype2/ftmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/ftmac.c -------------------------------------------------------------------------------- /src/lib/freetype2/ftnames.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/ftnames.c -------------------------------------------------------------------------------- /src/lib/freetype2/ftobjs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/ftobjs.c -------------------------------------------------------------------------------- /src/lib/freetype2/ftoutln.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/ftoutln.c -------------------------------------------------------------------------------- /src/lib/freetype2/ftrfork.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/ftrfork.c -------------------------------------------------------------------------------- /src/lib/freetype2/ftsmerrs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/ftsmerrs.h -------------------------------------------------------------------------------- /src/lib/freetype2/ftsmooth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/ftsmooth.c -------------------------------------------------------------------------------- /src/lib/freetype2/ftsmooth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/ftsmooth.h -------------------------------------------------------------------------------- /src/lib/freetype2/ftstream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/ftstream.c -------------------------------------------------------------------------------- /src/lib/freetype2/ftsystem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/ftsystem.c -------------------------------------------------------------------------------- /src/lib/freetype2/fttrigon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/fttrigon.c -------------------------------------------------------------------------------- /src/lib/freetype2/ftutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/ftutil.c -------------------------------------------------------------------------------- /src/lib/freetype2/include/freetype/config/ftconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/include/freetype/config/ftconfig.h -------------------------------------------------------------------------------- /src/lib/freetype2/include/freetype/config/ftheader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/include/freetype/config/ftheader.h -------------------------------------------------------------------------------- /src/lib/freetype2/include/freetype/config/ftmodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/include/freetype/config/ftmodule.h -------------------------------------------------------------------------------- /src/lib/freetype2/include/freetype/config/ftoption.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/include/freetype/config/ftoption.h -------------------------------------------------------------------------------- /src/lib/freetype2/include/freetype/config/ftstdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/include/freetype/config/ftstdlib.h -------------------------------------------------------------------------------- /src/lib/freetype2/include/freetype/freetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/include/freetype/freetype.h -------------------------------------------------------------------------------- /src/lib/freetype2/include/freetype/ftbbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/include/freetype/ftbbox.h -------------------------------------------------------------------------------- /src/lib/freetype2/include/freetype/ftbdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/include/freetype/ftbdf.h -------------------------------------------------------------------------------- /src/lib/freetype2/include/freetype/ftbitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/include/freetype/ftbitmap.h -------------------------------------------------------------------------------- /src/lib/freetype2/include/freetype/ftcache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/include/freetype/ftcache.h -------------------------------------------------------------------------------- /src/lib/freetype2/include/freetype/ftchapters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/include/freetype/ftchapters.h -------------------------------------------------------------------------------- /src/lib/freetype2/include/freetype/fterrdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/include/freetype/fterrdef.h -------------------------------------------------------------------------------- /src/lib/freetype2/include/freetype/fterrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/include/freetype/fterrors.h -------------------------------------------------------------------------------- /src/lib/freetype2/include/freetype/ftgasp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/include/freetype/ftgasp.h -------------------------------------------------------------------------------- /src/lib/freetype2/include/freetype/ftglyph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/include/freetype/ftglyph.h -------------------------------------------------------------------------------- /src/lib/freetype2/include/freetype/ftgxval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/include/freetype/ftgxval.h -------------------------------------------------------------------------------- /src/lib/freetype2/include/freetype/ftgzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/include/freetype/ftgzip.h -------------------------------------------------------------------------------- /src/lib/freetype2/include/freetype/ftimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/include/freetype/ftimage.h -------------------------------------------------------------------------------- /src/lib/freetype2/include/freetype/ftincrem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/include/freetype/ftincrem.h -------------------------------------------------------------------------------- /src/lib/freetype2/include/freetype/ftlcdfil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/include/freetype/ftlcdfil.h -------------------------------------------------------------------------------- /src/lib/freetype2/include/freetype/ftlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/include/freetype/ftlist.h -------------------------------------------------------------------------------- /src/lib/freetype2/include/freetype/ftlzw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/include/freetype/ftlzw.h -------------------------------------------------------------------------------- /src/lib/freetype2/include/freetype/ftmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/include/freetype/ftmac.h -------------------------------------------------------------------------------- /src/lib/freetype2/include/freetype/ftmm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/include/freetype/ftmm.h -------------------------------------------------------------------------------- /src/lib/freetype2/include/freetype/ftmodapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/include/freetype/ftmodapi.h -------------------------------------------------------------------------------- /src/lib/freetype2/include/freetype/ftmoderr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/include/freetype/ftmoderr.h -------------------------------------------------------------------------------- /src/lib/freetype2/include/freetype/ftotval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/include/freetype/ftotval.h -------------------------------------------------------------------------------- /src/lib/freetype2/include/freetype/ftoutln.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/include/freetype/ftoutln.h -------------------------------------------------------------------------------- /src/lib/freetype2/include/freetype/ftpfr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/include/freetype/ftpfr.h -------------------------------------------------------------------------------- /src/lib/freetype2/include/freetype/ftrender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/include/freetype/ftrender.h -------------------------------------------------------------------------------- /src/lib/freetype2/include/freetype/ftsizes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/include/freetype/ftsizes.h -------------------------------------------------------------------------------- /src/lib/freetype2/include/freetype/ftsnames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/include/freetype/ftsnames.h -------------------------------------------------------------------------------- /src/lib/freetype2/include/freetype/ftstroke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/include/freetype/ftstroke.h -------------------------------------------------------------------------------- /src/lib/freetype2/include/freetype/ftsynth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/include/freetype/ftsynth.h -------------------------------------------------------------------------------- /src/lib/freetype2/include/freetype/ftsystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/include/freetype/ftsystem.h -------------------------------------------------------------------------------- /src/lib/freetype2/include/freetype/fttrigon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/include/freetype/fttrigon.h -------------------------------------------------------------------------------- /src/lib/freetype2/include/freetype/fttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/include/freetype/fttypes.h -------------------------------------------------------------------------------- /src/lib/freetype2/include/freetype/ftwinfnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/include/freetype/ftwinfnt.h -------------------------------------------------------------------------------- /src/lib/freetype2/include/freetype/ftxf86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/include/freetype/ftxf86.h -------------------------------------------------------------------------------- /src/lib/freetype2/include/freetype/internal/autohint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/include/freetype/internal/autohint.h -------------------------------------------------------------------------------- /src/lib/freetype2/include/freetype/internal/ftcalc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/include/freetype/internal/ftcalc.h -------------------------------------------------------------------------------- /src/lib/freetype2/include/freetype/internal/ftdebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/include/freetype/internal/ftdebug.h -------------------------------------------------------------------------------- /src/lib/freetype2/include/freetype/internal/ftdriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/include/freetype/internal/ftdriver.h -------------------------------------------------------------------------------- /src/lib/freetype2/include/freetype/internal/ftgloadr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/include/freetype/internal/ftgloadr.h -------------------------------------------------------------------------------- /src/lib/freetype2/include/freetype/internal/ftmemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/include/freetype/internal/ftmemory.h -------------------------------------------------------------------------------- /src/lib/freetype2/include/freetype/internal/ftobjs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/include/freetype/internal/ftobjs.h -------------------------------------------------------------------------------- /src/lib/freetype2/include/freetype/internal/ftrfork.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/include/freetype/internal/ftrfork.h -------------------------------------------------------------------------------- /src/lib/freetype2/include/freetype/internal/ftserv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/include/freetype/internal/ftserv.h -------------------------------------------------------------------------------- /src/lib/freetype2/include/freetype/internal/ftstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/include/freetype/internal/ftstream.h -------------------------------------------------------------------------------- /src/lib/freetype2/include/freetype/internal/fttrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/include/freetype/internal/fttrace.h -------------------------------------------------------------------------------- /src/lib/freetype2/include/freetype/internal/ftvalid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/include/freetype/internal/ftvalid.h -------------------------------------------------------------------------------- /src/lib/freetype2/include/freetype/internal/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/include/freetype/internal/internal.h -------------------------------------------------------------------------------- /src/lib/freetype2/include/freetype/internal/pcftypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/include/freetype/internal/pcftypes.h -------------------------------------------------------------------------------- /src/lib/freetype2/include/freetype/internal/psaux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/include/freetype/internal/psaux.h -------------------------------------------------------------------------------- /src/lib/freetype2/include/freetype/internal/pshints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/include/freetype/internal/pshints.h -------------------------------------------------------------------------------- /src/lib/freetype2/include/freetype/internal/services/svbdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/include/freetype/internal/services/svbdf.h -------------------------------------------------------------------------------- /src/lib/freetype2/include/freetype/internal/services/svgldict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/include/freetype/internal/services/svgldict.h -------------------------------------------------------------------------------- /src/lib/freetype2/include/freetype/internal/services/svgxval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/include/freetype/internal/services/svgxval.h -------------------------------------------------------------------------------- /src/lib/freetype2/include/freetype/internal/services/svkern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/include/freetype/internal/services/svkern.h -------------------------------------------------------------------------------- /src/lib/freetype2/include/freetype/internal/services/svmm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/include/freetype/internal/services/svmm.h -------------------------------------------------------------------------------- /src/lib/freetype2/include/freetype/internal/services/svotval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/include/freetype/internal/services/svotval.h -------------------------------------------------------------------------------- /src/lib/freetype2/include/freetype/internal/services/svpfr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/include/freetype/internal/services/svpfr.h -------------------------------------------------------------------------------- /src/lib/freetype2/include/freetype/internal/services/svpostnm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/include/freetype/internal/services/svpostnm.h -------------------------------------------------------------------------------- /src/lib/freetype2/include/freetype/internal/services/svpscmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/include/freetype/internal/services/svpscmap.h -------------------------------------------------------------------------------- /src/lib/freetype2/include/freetype/internal/services/svpsinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/include/freetype/internal/services/svpsinfo.h -------------------------------------------------------------------------------- /src/lib/freetype2/include/freetype/internal/services/svsfnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/include/freetype/internal/services/svsfnt.h -------------------------------------------------------------------------------- /src/lib/freetype2/include/freetype/internal/services/svttcmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/include/freetype/internal/services/svttcmap.h -------------------------------------------------------------------------------- /src/lib/freetype2/include/freetype/internal/services/svtteng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/include/freetype/internal/services/svtteng.h -------------------------------------------------------------------------------- /src/lib/freetype2/include/freetype/internal/services/svttglyf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/include/freetype/internal/services/svttglyf.h -------------------------------------------------------------------------------- /src/lib/freetype2/include/freetype/internal/services/svwinfnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/include/freetype/internal/services/svwinfnt.h -------------------------------------------------------------------------------- /src/lib/freetype2/include/freetype/internal/services/svxf86nm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/include/freetype/internal/services/svxf86nm.h -------------------------------------------------------------------------------- /src/lib/freetype2/include/freetype/internal/sfnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/include/freetype/internal/sfnt.h -------------------------------------------------------------------------------- /src/lib/freetype2/include/freetype/internal/t1types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/include/freetype/internal/t1types.h -------------------------------------------------------------------------------- /src/lib/freetype2/include/freetype/internal/tttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/include/freetype/internal/tttypes.h -------------------------------------------------------------------------------- /src/lib/freetype2/include/freetype/t1tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/include/freetype/t1tables.h -------------------------------------------------------------------------------- /src/lib/freetype2/include/freetype/ttnameid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/include/freetype/ttnameid.h -------------------------------------------------------------------------------- /src/lib/freetype2/include/freetype/tttables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/include/freetype/tttables.h -------------------------------------------------------------------------------- /src/lib/freetype2/include/freetype/tttags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/include/freetype/tttags.h -------------------------------------------------------------------------------- /src/lib/freetype2/include/freetype/ttunpat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/include/freetype/ttunpat.h -------------------------------------------------------------------------------- /src/lib/freetype2/include/ft2build.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/include/ft2build.h -------------------------------------------------------------------------------- /src/lib/freetype2/sfdriver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/sfdriver.c -------------------------------------------------------------------------------- /src/lib/freetype2/sfdriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/sfdriver.h -------------------------------------------------------------------------------- /src/lib/freetype2/sferrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/sferrors.h -------------------------------------------------------------------------------- /src/lib/freetype2/sfnt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/sfnt.c -------------------------------------------------------------------------------- /src/lib/freetype2/sfobjs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/sfobjs.c -------------------------------------------------------------------------------- /src/lib/freetype2/sfobjs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/sfobjs.h -------------------------------------------------------------------------------- /src/lib/freetype2/smooth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/smooth.c -------------------------------------------------------------------------------- /src/lib/freetype2/truetype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/truetype.c -------------------------------------------------------------------------------- /src/lib/freetype2/ttbdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/ttbdf.c -------------------------------------------------------------------------------- /src/lib/freetype2/ttbdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/ttbdf.h -------------------------------------------------------------------------------- /src/lib/freetype2/ttcmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/ttcmap.c -------------------------------------------------------------------------------- /src/lib/freetype2/ttcmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/ttcmap.h -------------------------------------------------------------------------------- /src/lib/freetype2/ttdriver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/ttdriver.c -------------------------------------------------------------------------------- /src/lib/freetype2/ttdriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/ttdriver.h -------------------------------------------------------------------------------- /src/lib/freetype2/tterrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/tterrors.h -------------------------------------------------------------------------------- /src/lib/freetype2/ttgload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/ttgload.c -------------------------------------------------------------------------------- /src/lib/freetype2/ttgload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/ttgload.h -------------------------------------------------------------------------------- /src/lib/freetype2/ttgxvar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/ttgxvar.c -------------------------------------------------------------------------------- /src/lib/freetype2/ttgxvar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/ttgxvar.h -------------------------------------------------------------------------------- /src/lib/freetype2/ttinterp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/ttinterp.c -------------------------------------------------------------------------------- /src/lib/freetype2/ttinterp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/ttinterp.h -------------------------------------------------------------------------------- /src/lib/freetype2/ttkern.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/ttkern.c -------------------------------------------------------------------------------- /src/lib/freetype2/ttkern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/ttkern.h -------------------------------------------------------------------------------- /src/lib/freetype2/ttload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/ttload.c -------------------------------------------------------------------------------- /src/lib/freetype2/ttload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/ttload.h -------------------------------------------------------------------------------- /src/lib/freetype2/ttmtx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/ttmtx.c -------------------------------------------------------------------------------- /src/lib/freetype2/ttmtx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/ttmtx.h -------------------------------------------------------------------------------- /src/lib/freetype2/ttobjs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/ttobjs.c -------------------------------------------------------------------------------- /src/lib/freetype2/ttobjs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/ttobjs.h -------------------------------------------------------------------------------- /src/lib/freetype2/ttpload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/ttpload.c -------------------------------------------------------------------------------- /src/lib/freetype2/ttpload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/ttpload.h -------------------------------------------------------------------------------- /src/lib/freetype2/ttpost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/ttpost.c -------------------------------------------------------------------------------- /src/lib/freetype2/ttpost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/ttpost.h -------------------------------------------------------------------------------- /src/lib/freetype2/ttsbit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/ttsbit.c -------------------------------------------------------------------------------- /src/lib/freetype2/ttsbit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/freetype2/ttsbit.h -------------------------------------------------------------------------------- /src/lib/gettime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/gettime.c -------------------------------------------------------------------------------- /src/lib/grlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/grlib.c -------------------------------------------------------------------------------- /src/lib/handler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/handler.c -------------------------------------------------------------------------------- /src/lib/hashtable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/hashtable.c -------------------------------------------------------------------------------- /src/lib/image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/image.c -------------------------------------------------------------------------------- /src/lib/image_gif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/image_gif.c -------------------------------------------------------------------------------- /src/lib/image_png.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/image_png.c -------------------------------------------------------------------------------- /src/lib/image_xpm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/image_xpm.c -------------------------------------------------------------------------------- /src/lib/libpng/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/libpng/Makefile -------------------------------------------------------------------------------- /src/lib/libpng/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/libpng/README -------------------------------------------------------------------------------- /src/lib/libpng/png.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/libpng/png.c -------------------------------------------------------------------------------- /src/lib/libpng/png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/libpng/png.h -------------------------------------------------------------------------------- /src/lib/libpng/pngconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/libpng/pngconf.h -------------------------------------------------------------------------------- /src/lib/libpng/pngerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/libpng/pngerror.c -------------------------------------------------------------------------------- /src/lib/libpng/pngget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/libpng/pngget.c -------------------------------------------------------------------------------- /src/lib/libpng/pngmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/libpng/pngmem.c -------------------------------------------------------------------------------- /src/lib/libpng/pngpread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/libpng/pngpread.c -------------------------------------------------------------------------------- /src/lib/libpng/pngread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/libpng/pngread.c -------------------------------------------------------------------------------- /src/lib/libpng/pngrio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/libpng/pngrio.c -------------------------------------------------------------------------------- /src/lib/libpng/pngrtran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/libpng/pngrtran.c -------------------------------------------------------------------------------- /src/lib/libpng/pngrutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/libpng/pngrutil.c -------------------------------------------------------------------------------- /src/lib/libpng/pngset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/libpng/pngset.c -------------------------------------------------------------------------------- /src/lib/libpng/pngtrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/libpng/pngtrans.c -------------------------------------------------------------------------------- /src/lib/libpng/pngwio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/libpng/pngwio.c -------------------------------------------------------------------------------- /src/lib/libpng/pngwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/libpng/pngwrite.c -------------------------------------------------------------------------------- /src/lib/libpng/pngwtran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/libpng/pngwtran.c -------------------------------------------------------------------------------- /src/lib/libpng/pngwutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/libpng/pngwutil.c -------------------------------------------------------------------------------- /src/lib/libz/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/libz/Makefile -------------------------------------------------------------------------------- /src/lib/libz/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/libz/README -------------------------------------------------------------------------------- /src/lib/libz/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/libz/adler32.c -------------------------------------------------------------------------------- /src/lib/libz/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/libz/compress.c -------------------------------------------------------------------------------- /src/lib/libz/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/libz/crc32.c -------------------------------------------------------------------------------- /src/lib/libz/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/libz/crc32.h -------------------------------------------------------------------------------- /src/lib/libz/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/libz/deflate.c -------------------------------------------------------------------------------- /src/lib/libz/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/libz/deflate.h -------------------------------------------------------------------------------- /src/lib/libz/gzio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/libz/gzio.c -------------------------------------------------------------------------------- /src/lib/libz/infback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/libz/infback.c -------------------------------------------------------------------------------- /src/lib/libz/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/libz/inffast.c -------------------------------------------------------------------------------- /src/lib/libz/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/libz/inffast.h -------------------------------------------------------------------------------- /src/lib/libz/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/libz/inffixed.h -------------------------------------------------------------------------------- /src/lib/libz/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/libz/inflate.c -------------------------------------------------------------------------------- /src/lib/libz/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/libz/inflate.h -------------------------------------------------------------------------------- /src/lib/libz/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/libz/inftrees.c -------------------------------------------------------------------------------- /src/lib/libz/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/libz/inftrees.h -------------------------------------------------------------------------------- /src/lib/libz/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/libz/trees.c -------------------------------------------------------------------------------- /src/lib/libz/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/libz/trees.h -------------------------------------------------------------------------------- /src/lib/libz/uncompr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/libz/uncompr.c -------------------------------------------------------------------------------- /src/lib/libz/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/libz/zconf.h -------------------------------------------------------------------------------- /src/lib/libz/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/libz/zlib.h -------------------------------------------------------------------------------- /src/lib/libz/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/libz/zutil.c -------------------------------------------------------------------------------- /src/lib/libz/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/libz/zutil.h -------------------------------------------------------------------------------- /src/lib/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/list.c -------------------------------------------------------------------------------- /src/lib/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/mem.h -------------------------------------------------------------------------------- /src/lib/pipe_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/pipe_api.c -------------------------------------------------------------------------------- /src/lib/pipe_mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/pipe_mem.c -------------------------------------------------------------------------------- /src/lib/pipe_posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/pipe_posix.c -------------------------------------------------------------------------------- /src/lib/pixman/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/pixman/Makefile -------------------------------------------------------------------------------- /src/lib/pixman/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/pixman/config.h -------------------------------------------------------------------------------- /src/lib/pixman/fbcompose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/pixman/fbcompose.c -------------------------------------------------------------------------------- /src/lib/pixman/fbedge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/pixman/fbedge.c -------------------------------------------------------------------------------- /src/lib/pixman/fbedgeimp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/pixman/fbedgeimp.h -------------------------------------------------------------------------------- /src/lib/pixman/fbmmx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/pixman/fbmmx.c -------------------------------------------------------------------------------- /src/lib/pixman/fbmmx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/pixman/fbmmx.h -------------------------------------------------------------------------------- /src/lib/pixman/fbpict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/pixman/fbpict.c -------------------------------------------------------------------------------- /src/lib/pixman/fbpict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/pixman/fbpict.h -------------------------------------------------------------------------------- /src/lib/pixman/fbtrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/pixman/fbtrap.c -------------------------------------------------------------------------------- /src/lib/pixman/icblt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/pixman/icblt.c -------------------------------------------------------------------------------- /src/lib/pixman/icbltone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/pixman/icbltone.c -------------------------------------------------------------------------------- /src/lib/pixman/iccolor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/pixman/iccolor.c -------------------------------------------------------------------------------- /src/lib/pixman/icformat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/pixman/icformat.c -------------------------------------------------------------------------------- /src/lib/pixman/icimage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/pixman/icimage.c -------------------------------------------------------------------------------- /src/lib/pixman/icimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/pixman/icimage.h -------------------------------------------------------------------------------- /src/lib/pixman/icpixels.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/pixman/icpixels.c -------------------------------------------------------------------------------- /src/lib/pixman/icrect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/pixman/icrect.c -------------------------------------------------------------------------------- /src/lib/pixman/icrop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/pixman/icrop.h -------------------------------------------------------------------------------- /src/lib/pixman/icstipple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/pixman/icstipple.c -------------------------------------------------------------------------------- /src/lib/pixman/ictransform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/pixman/ictransform.c -------------------------------------------------------------------------------- /src/lib/pixman/ictrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/pixman/ictrap.c -------------------------------------------------------------------------------- /src/lib/pixman/ictri.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/pixman/ictri.c -------------------------------------------------------------------------------- /src/lib/pixman/icutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/pixman/icutil.c -------------------------------------------------------------------------------- /src/lib/pixman/pixman-remap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/pixman/pixman-remap.h -------------------------------------------------------------------------------- /src/lib/pixman/pixman-xserver-compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/pixman/pixman-xserver-compat.h -------------------------------------------------------------------------------- /src/lib/pixman/pixman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/pixman/pixman.h -------------------------------------------------------------------------------- /src/lib/pixman/pixmanint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/pixman/pixmanint.h -------------------------------------------------------------------------------- /src/lib/pixman/pixregion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/pixman/pixregion.c -------------------------------------------------------------------------------- /src/lib/pixman/pixregionint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/pixman/pixregionint.h -------------------------------------------------------------------------------- /src/lib/pixman/renderedge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/pixman/renderedge.c -------------------------------------------------------------------------------- /src/lib/pixman/renderedge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/pixman/renderedge.h -------------------------------------------------------------------------------- /src/lib/pollfd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/pollfd.c -------------------------------------------------------------------------------- /src/lib/region.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/region.c -------------------------------------------------------------------------------- /src/lib/render.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/render.c -------------------------------------------------------------------------------- /src/lib/socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/socket.c -------------------------------------------------------------------------------- /src/lib/socket_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/socket_api.c -------------------------------------------------------------------------------- /src/lib/socket_bsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/socket_bsd.c -------------------------------------------------------------------------------- /src/lib/socket_pipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/socket_pipe.c -------------------------------------------------------------------------------- /src/lib/surface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/surface.c -------------------------------------------------------------------------------- /src/lib/thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/thread.c -------------------------------------------------------------------------------- /src/lib/thread_mutex_emul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/thread_mutex_emul.c -------------------------------------------------------------------------------- /src/lib/thread_pspdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/thread_pspdev.c -------------------------------------------------------------------------------- /src/lib/thread_pthreads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/thread_pthreads.c -------------------------------------------------------------------------------- /src/lib/thread_win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/thread_win32.c -------------------------------------------------------------------------------- /src/lib/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/timer.c -------------------------------------------------------------------------------- /src/lib/window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/window.c -------------------------------------------------------------------------------- /src/lib/xml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/xml.c -------------------------------------------------------------------------------- /src/lib/xynth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/xynth.h -------------------------------------------------------------------------------- /src/lib/xynth_.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/lib/xynth_.h -------------------------------------------------------------------------------- /src/python/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/python/Makefile -------------------------------------------------------------------------------- /src/python/window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/python/window.c -------------------------------------------------------------------------------- /src/python/xynth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/python/xynth.py -------------------------------------------------------------------------------- /src/python/xynthpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/python/xynthpy.c -------------------------------------------------------------------------------- /src/python/xynthpy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/python/xynthpy.h -------------------------------------------------------------------------------- /src/server/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/server/Makefile -------------------------------------------------------------------------------- /src/server/cursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/server/cursor.h -------------------------------------------------------------------------------- /src/server/event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/server/event.c -------------------------------------------------------------------------------- /src/server/id.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/server/id.c -------------------------------------------------------------------------------- /src/server/irr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/server/irr.c -------------------------------------------------------------------------------- /src/server/kbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/server/kbd.c -------------------------------------------------------------------------------- /src/server/kbd_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/server/kbd_map.h -------------------------------------------------------------------------------- /src/server/mouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/server/mouse.c -------------------------------------------------------------------------------- /src/server/priority.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/server/priority.c -------------------------------------------------------------------------------- /src/server/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/server/server.c -------------------------------------------------------------------------------- /src/server/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/server/server.h -------------------------------------------------------------------------------- /src/server/single.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/server/single.c -------------------------------------------------------------------------------- /src/server/socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/server/socket.c -------------------------------------------------------------------------------- /src/server/start.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/server/start.c -------------------------------------------------------------------------------- /src/server/surface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/server/surface.c -------------------------------------------------------------------------------- /src/server/theme.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/server/theme.c -------------------------------------------------------------------------------- /src/server/theme_static.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/server/theme_static.h -------------------------------------------------------------------------------- /src/server/video/artec/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/server/video/artec/Makefile -------------------------------------------------------------------------------- /src/server/video/artec/fb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/server/video/artec/fb.c -------------------------------------------------------------------------------- /src/server/video/artec/fbdev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/server/video/artec/fbdev.h -------------------------------------------------------------------------------- /src/server/video/artec/keypad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/server/video/artec/keypad.c -------------------------------------------------------------------------------- /src/server/video/artec/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/server/video/artec/server.c -------------------------------------------------------------------------------- /src/server/video/artec/touch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/server/video/artec/touch.c -------------------------------------------------------------------------------- /src/server/video/caca/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/server/video/caca/Makefile -------------------------------------------------------------------------------- /src/server/video/caca/caca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/server/video/caca/caca.h -------------------------------------------------------------------------------- /src/server/video/caca/event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/server/video/caca/event.c -------------------------------------------------------------------------------- /src/server/video/caca/kbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/server/video/caca/kbd.c -------------------------------------------------------------------------------- /src/server/video/caca/mouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/server/video/caca/mouse.c -------------------------------------------------------------------------------- /src/server/video/caca/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/server/video/caca/server.c -------------------------------------------------------------------------------- /src/server/video/fb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/server/video/fb/Makefile -------------------------------------------------------------------------------- /src/server/video/fb/fb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/server/video/fb/fb.c -------------------------------------------------------------------------------- /src/server/video/fb/fbdev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/server/video/fb/fbdev.h -------------------------------------------------------------------------------- /src/server/video/fb/kbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/server/video/fb/kbd.c -------------------------------------------------------------------------------- /src/server/video/fb/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/server/video/fb/server.c -------------------------------------------------------------------------------- /src/server/video/fb/timing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/server/video/fb/timing.c -------------------------------------------------------------------------------- /src/server/video/gdi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/server/video/gdi/Makefile -------------------------------------------------------------------------------- /src/server/video/gdi/event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/server/video/gdi/event.c -------------------------------------------------------------------------------- /src/server/video/gdi/gdi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/server/video/gdi/gdi.h -------------------------------------------------------------------------------- /src/server/video/gdi/kbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/server/video/gdi/kbd.c -------------------------------------------------------------------------------- /src/server/video/gdi/mouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/server/video/gdi/mouse.c -------------------------------------------------------------------------------- /src/server/video/gdi/pthread_w32/libpthreadGC2.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/server/video/gdi/pthread_w32/libpthreadGC2.a -------------------------------------------------------------------------------- /src/server/video/gdi/pthread_w32/pthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/server/video/gdi/pthread_w32/pthread.h -------------------------------------------------------------------------------- /src/server/video/gdi/pthread_w32/pthreadGC2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/server/video/gdi/pthread_w32/pthreadGC2.dll -------------------------------------------------------------------------------- /src/server/video/gdi/pthread_w32/sched.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/server/video/gdi/pthread_w32/sched.h -------------------------------------------------------------------------------- /src/server/video/gdi/pthread_w32/semaphore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/server/video/gdi/pthread_w32/semaphore.h -------------------------------------------------------------------------------- /src/server/video/gdi/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/server/video/gdi/server.c -------------------------------------------------------------------------------- /src/server/video/gp2x/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/server/video/gp2x/Makefile -------------------------------------------------------------------------------- /src/server/video/gp2x/event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/server/video/gp2x/event.c -------------------------------------------------------------------------------- /src/server/video/gp2x/gp2x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/server/video/gp2x/gp2x.h -------------------------------------------------------------------------------- /src/server/video/gp2x/kbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/server/video/gp2x/kbd.c -------------------------------------------------------------------------------- /src/server/video/gp2x/mouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/server/video/gp2x/mouse.c -------------------------------------------------------------------------------- /src/server/video/gp2x/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/server/video/gp2x/server.c -------------------------------------------------------------------------------- /src/server/video/helper/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/server/video/helper/Makefile -------------------------------------------------------------------------------- /src/server/video/helper/console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/server/video/helper/console.c -------------------------------------------------------------------------------- /src/server/video/helper/helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/server/video/helper/helper.h -------------------------------------------------------------------------------- /src/server/video/helper/irair.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/server/video/helper/irair.c -------------------------------------------------------------------------------- /src/server/video/helper/irman.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/server/video/helper/irman.c -------------------------------------------------------------------------------- /src/server/video/helper/kbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/server/video/helper/kbd.c -------------------------------------------------------------------------------- /src/server/video/helper/kbd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/server/video/helper/kbd.h -------------------------------------------------------------------------------- /src/server/video/helper/modes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/server/video/helper/modes.c -------------------------------------------------------------------------------- /src/server/video/helper/mouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/server/video/helper/mouse.c -------------------------------------------------------------------------------- /src/server/video/helper/mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/server/video/helper/mouse.h -------------------------------------------------------------------------------- /src/server/video/helper/mouse_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/server/video/helper/mouse_1.c -------------------------------------------------------------------------------- /src/server/video/helper/mouse_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/server/video/helper/mouse_2.c -------------------------------------------------------------------------------- /src/server/video/helper/mtrr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/server/video/helper/mtrr.c -------------------------------------------------------------------------------- /src/server/video/helper/tscreen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/server/video/helper/tscreen.c -------------------------------------------------------------------------------- /src/server/video/null/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/server/video/null/Makefile -------------------------------------------------------------------------------- /src/server/video/null/kbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/server/video/null/kbd.c -------------------------------------------------------------------------------- /src/server/video/null/mouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/server/video/null/mouse.c -------------------------------------------------------------------------------- /src/server/video/null/null.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/server/video/null/null.h -------------------------------------------------------------------------------- /src/server/video/null/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/server/video/null/server.c -------------------------------------------------------------------------------- /src/server/video/pspdev/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/server/video/pspdev/Makefile -------------------------------------------------------------------------------- /src/server/video/pspdev/event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/server/video/pspdev/event.c -------------------------------------------------------------------------------- /src/server/video/pspdev/kbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/server/video/pspdev/kbd.c -------------------------------------------------------------------------------- /src/server/video/pspdev/mouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/server/video/pspdev/mouse.c -------------------------------------------------------------------------------- /src/server/video/pspdev/pspdev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/server/video/pspdev/pspdev.h -------------------------------------------------------------------------------- /src/server/video/pspdev/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/server/video/pspdev/server.c -------------------------------------------------------------------------------- /src/server/video/sdl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/server/video/sdl/Makefile -------------------------------------------------------------------------------- /src/server/video/sdl/event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/server/video/sdl/event.c -------------------------------------------------------------------------------- /src/server/video/sdl/kbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/server/video/sdl/kbd.c -------------------------------------------------------------------------------- /src/server/video/sdl/mouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/server/video/sdl/mouse.c -------------------------------------------------------------------------------- /src/server/video/sdl/sdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/server/video/sdl/sdl.h -------------------------------------------------------------------------------- /src/server/video/sdl/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/server/video/sdl/server.c -------------------------------------------------------------------------------- /src/server/video/svga/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/server/video/svga/Makefile -------------------------------------------------------------------------------- /src/server/video/svga/kbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/server/video/svga/kbd.c -------------------------------------------------------------------------------- /src/server/video/svga/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/server/video/svga/server.c -------------------------------------------------------------------------------- /src/server/video/svga/svga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/server/video/svga/svga.h -------------------------------------------------------------------------------- /src/server/video/vesa/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/server/video/vesa/Makefile -------------------------------------------------------------------------------- /src/server/video/vesa/kbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/server/video/vesa/kbd.c -------------------------------------------------------------------------------- /src/server/video/vesa/lrmi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/server/video/vesa/lrmi.c -------------------------------------------------------------------------------- /src/server/video/vesa/lrmi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/server/video/vesa/lrmi.h -------------------------------------------------------------------------------- /src/server/video/vesa/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/server/video/vesa/server.c -------------------------------------------------------------------------------- /src/server/video/vesa/vbe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/server/video/vesa/vbe.h -------------------------------------------------------------------------------- /src/server/video/vesa/vesa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/server/video/vesa/vesa.h -------------------------------------------------------------------------------- /src/server/window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/server/window.c -------------------------------------------------------------------------------- /src/server/window_handler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/server/window_handler.c -------------------------------------------------------------------------------- /src/server/window_move_resize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/server/window_move_resize.c -------------------------------------------------------------------------------- /src/themes/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/Makefile -------------------------------------------------------------------------------- /src/themes/keramik/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/keramik/Makefile -------------------------------------------------------------------------------- /src/themes/keramik/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/keramik/README -------------------------------------------------------------------------------- /src/themes/keramik/bottom-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/keramik/bottom-active.xpm -------------------------------------------------------------------------------- /src/themes/keramik/bottom-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/keramik/bottom-inactive.xpm -------------------------------------------------------------------------------- /src/themes/keramik/bottom-left-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/keramik/bottom-left-active.xpm -------------------------------------------------------------------------------- /src/themes/keramik/bottom-left-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/keramik/bottom-left-inactive.xpm -------------------------------------------------------------------------------- /src/themes/keramik/bottom-right-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/keramik/bottom-right-active.xpm -------------------------------------------------------------------------------- /src/themes/keramik/bottom-right-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/keramik/bottom-right-inactive.xpm -------------------------------------------------------------------------------- /src/themes/keramik/close-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/keramik/close-active.xpm -------------------------------------------------------------------------------- /src/themes/keramik/close-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/keramik/close-inactive.xpm -------------------------------------------------------------------------------- /src/themes/keramik/close-pressed.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/keramik/close-pressed.xpm -------------------------------------------------------------------------------- /src/themes/keramik/hide-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/keramik/hide-active.xpm -------------------------------------------------------------------------------- /src/themes/keramik/hide-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/keramik/hide-inactive.xpm -------------------------------------------------------------------------------- /src/themes/keramik/hide-pressed.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/keramik/hide-pressed.xpm -------------------------------------------------------------------------------- /src/themes/keramik/left-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/keramik/left-active.xpm -------------------------------------------------------------------------------- /src/themes/keramik/left-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/keramik/left-inactive.xpm -------------------------------------------------------------------------------- /src/themes/keramik/maximize-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/keramik/maximize-active.xpm -------------------------------------------------------------------------------- /src/themes/keramik/maximize-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/keramik/maximize-inactive.xpm -------------------------------------------------------------------------------- /src/themes/keramik/maximize-pressed.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/keramik/maximize-pressed.xpm -------------------------------------------------------------------------------- /src/themes/keramik/menu-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/keramik/menu-active.xpm -------------------------------------------------------------------------------- /src/themes/keramik/menu-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/keramik/menu-inactive.xpm -------------------------------------------------------------------------------- /src/themes/keramik/menu-pressed.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/keramik/menu-pressed.xpm -------------------------------------------------------------------------------- /src/themes/keramik/right-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/keramik/right-active.xpm -------------------------------------------------------------------------------- /src/themes/keramik/right-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/keramik/right-inactive.xpm -------------------------------------------------------------------------------- /src/themes/keramik/shade-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/keramik/shade-active.xpm -------------------------------------------------------------------------------- /src/themes/keramik/shade-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/keramik/shade-inactive.xpm -------------------------------------------------------------------------------- /src/themes/keramik/shade-pressed.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/keramik/shade-pressed.xpm -------------------------------------------------------------------------------- /src/themes/keramik/stick-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/keramik/stick-active.xpm -------------------------------------------------------------------------------- /src/themes/keramik/stick-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/keramik/stick-inactive.xpm -------------------------------------------------------------------------------- /src/themes/keramik/stick-pressed.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/keramik/stick-pressed.xpm -------------------------------------------------------------------------------- /src/themes/keramik/themerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/keramik/themerc -------------------------------------------------------------------------------- /src/themes/keramik/title-1-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/keramik/title-1-active.xpm -------------------------------------------------------------------------------- /src/themes/keramik/title-1-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/keramik/title-1-inactive.xpm -------------------------------------------------------------------------------- /src/themes/keramik/title-2-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/keramik/title-2-active.xpm -------------------------------------------------------------------------------- /src/themes/keramik/title-2-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/keramik/title-2-inactive.xpm -------------------------------------------------------------------------------- /src/themes/keramik/title-3-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/keramik/title-3-active.xpm -------------------------------------------------------------------------------- /src/themes/keramik/title-3-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/keramik/title-3-inactive.xpm -------------------------------------------------------------------------------- /src/themes/keramik/title-4-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/keramik/title-4-active.xpm -------------------------------------------------------------------------------- /src/themes/keramik/title-4-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/keramik/title-4-inactive.xpm -------------------------------------------------------------------------------- /src/themes/keramik/title-5-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/keramik/title-5-active.xpm -------------------------------------------------------------------------------- /src/themes/keramik/title-5-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/keramik/title-5-inactive.xpm -------------------------------------------------------------------------------- /src/themes/keramik/top-left-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/keramik/top-left-active.xpm -------------------------------------------------------------------------------- /src/themes/keramik/top-left-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/keramik/top-left-inactive.xpm -------------------------------------------------------------------------------- /src/themes/keramik/top-right-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/keramik/top-right-active.xpm -------------------------------------------------------------------------------- /src/themes/keramik/top-right-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/keramik/top-right-inactive.xpm -------------------------------------------------------------------------------- /src/themes/microgui/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/microgui/Makefile -------------------------------------------------------------------------------- /src/themes/microgui/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/microgui/README -------------------------------------------------------------------------------- /src/themes/microgui/bottom-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/microgui/bottom-active.xpm -------------------------------------------------------------------------------- /src/themes/microgui/bottom-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/microgui/bottom-inactive.xpm -------------------------------------------------------------------------------- /src/themes/microgui/bottom-left-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/microgui/bottom-left-active.xpm -------------------------------------------------------------------------------- /src/themes/microgui/bottom-left-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/microgui/bottom-left-inactive.xpm -------------------------------------------------------------------------------- /src/themes/microgui/bottom-right-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/microgui/bottom-right-active.xpm -------------------------------------------------------------------------------- /src/themes/microgui/bottom-right-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/microgui/bottom-right-inactive.xpm -------------------------------------------------------------------------------- /src/themes/microgui/close-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/microgui/close-active.xpm -------------------------------------------------------------------------------- /src/themes/microgui/close-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/microgui/close-inactive.xpm -------------------------------------------------------------------------------- /src/themes/microgui/close-pressed.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/microgui/close-pressed.xpm -------------------------------------------------------------------------------- /src/themes/microgui/hide-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/microgui/hide-active.xpm -------------------------------------------------------------------------------- /src/themes/microgui/hide-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/microgui/hide-inactive.xpm -------------------------------------------------------------------------------- /src/themes/microgui/hide-pressed.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/microgui/hide-pressed.xpm -------------------------------------------------------------------------------- /src/themes/microgui/left-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/microgui/left-active.xpm -------------------------------------------------------------------------------- /src/themes/microgui/left-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/microgui/left-inactive.xpm -------------------------------------------------------------------------------- /src/themes/microgui/maximize-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/microgui/maximize-active.xpm -------------------------------------------------------------------------------- /src/themes/microgui/maximize-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/microgui/maximize-inactive.xpm -------------------------------------------------------------------------------- /src/themes/microgui/maximize-pressed.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/microgui/maximize-pressed.xpm -------------------------------------------------------------------------------- /src/themes/microgui/menu-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/microgui/menu-active.xpm -------------------------------------------------------------------------------- /src/themes/microgui/menu-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/microgui/menu-inactive.xpm -------------------------------------------------------------------------------- /src/themes/microgui/menu-pressed.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/microgui/menu-pressed.xpm -------------------------------------------------------------------------------- /src/themes/microgui/right-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/microgui/right-active.xpm -------------------------------------------------------------------------------- /src/themes/microgui/right-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/microgui/right-inactive.xpm -------------------------------------------------------------------------------- /src/themes/microgui/themerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/microgui/themerc -------------------------------------------------------------------------------- /src/themes/microgui/title-1-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/microgui/title-1-active.xpm -------------------------------------------------------------------------------- /src/themes/microgui/title-1-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/microgui/title-1-inactive.xpm -------------------------------------------------------------------------------- /src/themes/microgui/title-2-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/microgui/title-2-active.xpm -------------------------------------------------------------------------------- /src/themes/microgui/title-2-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/microgui/title-2-inactive.xpm -------------------------------------------------------------------------------- /src/themes/microgui/title-3-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/microgui/title-3-active.xpm -------------------------------------------------------------------------------- /src/themes/microgui/title-3-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/microgui/title-3-inactive.xpm -------------------------------------------------------------------------------- /src/themes/microgui/title-4-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/microgui/title-4-active.xpm -------------------------------------------------------------------------------- /src/themes/microgui/title-4-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/microgui/title-4-inactive.xpm -------------------------------------------------------------------------------- /src/themes/microgui/title-5-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/microgui/title-5-active.xpm -------------------------------------------------------------------------------- /src/themes/microgui/title-5-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/microgui/title-5-inactive.xpm -------------------------------------------------------------------------------- /src/themes/microgui/top-left-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/microgui/top-left-active.xpm -------------------------------------------------------------------------------- /src/themes/microgui/top-left-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/microgui/top-left-inactive.xpm -------------------------------------------------------------------------------- /src/themes/microgui/top-right-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/microgui/top-right-active.xpm -------------------------------------------------------------------------------- /src/themes/microgui/top-right-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/microgui/top-right-inactive.xpm -------------------------------------------------------------------------------- /src/themes/silverado/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/silverado/Makefile -------------------------------------------------------------------------------- /src/themes/silverado/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/silverado/README -------------------------------------------------------------------------------- /src/themes/silverado/bottom-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/silverado/bottom-active.xpm -------------------------------------------------------------------------------- /src/themes/silverado/bottom-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/silverado/bottom-inactive.xpm -------------------------------------------------------------------------------- /src/themes/silverado/bottom-left-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/silverado/bottom-left-active.xpm -------------------------------------------------------------------------------- /src/themes/silverado/bottom-left-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/silverado/bottom-left-inactive.xpm -------------------------------------------------------------------------------- /src/themes/silverado/bottom-right-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/silverado/bottom-right-active.xpm -------------------------------------------------------------------------------- /src/themes/silverado/bottom-right-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/silverado/bottom-right-inactive.xpm -------------------------------------------------------------------------------- /src/themes/silverado/close-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/silverado/close-active.xpm -------------------------------------------------------------------------------- /src/themes/silverado/close-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/silverado/close-inactive.xpm -------------------------------------------------------------------------------- /src/themes/silverado/close-pressed.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/silverado/close-pressed.xpm -------------------------------------------------------------------------------- /src/themes/silverado/hide-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/silverado/hide-active.xpm -------------------------------------------------------------------------------- /src/themes/silverado/hide-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/silverado/hide-inactive.xpm -------------------------------------------------------------------------------- /src/themes/silverado/hide-pressed.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/silverado/hide-pressed.xpm -------------------------------------------------------------------------------- /src/themes/silverado/left-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/silverado/left-active.xpm -------------------------------------------------------------------------------- /src/themes/silverado/left-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/silverado/left-inactive.xpm -------------------------------------------------------------------------------- /src/themes/silverado/maximize-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/silverado/maximize-active.xpm -------------------------------------------------------------------------------- /src/themes/silverado/maximize-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/silverado/maximize-inactive.xpm -------------------------------------------------------------------------------- /src/themes/silverado/maximize-pressed.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/silverado/maximize-pressed.xpm -------------------------------------------------------------------------------- /src/themes/silverado/menu-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/silverado/menu-active.xpm -------------------------------------------------------------------------------- /src/themes/silverado/menu-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/silverado/menu-inactive.xpm -------------------------------------------------------------------------------- /src/themes/silverado/menu-pressed.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/silverado/menu-pressed.xpm -------------------------------------------------------------------------------- /src/themes/silverado/right-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/silverado/right-active.xpm -------------------------------------------------------------------------------- /src/themes/silverado/right-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/silverado/right-inactive.xpm -------------------------------------------------------------------------------- /src/themes/silverado/themerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/silverado/themerc -------------------------------------------------------------------------------- /src/themes/silverado/title-1-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/silverado/title-1-active.xpm -------------------------------------------------------------------------------- /src/themes/silverado/title-1-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/silverado/title-1-inactive.xpm -------------------------------------------------------------------------------- /src/themes/silverado/title-2-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/silverado/title-2-active.xpm -------------------------------------------------------------------------------- /src/themes/silverado/title-2-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/silverado/title-2-inactive.xpm -------------------------------------------------------------------------------- /src/themes/silverado/title-3-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/silverado/title-3-active.xpm -------------------------------------------------------------------------------- /src/themes/silverado/title-3-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/silverado/title-3-inactive.xpm -------------------------------------------------------------------------------- /src/themes/silverado/title-4-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/silverado/title-4-active.xpm -------------------------------------------------------------------------------- /src/themes/silverado/title-4-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/silverado/title-4-inactive.xpm -------------------------------------------------------------------------------- /src/themes/silverado/title-5-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/silverado/title-5-active.xpm -------------------------------------------------------------------------------- /src/themes/silverado/title-5-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/silverado/title-5-inactive.xpm -------------------------------------------------------------------------------- /src/themes/silverado/top-left-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/silverado/top-left-active.xpm -------------------------------------------------------------------------------- /src/themes/silverado/top-left-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/silverado/top-left-inactive.xpm -------------------------------------------------------------------------------- /src/themes/silverado/top-right-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/silverado/top-right-active.xpm -------------------------------------------------------------------------------- /src/themes/silverado/top-right-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/themes/silverado/top-right-inactive.xpm -------------------------------------------------------------------------------- /src/widget/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/widget/Makefile -------------------------------------------------------------------------------- /src/widget/button.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/widget/button.c -------------------------------------------------------------------------------- /src/widget/checkbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/widget/checkbox.c -------------------------------------------------------------------------------- /src/widget/clistbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/widget/clistbox.c -------------------------------------------------------------------------------- /src/widget/editbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/widget/editbox.c -------------------------------------------------------------------------------- /src/widget/effect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/widget/effect.c -------------------------------------------------------------------------------- /src/widget/frame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/widget/frame.c -------------------------------------------------------------------------------- /src/widget/listbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/widget/listbox.c -------------------------------------------------------------------------------- /src/widget/object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/widget/object.c -------------------------------------------------------------------------------- /src/widget/progressbar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/widget/progressbar.c -------------------------------------------------------------------------------- /src/widget/pushbutton.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/widget/pushbutton.c -------------------------------------------------------------------------------- /src/widget/scrollbuffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/widget/scrollbuffer.c -------------------------------------------------------------------------------- /src/widget/signal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/widget/signal.c -------------------------------------------------------------------------------- /src/widget/textbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/widget/textbox.c -------------------------------------------------------------------------------- /src/widget/toolbar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/widget/toolbar.c -------------------------------------------------------------------------------- /src/widget/widget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/widget/widget.h -------------------------------------------------------------------------------- /src/widget/widgetc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/widget/widgetc/Makefile -------------------------------------------------------------------------------- /src/widget/widgetc/code.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/widget/widgetc/code.c -------------------------------------------------------------------------------- /src/widget/widgetc/code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/widget/widgetc/code.h -------------------------------------------------------------------------------- /src/widget/widgetc/header.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/widget/widgetc/header.c -------------------------------------------------------------------------------- /src/widget/widgetc/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/widget/widgetc/header.h -------------------------------------------------------------------------------- /src/widget/widgetc/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/widget/widgetc/list.c -------------------------------------------------------------------------------- /src/widget/widgetc/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/widget/widgetc/list.h -------------------------------------------------------------------------------- /src/widget/widgetc/widgetc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/widget/widgetc/widgetc.c -------------------------------------------------------------------------------- /src/widget/widgetc/xml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/widget/widgetc/xml.c -------------------------------------------------------------------------------- /src/widget/widgetc/xml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/widget/widgetc/xml.h -------------------------------------------------------------------------------- /src/widget/widgetr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/widget/widgetr/Makefile -------------------------------------------------------------------------------- /src/widget/widgetr/README.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/widget/widgetr/README.script -------------------------------------------------------------------------------- /src/widget/widgetr/code.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/widget/widgetr/code.c -------------------------------------------------------------------------------- /src/widget/widgetr/code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/widget/widgetr/code.h -------------------------------------------------------------------------------- /src/widget/widgetr/js.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/widget/widgetr/js.c -------------------------------------------------------------------------------- /src/widget/widgetr/js.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/widget/widgetr/js.h -------------------------------------------------------------------------------- /src/widget/widgetr/widgetr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/widget/widgetr/widgetr.c -------------------------------------------------------------------------------- /src/widget/widgetr/widgetr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/widget/widgetr/widgetr.h -------------------------------------------------------------------------------- /src/widget/window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/widget/window.c -------------------------------------------------------------------------------- /src/widgetoo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/widgetoo/Makefile -------------------------------------------------------------------------------- /src/widgetoo/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/widgetoo/README -------------------------------------------------------------------------------- /src/widgetoo/button.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/widgetoo/button.cpp -------------------------------------------------------------------------------- /src/widgetoo/frame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/widgetoo/frame.cpp -------------------------------------------------------------------------------- /src/widgetoo/handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/widgetoo/handler.cpp -------------------------------------------------------------------------------- /src/widgetoo/layout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/widgetoo/layout.cpp -------------------------------------------------------------------------------- /src/widgetoo/object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/widgetoo/object.cpp -------------------------------------------------------------------------------- /src/widgetoo/rect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/widgetoo/rect.cpp -------------------------------------------------------------------------------- /src/widgetoo/widgetoo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/widgetoo/widgetoo.h -------------------------------------------------------------------------------- /src/widgetoo/window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/src/widgetoo/window.cpp -------------------------------------------------------------------------------- /tools/bdf/bdf2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/tools/bdf/bdf2c.c -------------------------------------------------------------------------------- /tools/bdf/bdf2h.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/tools/bdf/bdf2h.c -------------------------------------------------------------------------------- /tools/config/Kconfig-language.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/tools/config/Kconfig-language.txt -------------------------------------------------------------------------------- /tools/config/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/tools/config/Makefile -------------------------------------------------------------------------------- /tools/config/conf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/tools/config/conf.c -------------------------------------------------------------------------------- /tools/config/confdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/tools/config/confdata.c -------------------------------------------------------------------------------- /tools/config/expr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/tools/config/expr.c -------------------------------------------------------------------------------- /tools/config/expr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/tools/config/expr.h -------------------------------------------------------------------------------- /tools/config/lex.zconf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/tools/config/lex.zconf.c -------------------------------------------------------------------------------- /tools/config/lkc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/tools/config/lkc.h -------------------------------------------------------------------------------- /tools/config/lkc_proto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/tools/config/lkc_proto.h -------------------------------------------------------------------------------- /tools/config/lxdialog/BIG.FAT.WARNING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/tools/config/lxdialog/BIG.FAT.WARNING -------------------------------------------------------------------------------- /tools/config/lxdialog/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/tools/config/lxdialog/Makefile -------------------------------------------------------------------------------- /tools/config/lxdialog/checklist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/tools/config/lxdialog/checklist.c -------------------------------------------------------------------------------- /tools/config/lxdialog/colors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/tools/config/lxdialog/colors.h -------------------------------------------------------------------------------- /tools/config/lxdialog/dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/tools/config/lxdialog/dialog.h -------------------------------------------------------------------------------- /tools/config/lxdialog/inputbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/tools/config/lxdialog/inputbox.c -------------------------------------------------------------------------------- /tools/config/lxdialog/menubox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/tools/config/lxdialog/menubox.c -------------------------------------------------------------------------------- /tools/config/lxdialog/textbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/tools/config/lxdialog/textbox.c -------------------------------------------------------------------------------- /tools/config/lxdialog/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/tools/config/lxdialog/util.c -------------------------------------------------------------------------------- /tools/config/lxdialog/yesno.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/tools/config/lxdialog/yesno.c -------------------------------------------------------------------------------- /tools/config/mconf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/tools/config/mconf.c -------------------------------------------------------------------------------- /tools/config/menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/tools/config/menu.c -------------------------------------------------------------------------------- /tools/config/mkconfigs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/tools/config/mkconfigs -------------------------------------------------------------------------------- /tools/config/symbol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/tools/config/symbol.c -------------------------------------------------------------------------------- /tools/config/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/tools/config/util.c -------------------------------------------------------------------------------- /tools/config/zconf.gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/tools/config/zconf.gperf -------------------------------------------------------------------------------- /tools/config/zconf.hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/tools/config/zconf.hash.c -------------------------------------------------------------------------------- /tools/config/zconf.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/tools/config/zconf.l -------------------------------------------------------------------------------- /tools/config/zconf.tab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/tools/config/zconf.tab.c -------------------------------------------------------------------------------- /tools/config/zconf.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/tools/config/zconf.y -------------------------------------------------------------------------------- /tools/gp2x/xynth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/tools/gp2x/xynth.png -------------------------------------------------------------------------------- /tools/kmap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/tools/kmap/Makefile -------------------------------------------------------------------------------- /tools/kmap/map2h.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/tools/kmap/map2h.c -------------------------------------------------------------------------------- /tools/kmap/trq.map/linux-keys-bare.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/tools/kmap/trq.map/linux-keys-bare.inc -------------------------------------------------------------------------------- /tools/kmap/trq.map/linux-with-alt-and-altgr.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/tools/kmap/trq.map/linux-with-alt-and-altgr.inc -------------------------------------------------------------------------------- /tools/kmap/trq.map/trq.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/tools/kmap/trq.map/trq.map -------------------------------------------------------------------------------- /tools/kmap/us.map/compose.latin1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/tools/kmap/us.map/compose.latin1 -------------------------------------------------------------------------------- /tools/kmap/us.map/euro1.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/tools/kmap/us.map/euro1.map -------------------------------------------------------------------------------- /tools/kmap/us.map/linux-keys-bare.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/tools/kmap/us.map/linux-keys-bare.inc -------------------------------------------------------------------------------- /tools/kmap/us.map/linux-with-alt-and-altgr.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/tools/kmap/us.map/linux-with-alt-and-altgr.inc -------------------------------------------------------------------------------- /tools/kmap/us.map/qwerty-layout.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/tools/kmap/us.map/qwerty-layout.inc -------------------------------------------------------------------------------- /tools/kmap/us.map/us.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/tools/kmap/us.map/us.map -------------------------------------------------------------------------------- /tools/optimize/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/tools/optimize/Makefile -------------------------------------------------------------------------------- /tools/optimize/optim.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/tools/optimize/optim.sh -------------------------------------------------------------------------------- /tools/optimize/xynth.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/tools/optimize/xynth.sh -------------------------------------------------------------------------------- /tools/pspdev/icon0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/tools/pspdev/icon0.png -------------------------------------------------------------------------------- /tools/pspdev/pic1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/tools/pspdev/pic1.png -------------------------------------------------------------------------------- /tools/theme/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/tools/theme/Makefile -------------------------------------------------------------------------------- /tools/theme/theme.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/tools/theme/theme.c -------------------------------------------------------------------------------- /xynth.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperakcan/xynth/HEAD/xynth.pc.in --------------------------------------------------------------------------------