├── .clang-format ├── CMakeLists.txt ├── CMakeTargets.cmake ├── Changelog.md ├── LICENSE ├── README.md ├── demo ├── bode │ ├── CMakeLists.txt │ ├── bdcalc.c │ ├── bdcalc.h │ ├── bdctrl.c │ ├── bdctrl.h │ ├── bdmodel.c │ ├── bdmodel.h │ ├── bdplot.c │ ├── bdplot.h │ ├── bdview.c │ ├── bdview.h │ ├── bode.c │ ├── bode.hxx │ └── res │ │ ├── logo.icns │ │ ├── logo256.ico │ │ └── logo48.ico ├── bricks │ ├── CMakeLists.txt │ ├── bricks.c │ └── res │ │ ├── logo.icns │ │ ├── logo256.ico │ │ └── logo48.ico ├── casino │ ├── CMakeLists.txt │ ├── casino.c │ ├── casino.h │ ├── casino.hdf │ ├── casino.hxx │ ├── ddraw.c │ └── ddraw.h ├── col2dhello │ ├── CMakeLists.txt │ ├── col2dgui.c │ ├── col2dgui.h │ ├── col2dhello.c │ ├── col2dhello.hxx │ └── res │ │ ├── logo.icns │ │ ├── logo256.ico │ │ └── logo48.ico ├── colorview │ ├── CMakeLists.txt │ ├── colorview.c │ └── res │ │ ├── logo.icns │ │ ├── logo256.ico │ │ └── logo48.ico ├── dice │ ├── CMakeLists.txt │ ├── main.c │ └── res │ │ ├── logo.icns │ │ ├── logo256.ico │ │ └── logo48.ico ├── die │ ├── CMakeLists.txt │ ├── dgui.c │ ├── dgui.h │ ├── die.hxx │ ├── main.c │ └── res │ │ ├── logo.icns │ │ ├── logo256.ico │ │ ├── logo48.ico │ │ └── res_die │ │ ├── cards.png │ │ ├── es_es │ │ └── strings.msg │ │ ├── spain.png │ │ ├── strings.msg │ │ └── usa.png ├── drawbig │ ├── CMakeLists.txt │ ├── drawbig.c │ └── res │ │ ├── logo.icns │ │ ├── logo256.ico │ │ └── logo48.ico ├── drawhello │ ├── CMakeLists.txt │ ├── drawhello.c │ └── res │ │ ├── logo.icns │ │ ├── logo256.ico │ │ ├── logo48.ico │ │ └── res_drawhello │ │ ├── image.jpg │ │ └── image.png ├── drawimg │ ├── CMakeLists.txt │ ├── drawimg.c │ └── res │ │ ├── logo.icns │ │ ├── logo256.ico │ │ ├── logo48.ico │ │ └── res_drawimg │ │ ├── Monkey.gif │ │ └── zombie.png ├── fractals │ ├── CMakeLists.txt │ ├── fractals.c │ └── res │ │ ├── logo.icns │ │ ├── logo256.ico │ │ └── logo48.ico ├── glhello │ ├── CMakeLists.txt │ ├── glhello.c │ ├── glhello.h │ ├── ogl1.c │ ├── ogl1.h │ ├── ogl2.c │ ├── ogl2.h │ ├── ogl3.c │ ├── ogl3.h │ └── res │ │ ├── logo.icns │ │ ├── logo256.ico │ │ ├── logo48.ico │ │ └── res_glhello │ │ └── wall.png ├── guihello │ ├── CMakeLists.txt │ ├── baslayout.c │ ├── baslayout.h │ ├── buttonpad.c │ ├── buttonpad.h │ ├── buttons.c │ ├── buttons.h │ ├── commons.c │ ├── commons.h │ ├── dynlay.c │ ├── dynlay.h │ ├── dynmenu.c │ ├── dynmenu.h │ ├── editor.c │ ├── editor.h │ ├── editpad.c │ ├── editpad.h │ ├── flyout.c │ ├── flyout.h │ ├── fontunits.c │ ├── fontunits.h │ ├── fontx.c │ ├── fontx.h │ ├── form.c │ ├── form.h │ ├── guibind.c │ ├── guibind.h │ ├── guihello.c │ ├── hotkeys.c │ ├── hotkeys.h │ ├── ipinput.c │ ├── ipinput.h │ ├── labels.c │ ├── labels.h │ ├── layoutbind.c │ ├── layoutbind.h │ ├── listboxes.c │ ├── listboxes.h │ ├── modalwin.c │ ├── modalwin.h │ ├── multilayout.c │ ├── multilayout.h │ ├── popcom.c │ ├── popcom.h │ ├── reduce.c │ ├── reduce.h │ ├── res │ │ ├── logo.icns │ │ ├── logo256.ico │ │ ├── logo48.ico │ │ └── res_guihello │ │ │ ├── TextView.rtf │ │ │ ├── about.png │ │ │ ├── access.png │ │ │ ├── back.png │ │ │ ├── back16.png │ │ │ ├── back_red.png │ │ │ ├── black.png │ │ │ ├── blue.png │ │ │ ├── building.jpg │ │ │ ├── car.jpg │ │ │ ├── close.png │ │ │ ├── copy.png │ │ │ ├── cursor16.png │ │ │ ├── cut.png │ │ │ ├── disk12.png │ │ │ ├── disk16.png │ │ │ ├── disk24.png │ │ │ ├── disk32.png │ │ │ ├── disk64.png │ │ │ ├── disk8.png │ │ │ ├── document.png │ │ │ ├── edit16.png │ │ │ ├── edit24.png │ │ │ ├── edit32.png │ │ │ ├── edit64.png │ │ │ ├── error16.png │ │ │ ├── error24.png │ │ │ ├── error32.png │ │ │ ├── error64.png │ │ │ ├── excel.png │ │ │ ├── exit.png │ │ │ ├── first.png │ │ │ ├── first16.png │ │ │ ├── first_red.png │ │ │ ├── folder16.png │ │ │ ├── folder24.png │ │ │ ├── folder32.png │ │ │ ├── folder64.png │ │ │ ├── green.png │ │ │ ├── italy.png │ │ │ ├── japan.png │ │ │ ├── jpg.png │ │ │ ├── laptop.jpg │ │ │ ├── last.png │ │ │ ├── last16.png │ │ │ ├── last_red.png │ │ │ ├── login.png │ │ │ ├── logout.png │ │ │ ├── next.png │ │ │ ├── next16.png │ │ │ ├── next_red.png │ │ │ ├── open.png │ │ │ ├── paste.png │ │ │ ├── pdf.png │ │ │ ├── play.png │ │ │ ├── play_red.png │ │ │ ├── plus16.png │ │ │ ├── plus24.png │ │ │ ├── plus32.png │ │ │ ├── plus64.png │ │ │ ├── portugal.png │ │ │ ├── powerpoint.png │ │ │ ├── red.png │ │ │ ├── refresh.png │ │ │ ├── refresh_red.png │ │ │ ├── restore16.png │ │ │ ├── retry.png │ │ │ ├── russia.png │ │ │ ├── save.png │ │ │ ├── search16.png │ │ │ ├── search24.png │ │ │ ├── search32.png │ │ │ ├── search64.png │ │ │ ├── settings.png │ │ │ ├── spain.png │ │ │ ├── strings.msg │ │ │ ├── uking.png │ │ │ ├── vietnam.png │ │ │ ├── warning.png │ │ │ ├── white.png │ │ │ ├── word.png │ │ │ └── yellow.png │ ├── scrollpanel.c │ ├── scrollpanel.h │ ├── seltext.c │ ├── seltext.h │ ├── sliders.c │ ├── sliders.h │ ├── splits.c │ ├── splits.h │ ├── sublayout.c │ ├── sublayout.h │ ├── subpanel.c │ ├── subpanel.h │ ├── table.c │ ├── table.h │ ├── tabstops.c │ ├── tabstops.h │ ├── textviews.c │ └── textviews.h ├── hello │ ├── CMakeLists.txt │ ├── main.c │ └── res │ │ ├── logo.icns │ │ ├── logo256.ico │ │ └── logo48.ico ├── hellocpp │ ├── CMakeLists.txt │ ├── main.cpp │ └── res │ │ ├── logo.icns │ │ ├── logo256.ico │ │ └── logo48.ico ├── htjson │ ├── CMakeLists.txt │ ├── htjson.c │ └── res │ │ └── res_htjson │ │ └── json_b64_image.txt ├── products │ ├── CMakeLists.txt │ ├── prctrl.c │ ├── prctrl.h │ ├── prmenu.c │ ├── prmenu.h │ ├── prmodel.c │ ├── prmodel.h │ ├── products.c │ ├── products.hxx │ ├── prview.c │ ├── prview.h │ └── res │ │ ├── logo.icns │ │ ├── logo256.ico │ │ ├── logo48.ico │ │ └── res_products │ │ ├── about.png │ │ ├── add.png │ │ ├── back.png │ │ ├── back16.png │ │ ├── back16d.png │ │ ├── backd.png │ │ ├── edit.png │ │ ├── error.png │ │ ├── es_ES │ │ └── strings.msg │ │ ├── exit.png │ │ ├── first.png │ │ ├── first16.png │ │ ├── first16d.png │ │ ├── firstd.png │ │ ├── it_IT │ │ └── strings.msg │ │ ├── italy.png │ │ ├── ja_JP │ │ └── strings.msg │ │ ├── japan.png │ │ ├── last.png │ │ ├── last16.png │ │ ├── last16d.png │ │ ├── lastd.png │ │ ├── login16.png │ │ ├── logout16.png │ │ ├── logout16d.png │ │ ├── minus.png │ │ ├── next.png │ │ ├── next16.png │ │ ├── next16d.png │ │ ├── nextd.png │ │ ├── noimage.png │ │ ├── ok.png │ │ ├── open.png │ │ ├── portugal.png │ │ ├── pt_PT │ │ └── strings.msg │ │ ├── ru_RU │ │ └── strings.msg │ │ ├── russia.png │ │ ├── save.png │ │ ├── saved.png │ │ ├── settings.png │ │ ├── settings16.png │ │ ├── spain.png │ │ ├── spin.gif │ │ ├── strings.msg │ │ ├── usa.png │ │ ├── user.png │ │ ├── vi_VN │ │ └── strings.msg │ │ └── vietnam.png ├── stlcmp │ ├── CMakeLists.txt │ └── stlcmp.cpp ├── urlimg │ ├── CMakeLists.txt │ ├── res │ │ ├── logo.icns │ │ ├── logo256.ico │ │ └── logo48.ico │ └── urlimg.c └── webhello │ ├── CMakeLists.txt │ ├── res │ ├── logo.icns │ ├── logo256.ico │ └── logo48.ico │ └── webhello.c ├── prj ├── NAppAppleClang.cmake ├── NAppClang.cmake ├── NAppCompilers.cmake ├── NAppGCC.cmake ├── NAppGenerateTools.cmake ├── NAppGenerators.cmake ├── NAppMSVC.cmake ├── NAppMacOS.cmake ├── NAppProject.cmake ├── NAppTarget.cmake ├── NAppUtils.cmake ├── NAppVersion.cmake ├── build.txt ├── depend │ └── stdint.h ├── nappgui-config.cmake ├── templates │ ├── Application.manifest │ ├── Info.plist │ ├── logo.icns │ ├── logo256.ico │ ├── logo48.ico │ ├── main-cmd.c │ └── main-desktop.c └── version.txt ├── src ├── core │ ├── CMakeLists.txt │ ├── array.c │ ├── array.h │ ├── arrpt.h │ ├── arrpt.hpp │ ├── arrpt.hxx │ ├── arrst.h │ ├── arrst.hpp │ ├── arrst.hxx │ ├── bhash.c │ ├── bhash.h │ ├── buffer.c │ ├── buffer.h │ ├── clock.c │ ├── clock.h │ ├── core.cpp │ ├── core.h │ ├── core.hdf │ ├── core.hxx │ ├── core.ixx │ ├── coreall.h │ ├── coreh.hxx │ ├── date.c │ ├── date.h │ ├── dbind.c │ ├── dbind.h │ ├── dbind.inl │ ├── dbindh.h │ ├── event.cpp │ ├── event.h │ ├── event.inl │ ├── heap.c │ ├── heap.h │ ├── heap.inl │ ├── hfile.c │ ├── hfile.h │ ├── hfileh.h │ ├── keybuf.c │ ├── keybuf.h │ ├── lex.c │ ├── lex.inl │ ├── nfa.c │ ├── nfa.inl │ ├── obj.c │ ├── objh.h │ ├── rbtree.c │ ├── rbtree.h │ ├── regex.c │ ├── regex.h │ ├── respack.c │ ├── respack.h │ ├── respackh.h │ ├── setpt.h │ ├── setpt.hpp │ ├── setpt.hxx │ ├── setst.h │ ├── setst.hpp │ ├── setst.hxx │ ├── stream.c │ ├── stream.h │ ├── stream.inl │ ├── strings.c │ ├── strings.h │ ├── tfilter.c │ ├── tfilter.h │ └── tfilter.inl ├── draw2d │ ├── CMakeLists.txt │ ├── color.c │ ├── color.h │ ├── dctx.c │ ├── dctx.h │ ├── dctx.inl │ ├── dctxh.h │ ├── draw.h │ ├── draw.inl │ ├── draw2d.c │ ├── draw2d.h │ ├── draw2d.hdf │ ├── draw2d.hxx │ ├── draw2d.inl │ ├── draw2d.ixx │ ├── draw2dall.h │ ├── drawg.cpp │ ├── drawg.h │ ├── drawg.hpp │ ├── font.c │ ├── font.h │ ├── font.inl │ ├── gtk │ │ ├── dctx_gtk.c │ │ ├── dctx_gtk.inl │ │ ├── draw2d_gtk.ixx │ │ ├── draw_gtk.c │ │ ├── osfont.c │ │ ├── osimage.c │ │ └── osimage.inl │ ├── guictx.c │ ├── guictx.h │ ├── guictx.hxx │ ├── image.c │ ├── image.h │ ├── image.inl │ ├── imgutil.c │ ├── imgutil.inl │ ├── osx │ │ ├── dctx_osx.m │ │ ├── draw2d_osx.ixx │ │ ├── draw_osx.m │ │ ├── osfont.m │ │ └── osimage.m │ ├── palette.c │ ├── palette.h │ ├── pixbuf.c │ ├── pixbuf.h │ └── win │ │ ├── dctx_win.cpp │ │ ├── dctx_win.inl │ │ ├── draw2d_gdi.ixx │ │ ├── draw2d_win.ixx │ │ ├── draw_win.cpp │ │ ├── draw_win.inl │ │ ├── osfont.cpp │ │ └── osimage.cpp ├── encode │ ├── CMakeLists.txt │ ├── base64.c │ ├── base64.h │ ├── encode.c │ ├── encode.h │ ├── encode.hdf │ ├── encode.hxx │ ├── json.c │ ├── json.h │ ├── url.c │ └── url.h ├── geom2d │ ├── CMakeLists.txt │ ├── box2d.cpp │ ├── box2d.h │ ├── box2d.hpp │ ├── cir2d.cpp │ ├── cir2d.h │ ├── cir2d.hpp │ ├── col2d.cpp │ ├── col2d.h │ ├── col2d.hpp │ ├── col2d.ipp │ ├── geom2d.hdf │ ├── geom2d.hxx │ ├── geom2dall.h │ ├── obb2d.cpp │ ├── obb2d.h │ ├── obb2d.hpp │ ├── obb2d.ipp │ ├── pol2d.cpp │ ├── pol2d.h │ ├── pol2d.hpp │ ├── pol2d.ipp │ ├── polabel.cpp │ ├── polpart.cpp │ ├── r2d.cpp │ ├── r2d.h │ ├── r2d.hpp │ ├── s2d.cpp │ ├── s2d.h │ ├── s2d.hpp │ ├── seg2d.cpp │ ├── seg2d.h │ ├── seg2d.hpp │ ├── t2d.cpp │ ├── t2d.h │ ├── t2d.hpp │ ├── tri2d.cpp │ ├── tri2d.h │ ├── tri2d.hpp │ ├── v2d.cpp │ ├── v2d.h │ └── v2d.hpp ├── gui │ ├── CMakeLists.txt │ ├── button.c │ ├── button.h │ ├── button.inl │ ├── cell.h │ ├── cell.inl │ ├── combo.c │ ├── combo.h │ ├── combo.inl │ ├── component.c │ ├── component.inl │ ├── comwin.c │ ├── comwin.h │ ├── drawctrl.c │ ├── drawctrl.inl │ ├── edit.c │ ├── edit.h │ ├── edit.inl │ ├── editimp.c │ ├── editimp.inl │ ├── gbind.c │ ├── gbind.inl │ ├── globals.c │ ├── globals.h │ ├── gui.c │ ├── gui.h │ ├── gui.hdf │ ├── gui.hxx │ ├── gui.inl │ ├── gui.ixx │ ├── guiall.h │ ├── guicontrol.c │ ├── guicontrol.h │ ├── imageview.c │ ├── imageview.h │ ├── items.c │ ├── items.inl │ ├── label.c │ ├── label.h │ ├── label.inl │ ├── layout.c │ ├── layout.h │ ├── layout.inl │ ├── layouth.h │ ├── listbox.c │ ├── listbox.h │ ├── listbox.inl │ ├── menu.c │ ├── menu.h │ ├── menu.inl │ ├── menuitem.c │ ├── menuitem.h │ ├── menuitem.inl │ ├── panel.c │ ├── panel.h │ ├── panel.inl │ ├── popup.c │ ├── popup.h │ ├── popup.inl │ ├── progress.c │ ├── progress.h │ ├── progress.inl │ ├── res │ │ └── res_gui │ │ │ ├── bomb.png │ │ │ ├── bomb_dark.png │ │ │ ├── confused.png │ │ │ ├── confused_dark.png │ │ │ ├── logo.png │ │ │ ├── logo_dark.png │ │ │ └── strings.msg │ ├── res_gui.c │ ├── res_gui.h │ ├── scrollview.c │ ├── scrollview.inl │ ├── slider.c │ ├── slider.h │ ├── slider.inl │ ├── splitview.c │ ├── splitview.h │ ├── splitview.inl │ ├── tableview.c │ ├── tableview.h │ ├── tableviewh.h │ ├── textview.c │ ├── textview.h │ ├── textview.inl │ ├── updown.c │ ├── updown.h │ ├── updown.inl │ ├── vctrl.inl │ ├── view.c │ ├── view.h │ ├── view.inl │ ├── webview.c │ ├── webview.h │ ├── webview.inl │ ├── window.c │ ├── window.h │ └── window.inl ├── inet │ ├── CMakeLists.txt │ ├── httpreq.c │ ├── httpreq.h │ ├── inet.c │ ├── inet.h │ ├── inet.hdf │ ├── inet.hxx │ ├── inet.ixx │ ├── linux │ │ └── oshttpreq.c │ ├── oshttpreq.inl │ ├── osx │ │ └── oshttpreq.m │ └── win │ │ └── oshttpreq.c ├── nappgui.h ├── ogl3d │ ├── CMakeLists.txt │ ├── eglew.h │ ├── glew.c │ ├── glew.h │ ├── glxew.h │ ├── gtk │ │ └── ogl3dimp.c │ ├── ogl3d.c │ ├── ogl3d.h │ ├── ogl3d.hdf │ ├── ogl3d.hxx │ ├── ogl3d.inl │ ├── osx │ │ └── ogl3dimp.m │ ├── wglew.h │ └── win │ │ └── ogl3dimp.c ├── osapp │ ├── CMakeLists.txt │ ├── gtk │ │ ├── osapp_gtk.c │ │ ├── osapp_gtk.inl │ │ └── osapp_gtk.ixx │ ├── osapp.c │ ├── osapp.h │ ├── osapp.hdf │ ├── osapp.hxx │ ├── osapp.inl │ ├── osapp.ixx │ ├── osmain.h │ ├── osmain.hxx │ ├── osmain_gtk.h │ ├── osmain_osx.h │ ├── osmain_win.h │ ├── osx │ │ ├── osapp_osx.inl │ │ └── osapp_osx.m │ └── win │ │ ├── osapp_win.c │ │ ├── osapp_win.inl │ │ └── osapp_win.ixx ├── osbs │ ├── CMakeLists.txt │ ├── bfile.h │ ├── bmutex.h │ ├── bproc.h │ ├── bsocket.c │ ├── bsocket.h │ ├── bthread.h │ ├── btime.h │ ├── dlib.h │ ├── linux │ │ └── sinfo.c │ ├── log.c │ ├── log.h │ ├── log.inl │ ├── osbs.c │ ├── osbs.h │ ├── osbs.hdf │ ├── osbs.hxx │ ├── osbs.inl │ ├── osbsall.h │ ├── osx │ │ └── sinfo.m │ ├── unix │ │ ├── bfile.c │ │ ├── bmutex.c │ │ ├── bproc.c │ │ ├── bsocket.c │ │ ├── bthread.c │ │ ├── btime.c │ │ ├── dlib.c │ │ └── sinfo.c │ └── win │ │ ├── bfile.c │ │ ├── bmutex.c │ │ ├── bproc.c │ │ ├── bsocket.c │ │ ├── bthread.c │ │ ├── btime.c │ │ ├── dlib.c │ │ └── sinfo.c ├── osgui │ ├── CMakeLists.txt │ ├── gtk │ │ ├── osbutton.c │ │ ├── osbutton_gtk.inl │ │ ├── oscombo.c │ │ ├── oscombo_gtk.inl │ │ ├── oscomwin.c │ │ ├── oscomwin_gtk.inl │ │ ├── oscontrol.c │ │ ├── oscontrol_gtk.inl │ │ ├── osdrawctrl.c │ │ ├── osedit.c │ │ ├── osedit_gtk.inl │ │ ├── osentry.c │ │ ├── osentry_gtk.inl │ │ ├── osglobals.c │ │ ├── osglobals_gtk.inl │ │ ├── osgui_gtk.c │ │ ├── osgui_gtk.inl │ │ ├── osgui_gtk.ixx │ │ ├── oslistener.c │ │ ├── oslistener.inl │ │ ├── osmenu.c │ │ ├── osmenu_gtk.inl │ │ ├── osmenuitem.c │ │ ├── osmenuitem_gtk.inl │ │ ├── ospanel.c │ │ ├── ospanel_gtk.inl │ │ ├── ospopup.c │ │ ├── ospopup_gtk.inl │ │ ├── osprogress.c │ │ ├── osscroll.c │ │ ├── osscroll_gtk.inl │ │ ├── osslider.c │ │ ├── ossplit.c │ │ ├── ossplit_gtk.inl │ │ ├── ostext.c │ │ ├── ostext_gtk.inl │ │ ├── osupdown.c │ │ ├── osview.c │ │ ├── osview_gtk.inl │ │ ├── osweb.c │ │ ├── osweb_gtk.inl │ │ ├── oswindow.c │ │ └── oswindow_gtk.inl │ ├── osbutton.c │ ├── osbutton.h │ ├── osbutton.inl │ ├── oscombo.c │ ├── oscombo.h │ ├── oscombo.inl │ ├── oscomwin.h │ ├── oscontrol.c │ ├── oscontrol.inl │ ├── osdrawctrl.h │ ├── osedit.c │ ├── osedit.h │ ├── osedit.inl │ ├── osglobals.h │ ├── osgui.c │ ├── osgui.h │ ├── osgui.hdf │ ├── osgui.hxx │ ├── osgui.inl │ ├── osgui.ixx │ ├── osguictx.c │ ├── osguictx.h │ ├── osmenu.h │ ├── osmenuitem.h │ ├── ospanel.c │ ├── ospanel.h │ ├── ospanel.inl │ ├── ospopup.c │ ├── ospopup.h │ ├── ospopup.inl │ ├── osprogress.c │ ├── osprogress.h │ ├── osprogress.inl │ ├── osscroll.inl │ ├── osscrolls.c │ ├── osscrolls.inl │ ├── osslider.c │ ├── osslider.h │ ├── osslider.inl │ ├── ossplit.c │ ├── ossplit.h │ ├── ossplit.inl │ ├── ostabstop.c │ ├── ostabstop.inl │ ├── ostext.c │ ├── ostext.h │ ├── ostext.inl │ ├── osupdown.c │ ├── osupdown.h │ ├── osupdown.inl │ ├── osview.c │ ├── osview.h │ ├── osview.inl │ ├── osweb.c │ ├── osweb.h │ ├── osweb.inl │ ├── oswindow.c │ ├── oswindow.h │ ├── oswindow.inl │ ├── osx │ │ ├── osbutton.m │ │ ├── osbutton_osx.inl │ │ ├── oscolor.inl │ │ ├── oscolor.m │ │ ├── oscombo.m │ │ ├── oscombo_osx.inl │ │ ├── oscomwin.inl │ │ ├── oscomwin.m │ │ ├── oscontrol.m │ │ ├── oscontrol_osx.inl │ │ ├── osdrawctrl.m │ │ ├── osedit.m │ │ ├── osedit_osx.inl │ │ ├── osglobals.inl │ │ ├── osglobals.m │ │ ├── osgui_osx.inl │ │ ├── osgui_osx.ixx │ │ ├── osgui_osx.m │ │ ├── oslistener.inl │ │ ├── oslistener.m │ │ ├── osmenu.m │ │ ├── osmenu_osx.inl │ │ ├── osmenuitem.m │ │ ├── osmenuitem_osx.inl │ │ ├── ospanel.m │ │ ├── ospanel_osx.inl │ │ ├── ospopup.m │ │ ├── ospopup_osx.inl │ │ ├── osprogress.m │ │ ├── osprogress_osx.inl │ │ ├── osscroll.m │ │ ├── osscroll_osx.inl │ │ ├── osslider.m │ │ ├── osslider_osx.inl │ │ ├── ossplit.m │ │ ├── ossplit_osx.inl │ │ ├── ostext.m │ │ ├── ostext_osx.inl │ │ ├── ostextfield.inl │ │ ├── ostextfield.m │ │ ├── osupdown.m │ │ ├── osupdown_osx.inl │ │ ├── osview.m │ │ ├── osview_osx.inl │ │ ├── osweb.m │ │ ├── osweb_osx.inl │ │ ├── oswindow.m │ │ └── oswindow_osx.inl │ └── win │ │ ├── depend │ │ ├── WebView2.h │ │ ├── WebView2EnvironmentOptions.h │ │ ├── arm64 │ │ │ └── WebView2LoaderStatic.lib │ │ ├── x64 │ │ │ └── WebView2LoaderStatic.lib │ │ └── x86 │ │ │ └── WebView2LoaderStatic.lib │ │ ├── osbutton.c │ │ ├── osbutton_win.inl │ │ ├── oscombo.c │ │ ├── oscombo_win.inl │ │ ├── oscomwin.c │ │ ├── oscontrol.cpp │ │ ├── oscontrol_win.inl │ │ ├── osdrawctrl.cpp │ │ ├── osedit.c │ │ ├── osedit_win.inl │ │ ├── osglobals.c │ │ ├── osgui_win.cpp │ │ ├── osgui_win.inl │ │ ├── osgui_win.ixx │ │ ├── osimg.cpp │ │ ├── osimg.inl │ │ ├── osimglist.c │ │ ├── osimglist.inl │ │ ├── oslistener.c │ │ ├── oslistener.inl │ │ ├── osmenu.c │ │ ├── osmenu_win.inl │ │ ├── osmenuitem.c │ │ ├── osmenuitem_win.inl │ │ ├── ospanel.c │ │ ├── ospanel_win.inl │ │ ├── ospopup.c │ │ ├── ospopup_win.inl │ │ ├── osprogress.c │ │ ├── osscroll.c │ │ ├── osscroll_win.inl │ │ ├── osslider.c │ │ ├── osslider_win.inl │ │ ├── ossplit.c │ │ ├── ossplit_win.inl │ │ ├── osstyleXP.c │ │ ├── osstyleXP.inl │ │ ├── ostext.c │ │ ├── ostext_win.inl │ │ ├── osupdown.c │ │ ├── osupdown_win.inl │ │ ├── osview.cpp │ │ ├── osweb.cpp │ │ ├── osweb_win.inl │ │ ├── oswindow.c │ │ └── oswindow_win.inl └── sewer │ ├── CMakeLists.txt │ ├── arch.hxx │ ├── blib.c │ ├── blib.h │ ├── bmath.cpp │ ├── bmath.h │ ├── bmath.hpp │ ├── bmath.inl │ ├── bmem.c │ ├── bmem.h │ ├── bmem.inl │ ├── bstd.h │ ├── cassert.c │ ├── cassert.h │ ├── config.hxx │ ├── nowarn.hxx │ ├── ptr.c │ ├── ptr.h │ ├── qsort.c │ ├── qsort.inl │ ├── sewer.c │ ├── sewer.h │ ├── sewer.hdf │ ├── sewer.hxx │ ├── sewer.inl │ ├── sewerall.h │ ├── types.c │ ├── types.h │ ├── types.hxx │ ├── unicode.c │ ├── unicode.h │ ├── unix │ ├── bmem_unix.c │ └── bstdimp.c │ ├── warn.hxx │ └── win │ ├── bmem_win.c │ └── bstdimp.c └── tools ├── CMakeLists.txt └── nrc ├── CMakeLists.txt ├── msgparser.c ├── msgparser.inl ├── nglob.c ├── nglob.h ├── nrc.c ├── nrc.ixx ├── nrclib.c ├── nrclib.h ├── resgen.c └── resgen.inl /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/.clang-format -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakeTargets.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/CMakeTargets.cmake -------------------------------------------------------------------------------- /Changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/Changelog.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/README.md -------------------------------------------------------------------------------- /demo/bode/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/bode/CMakeLists.txt -------------------------------------------------------------------------------- /demo/bode/bdcalc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/bode/bdcalc.c -------------------------------------------------------------------------------- /demo/bode/bdcalc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/bode/bdcalc.h -------------------------------------------------------------------------------- /demo/bode/bdctrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/bode/bdctrl.c -------------------------------------------------------------------------------- /demo/bode/bdctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/bode/bdctrl.h -------------------------------------------------------------------------------- /demo/bode/bdmodel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/bode/bdmodel.c -------------------------------------------------------------------------------- /demo/bode/bdmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/bode/bdmodel.h -------------------------------------------------------------------------------- /demo/bode/bdplot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/bode/bdplot.c -------------------------------------------------------------------------------- /demo/bode/bdplot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/bode/bdplot.h -------------------------------------------------------------------------------- /demo/bode/bdview.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/bode/bdview.c -------------------------------------------------------------------------------- /demo/bode/bdview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/bode/bdview.h -------------------------------------------------------------------------------- /demo/bode/bode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/bode/bode.c -------------------------------------------------------------------------------- /demo/bode/bode.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/bode/bode.hxx -------------------------------------------------------------------------------- /demo/bode/res/logo.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/bode/res/logo.icns -------------------------------------------------------------------------------- /demo/bode/res/logo256.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/bode/res/logo256.ico -------------------------------------------------------------------------------- /demo/bode/res/logo48.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/bode/res/logo48.ico -------------------------------------------------------------------------------- /demo/bricks/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/bricks/CMakeLists.txt -------------------------------------------------------------------------------- /demo/bricks/bricks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/bricks/bricks.c -------------------------------------------------------------------------------- /demo/bricks/res/logo.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/bricks/res/logo.icns -------------------------------------------------------------------------------- /demo/bricks/res/logo256.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/bricks/res/logo256.ico -------------------------------------------------------------------------------- /demo/bricks/res/logo48.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/bricks/res/logo48.ico -------------------------------------------------------------------------------- /demo/casino/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/casino/CMakeLists.txt -------------------------------------------------------------------------------- /demo/casino/casino.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/casino/casino.c -------------------------------------------------------------------------------- /demo/casino/casino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/casino/casino.h -------------------------------------------------------------------------------- /demo/casino/casino.hdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/casino/casino.hdf -------------------------------------------------------------------------------- /demo/casino/casino.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/casino/casino.hxx -------------------------------------------------------------------------------- /demo/casino/ddraw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/casino/ddraw.c -------------------------------------------------------------------------------- /demo/casino/ddraw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/casino/ddraw.h -------------------------------------------------------------------------------- /demo/col2dhello/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/col2dhello/CMakeLists.txt -------------------------------------------------------------------------------- /demo/col2dhello/col2dgui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/col2dhello/col2dgui.c -------------------------------------------------------------------------------- /demo/col2dhello/col2dgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/col2dhello/col2dgui.h -------------------------------------------------------------------------------- /demo/col2dhello/col2dhello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/col2dhello/col2dhello.c -------------------------------------------------------------------------------- /demo/col2dhello/col2dhello.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/col2dhello/col2dhello.hxx -------------------------------------------------------------------------------- /demo/col2dhello/res/logo.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/col2dhello/res/logo.icns -------------------------------------------------------------------------------- /demo/col2dhello/res/logo256.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/col2dhello/res/logo256.ico -------------------------------------------------------------------------------- /demo/col2dhello/res/logo48.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/col2dhello/res/logo48.ico -------------------------------------------------------------------------------- /demo/colorview/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/colorview/CMakeLists.txt -------------------------------------------------------------------------------- /demo/colorview/colorview.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/colorview/colorview.c -------------------------------------------------------------------------------- /demo/colorview/res/logo.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/colorview/res/logo.icns -------------------------------------------------------------------------------- /demo/colorview/res/logo256.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/colorview/res/logo256.ico -------------------------------------------------------------------------------- /demo/colorview/res/logo48.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/colorview/res/logo48.ico -------------------------------------------------------------------------------- /demo/dice/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/dice/CMakeLists.txt -------------------------------------------------------------------------------- /demo/dice/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/dice/main.c -------------------------------------------------------------------------------- /demo/dice/res/logo.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/dice/res/logo.icns -------------------------------------------------------------------------------- /demo/dice/res/logo256.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/dice/res/logo256.ico -------------------------------------------------------------------------------- /demo/dice/res/logo48.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/dice/res/logo48.ico -------------------------------------------------------------------------------- /demo/die/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/die/CMakeLists.txt -------------------------------------------------------------------------------- /demo/die/dgui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/die/dgui.c -------------------------------------------------------------------------------- /demo/die/dgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/die/dgui.h -------------------------------------------------------------------------------- /demo/die/die.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/die/die.hxx -------------------------------------------------------------------------------- /demo/die/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/die/main.c -------------------------------------------------------------------------------- /demo/die/res/logo.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/die/res/logo.icns -------------------------------------------------------------------------------- /demo/die/res/logo256.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/die/res/logo256.ico -------------------------------------------------------------------------------- /demo/die/res/logo48.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/die/res/logo48.ico -------------------------------------------------------------------------------- /demo/die/res/res_die/cards.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/die/res/res_die/cards.png -------------------------------------------------------------------------------- /demo/die/res/res_die/es_es/strings.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/die/res/res_die/es_es/strings.msg -------------------------------------------------------------------------------- /demo/die/res/res_die/spain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/die/res/res_die/spain.png -------------------------------------------------------------------------------- /demo/die/res/res_die/strings.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/die/res/res_die/strings.msg -------------------------------------------------------------------------------- /demo/die/res/res_die/usa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/die/res/res_die/usa.png -------------------------------------------------------------------------------- /demo/drawbig/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/drawbig/CMakeLists.txt -------------------------------------------------------------------------------- /demo/drawbig/drawbig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/drawbig/drawbig.c -------------------------------------------------------------------------------- /demo/drawbig/res/logo.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/drawbig/res/logo.icns -------------------------------------------------------------------------------- /demo/drawbig/res/logo256.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/drawbig/res/logo256.ico -------------------------------------------------------------------------------- /demo/drawbig/res/logo48.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/drawbig/res/logo48.ico -------------------------------------------------------------------------------- /demo/drawhello/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/drawhello/CMakeLists.txt -------------------------------------------------------------------------------- /demo/drawhello/drawhello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/drawhello/drawhello.c -------------------------------------------------------------------------------- /demo/drawhello/res/logo.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/drawhello/res/logo.icns -------------------------------------------------------------------------------- /demo/drawhello/res/logo256.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/drawhello/res/logo256.ico -------------------------------------------------------------------------------- /demo/drawhello/res/logo48.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/drawhello/res/logo48.ico -------------------------------------------------------------------------------- /demo/drawhello/res/res_drawhello/image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/drawhello/res/res_drawhello/image.jpg -------------------------------------------------------------------------------- /demo/drawimg/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/drawimg/CMakeLists.txt -------------------------------------------------------------------------------- /demo/drawimg/drawimg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/drawimg/drawimg.c -------------------------------------------------------------------------------- /demo/drawimg/res/logo.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/drawimg/res/logo.icns -------------------------------------------------------------------------------- /demo/drawimg/res/logo256.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/drawimg/res/logo256.ico -------------------------------------------------------------------------------- /demo/drawimg/res/logo48.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/drawimg/res/logo48.ico -------------------------------------------------------------------------------- /demo/drawimg/res/res_drawimg/Monkey.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/drawimg/res/res_drawimg/Monkey.gif -------------------------------------------------------------------------------- /demo/drawimg/res/res_drawimg/zombie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/drawimg/res/res_drawimg/zombie.png -------------------------------------------------------------------------------- /demo/fractals/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/fractals/CMakeLists.txt -------------------------------------------------------------------------------- /demo/fractals/fractals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/fractals/fractals.c -------------------------------------------------------------------------------- /demo/fractals/res/logo.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/fractals/res/logo.icns -------------------------------------------------------------------------------- /demo/fractals/res/logo256.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/fractals/res/logo256.ico -------------------------------------------------------------------------------- /demo/fractals/res/logo48.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/fractals/res/logo48.ico -------------------------------------------------------------------------------- /demo/glhello/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/glhello/CMakeLists.txt -------------------------------------------------------------------------------- /demo/glhello/glhello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/glhello/glhello.c -------------------------------------------------------------------------------- /demo/glhello/glhello.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/glhello/glhello.h -------------------------------------------------------------------------------- /demo/glhello/ogl1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/glhello/ogl1.c -------------------------------------------------------------------------------- /demo/glhello/ogl1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/glhello/ogl1.h -------------------------------------------------------------------------------- /demo/glhello/ogl2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/glhello/ogl2.c -------------------------------------------------------------------------------- /demo/glhello/ogl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/glhello/ogl2.h -------------------------------------------------------------------------------- /demo/glhello/ogl3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/glhello/ogl3.c -------------------------------------------------------------------------------- /demo/glhello/ogl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/glhello/ogl3.h -------------------------------------------------------------------------------- /demo/glhello/res/logo.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/glhello/res/logo.icns -------------------------------------------------------------------------------- /demo/glhello/res/logo256.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/glhello/res/logo256.ico -------------------------------------------------------------------------------- /demo/glhello/res/logo48.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/glhello/res/logo48.ico -------------------------------------------------------------------------------- /demo/glhello/res/res_glhello/wall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/glhello/res/res_glhello/wall.png -------------------------------------------------------------------------------- /demo/guihello/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/CMakeLists.txt -------------------------------------------------------------------------------- /demo/guihello/baslayout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/baslayout.c -------------------------------------------------------------------------------- /demo/guihello/baslayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/baslayout.h -------------------------------------------------------------------------------- /demo/guihello/buttonpad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/buttonpad.c -------------------------------------------------------------------------------- /demo/guihello/buttonpad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/buttonpad.h -------------------------------------------------------------------------------- /demo/guihello/buttons.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/buttons.c -------------------------------------------------------------------------------- /demo/guihello/buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/buttons.h -------------------------------------------------------------------------------- /demo/guihello/commons.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/commons.c -------------------------------------------------------------------------------- /demo/guihello/commons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/commons.h -------------------------------------------------------------------------------- /demo/guihello/dynlay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/dynlay.c -------------------------------------------------------------------------------- /demo/guihello/dynlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/dynlay.h -------------------------------------------------------------------------------- /demo/guihello/dynmenu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/dynmenu.c -------------------------------------------------------------------------------- /demo/guihello/dynmenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/dynmenu.h -------------------------------------------------------------------------------- /demo/guihello/editor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/editor.c -------------------------------------------------------------------------------- /demo/guihello/editor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/editor.h -------------------------------------------------------------------------------- /demo/guihello/editpad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/editpad.c -------------------------------------------------------------------------------- /demo/guihello/editpad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/editpad.h -------------------------------------------------------------------------------- /demo/guihello/flyout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/flyout.c -------------------------------------------------------------------------------- /demo/guihello/flyout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/flyout.h -------------------------------------------------------------------------------- /demo/guihello/fontunits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/fontunits.c -------------------------------------------------------------------------------- /demo/guihello/fontunits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/fontunits.h -------------------------------------------------------------------------------- /demo/guihello/fontx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/fontx.c -------------------------------------------------------------------------------- /demo/guihello/fontx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/fontx.h -------------------------------------------------------------------------------- /demo/guihello/form.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/form.c -------------------------------------------------------------------------------- /demo/guihello/form.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/form.h -------------------------------------------------------------------------------- /demo/guihello/guibind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/guibind.c -------------------------------------------------------------------------------- /demo/guihello/guibind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/guibind.h -------------------------------------------------------------------------------- /demo/guihello/guihello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/guihello.c -------------------------------------------------------------------------------- /demo/guihello/hotkeys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/hotkeys.c -------------------------------------------------------------------------------- /demo/guihello/hotkeys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/hotkeys.h -------------------------------------------------------------------------------- /demo/guihello/ipinput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/ipinput.c -------------------------------------------------------------------------------- /demo/guihello/ipinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/ipinput.h -------------------------------------------------------------------------------- /demo/guihello/labels.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/labels.c -------------------------------------------------------------------------------- /demo/guihello/labels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/labels.h -------------------------------------------------------------------------------- /demo/guihello/layoutbind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/layoutbind.c -------------------------------------------------------------------------------- /demo/guihello/layoutbind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/layoutbind.h -------------------------------------------------------------------------------- /demo/guihello/listboxes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/listboxes.c -------------------------------------------------------------------------------- /demo/guihello/listboxes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/listboxes.h -------------------------------------------------------------------------------- /demo/guihello/modalwin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/modalwin.c -------------------------------------------------------------------------------- /demo/guihello/modalwin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/modalwin.h -------------------------------------------------------------------------------- /demo/guihello/multilayout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/multilayout.c -------------------------------------------------------------------------------- /demo/guihello/multilayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/multilayout.h -------------------------------------------------------------------------------- /demo/guihello/popcom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/popcom.c -------------------------------------------------------------------------------- /demo/guihello/popcom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/popcom.h -------------------------------------------------------------------------------- /demo/guihello/reduce.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/reduce.c -------------------------------------------------------------------------------- /demo/guihello/reduce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/reduce.h -------------------------------------------------------------------------------- /demo/guihello/res/logo.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/res/logo.icns -------------------------------------------------------------------------------- /demo/guihello/res/logo256.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/res/logo256.ico -------------------------------------------------------------------------------- /demo/guihello/res/logo48.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/res/logo48.ico -------------------------------------------------------------------------------- /demo/guihello/res/res_guihello/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/res/res_guihello/about.png -------------------------------------------------------------------------------- /demo/guihello/res/res_guihello/access.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/res/res_guihello/access.png -------------------------------------------------------------------------------- /demo/guihello/res/res_guihello/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/res/res_guihello/back.png -------------------------------------------------------------------------------- /demo/guihello/res/res_guihello/back16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/res/res_guihello/back16.png -------------------------------------------------------------------------------- /demo/guihello/res/res_guihello/black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/res/res_guihello/black.png -------------------------------------------------------------------------------- /demo/guihello/res/res_guihello/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/res/res_guihello/blue.png -------------------------------------------------------------------------------- /demo/guihello/res/res_guihello/car.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/res/res_guihello/car.jpg -------------------------------------------------------------------------------- /demo/guihello/res/res_guihello/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/res/res_guihello/close.png -------------------------------------------------------------------------------- /demo/guihello/res/res_guihello/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/res/res_guihello/copy.png -------------------------------------------------------------------------------- /demo/guihello/res/res_guihello/cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/res/res_guihello/cut.png -------------------------------------------------------------------------------- /demo/guihello/res/res_guihello/disk12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/res/res_guihello/disk12.png -------------------------------------------------------------------------------- /demo/guihello/res/res_guihello/disk16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/res/res_guihello/disk16.png -------------------------------------------------------------------------------- /demo/guihello/res/res_guihello/disk24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/res/res_guihello/disk24.png -------------------------------------------------------------------------------- /demo/guihello/res/res_guihello/disk32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/res/res_guihello/disk32.png -------------------------------------------------------------------------------- /demo/guihello/res/res_guihello/disk64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/res/res_guihello/disk64.png -------------------------------------------------------------------------------- /demo/guihello/res/res_guihello/disk8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/res/res_guihello/disk8.png -------------------------------------------------------------------------------- /demo/guihello/res/res_guihello/edit16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/res/res_guihello/edit16.png -------------------------------------------------------------------------------- /demo/guihello/res/res_guihello/edit24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/res/res_guihello/edit24.png -------------------------------------------------------------------------------- /demo/guihello/res/res_guihello/edit32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/res/res_guihello/edit32.png -------------------------------------------------------------------------------- /demo/guihello/res/res_guihello/edit64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/res/res_guihello/edit64.png -------------------------------------------------------------------------------- /demo/guihello/res/res_guihello/excel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/res/res_guihello/excel.png -------------------------------------------------------------------------------- /demo/guihello/res/res_guihello/exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/res/res_guihello/exit.png -------------------------------------------------------------------------------- /demo/guihello/res/res_guihello/first.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/res/res_guihello/first.png -------------------------------------------------------------------------------- /demo/guihello/res/res_guihello/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/res/res_guihello/green.png -------------------------------------------------------------------------------- /demo/guihello/res/res_guihello/italy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/res/res_guihello/italy.png -------------------------------------------------------------------------------- /demo/guihello/res/res_guihello/japan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/res/res_guihello/japan.png -------------------------------------------------------------------------------- /demo/guihello/res/res_guihello/jpg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/res/res_guihello/jpg.png -------------------------------------------------------------------------------- /demo/guihello/res/res_guihello/laptop.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/res/res_guihello/laptop.jpg -------------------------------------------------------------------------------- /demo/guihello/res/res_guihello/last.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/res/res_guihello/last.png -------------------------------------------------------------------------------- /demo/guihello/res/res_guihello/last16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/res/res_guihello/last16.png -------------------------------------------------------------------------------- /demo/guihello/res/res_guihello/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/res/res_guihello/login.png -------------------------------------------------------------------------------- /demo/guihello/res/res_guihello/logout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/res/res_guihello/logout.png -------------------------------------------------------------------------------- /demo/guihello/res/res_guihello/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/res/res_guihello/next.png -------------------------------------------------------------------------------- /demo/guihello/res/res_guihello/next16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/res/res_guihello/next16.png -------------------------------------------------------------------------------- /demo/guihello/res/res_guihello/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/res/res_guihello/open.png -------------------------------------------------------------------------------- /demo/guihello/res/res_guihello/paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/res/res_guihello/paste.png -------------------------------------------------------------------------------- /demo/guihello/res/res_guihello/pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/res/res_guihello/pdf.png -------------------------------------------------------------------------------- /demo/guihello/res/res_guihello/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/res/res_guihello/play.png -------------------------------------------------------------------------------- /demo/guihello/res/res_guihello/plus16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/res/res_guihello/plus16.png -------------------------------------------------------------------------------- /demo/guihello/res/res_guihello/plus24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/res/res_guihello/plus24.png -------------------------------------------------------------------------------- /demo/guihello/res/res_guihello/plus32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/res/res_guihello/plus32.png -------------------------------------------------------------------------------- /demo/guihello/res/res_guihello/plus64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/res/res_guihello/plus64.png -------------------------------------------------------------------------------- /demo/guihello/res/res_guihello/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/res/res_guihello/red.png -------------------------------------------------------------------------------- /demo/guihello/res/res_guihello/retry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/res/res_guihello/retry.png -------------------------------------------------------------------------------- /demo/guihello/res/res_guihello/russia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/res/res_guihello/russia.png -------------------------------------------------------------------------------- /demo/guihello/res/res_guihello/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/res/res_guihello/save.png -------------------------------------------------------------------------------- /demo/guihello/res/res_guihello/spain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/res/res_guihello/spain.png -------------------------------------------------------------------------------- /demo/guihello/res/res_guihello/uking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/res/res_guihello/uking.png -------------------------------------------------------------------------------- /demo/guihello/res/res_guihello/white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/res/res_guihello/white.png -------------------------------------------------------------------------------- /demo/guihello/res/res_guihello/word.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/res/res_guihello/word.png -------------------------------------------------------------------------------- /demo/guihello/res/res_guihello/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/res/res_guihello/yellow.png -------------------------------------------------------------------------------- /demo/guihello/scrollpanel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/scrollpanel.c -------------------------------------------------------------------------------- /demo/guihello/scrollpanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/scrollpanel.h -------------------------------------------------------------------------------- /demo/guihello/seltext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/seltext.c -------------------------------------------------------------------------------- /demo/guihello/seltext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/seltext.h -------------------------------------------------------------------------------- /demo/guihello/sliders.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/sliders.c -------------------------------------------------------------------------------- /demo/guihello/sliders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/sliders.h -------------------------------------------------------------------------------- /demo/guihello/splits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/splits.c -------------------------------------------------------------------------------- /demo/guihello/splits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/splits.h -------------------------------------------------------------------------------- /demo/guihello/sublayout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/sublayout.c -------------------------------------------------------------------------------- /demo/guihello/sublayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/sublayout.h -------------------------------------------------------------------------------- /demo/guihello/subpanel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/subpanel.c -------------------------------------------------------------------------------- /demo/guihello/subpanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/subpanel.h -------------------------------------------------------------------------------- /demo/guihello/table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/table.c -------------------------------------------------------------------------------- /demo/guihello/table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/table.h -------------------------------------------------------------------------------- /demo/guihello/tabstops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/tabstops.c -------------------------------------------------------------------------------- /demo/guihello/tabstops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/tabstops.h -------------------------------------------------------------------------------- /demo/guihello/textviews.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/textviews.c -------------------------------------------------------------------------------- /demo/guihello/textviews.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/guihello/textviews.h -------------------------------------------------------------------------------- /demo/hello/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/hello/CMakeLists.txt -------------------------------------------------------------------------------- /demo/hello/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/hello/main.c -------------------------------------------------------------------------------- /demo/hello/res/logo.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/hello/res/logo.icns -------------------------------------------------------------------------------- /demo/hello/res/logo256.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/hello/res/logo256.ico -------------------------------------------------------------------------------- /demo/hello/res/logo48.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/hello/res/logo48.ico -------------------------------------------------------------------------------- /demo/hellocpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/hellocpp/CMakeLists.txt -------------------------------------------------------------------------------- /demo/hellocpp/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/hellocpp/main.cpp -------------------------------------------------------------------------------- /demo/hellocpp/res/logo.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/hellocpp/res/logo.icns -------------------------------------------------------------------------------- /demo/hellocpp/res/logo256.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/hellocpp/res/logo256.ico -------------------------------------------------------------------------------- /demo/hellocpp/res/logo48.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/hellocpp/res/logo48.ico -------------------------------------------------------------------------------- /demo/htjson/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/htjson/CMakeLists.txt -------------------------------------------------------------------------------- /demo/htjson/htjson.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/htjson/htjson.c -------------------------------------------------------------------------------- /demo/products/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/products/CMakeLists.txt -------------------------------------------------------------------------------- /demo/products/prctrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/products/prctrl.c -------------------------------------------------------------------------------- /demo/products/prctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/products/prctrl.h -------------------------------------------------------------------------------- /demo/products/prmenu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/products/prmenu.c -------------------------------------------------------------------------------- /demo/products/prmenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/products/prmenu.h -------------------------------------------------------------------------------- /demo/products/prmodel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/products/prmodel.c -------------------------------------------------------------------------------- /demo/products/prmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/products/prmodel.h -------------------------------------------------------------------------------- /demo/products/products.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/products/products.c -------------------------------------------------------------------------------- /demo/products/products.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/products/products.hxx -------------------------------------------------------------------------------- /demo/products/prview.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/products/prview.c -------------------------------------------------------------------------------- /demo/products/prview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/products/prview.h -------------------------------------------------------------------------------- /demo/products/res/logo.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/products/res/logo.icns -------------------------------------------------------------------------------- /demo/products/res/logo256.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/products/res/logo256.ico -------------------------------------------------------------------------------- /demo/products/res/logo48.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/products/res/logo48.ico -------------------------------------------------------------------------------- /demo/products/res/res_products/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/products/res/res_products/about.png -------------------------------------------------------------------------------- /demo/products/res/res_products/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/products/res/res_products/add.png -------------------------------------------------------------------------------- /demo/products/res/res_products/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/products/res/res_products/back.png -------------------------------------------------------------------------------- /demo/products/res/res_products/back16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/products/res/res_products/back16.png -------------------------------------------------------------------------------- /demo/products/res/res_products/backd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/products/res/res_products/backd.png -------------------------------------------------------------------------------- /demo/products/res/res_products/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/products/res/res_products/edit.png -------------------------------------------------------------------------------- /demo/products/res/res_products/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/products/res/res_products/error.png -------------------------------------------------------------------------------- /demo/products/res/res_products/exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/products/res/res_products/exit.png -------------------------------------------------------------------------------- /demo/products/res/res_products/first.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/products/res/res_products/first.png -------------------------------------------------------------------------------- /demo/products/res/res_products/firstd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/products/res/res_products/firstd.png -------------------------------------------------------------------------------- /demo/products/res/res_products/italy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/products/res/res_products/italy.png -------------------------------------------------------------------------------- /demo/products/res/res_products/japan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/products/res/res_products/japan.png -------------------------------------------------------------------------------- /demo/products/res/res_products/last.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/products/res/res_products/last.png -------------------------------------------------------------------------------- /demo/products/res/res_products/last16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/products/res/res_products/last16.png -------------------------------------------------------------------------------- /demo/products/res/res_products/lastd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/products/res/res_products/lastd.png -------------------------------------------------------------------------------- /demo/products/res/res_products/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/products/res/res_products/minus.png -------------------------------------------------------------------------------- /demo/products/res/res_products/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/products/res/res_products/next.png -------------------------------------------------------------------------------- /demo/products/res/res_products/next16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/products/res/res_products/next16.png -------------------------------------------------------------------------------- /demo/products/res/res_products/nextd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/products/res/res_products/nextd.png -------------------------------------------------------------------------------- /demo/products/res/res_products/ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/products/res/res_products/ok.png -------------------------------------------------------------------------------- /demo/products/res/res_products/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/products/res/res_products/open.png -------------------------------------------------------------------------------- /demo/products/res/res_products/russia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/products/res/res_products/russia.png -------------------------------------------------------------------------------- /demo/products/res/res_products/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/products/res/res_products/save.png -------------------------------------------------------------------------------- /demo/products/res/res_products/saved.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/products/res/res_products/saved.png -------------------------------------------------------------------------------- /demo/products/res/res_products/spain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/products/res/res_products/spain.png -------------------------------------------------------------------------------- /demo/products/res/res_products/spin.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/products/res/res_products/spin.gif -------------------------------------------------------------------------------- /demo/products/res/res_products/usa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/products/res/res_products/usa.png -------------------------------------------------------------------------------- /demo/products/res/res_products/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/products/res/res_products/user.png -------------------------------------------------------------------------------- /demo/stlcmp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/stlcmp/CMakeLists.txt -------------------------------------------------------------------------------- /demo/stlcmp/stlcmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/stlcmp/stlcmp.cpp -------------------------------------------------------------------------------- /demo/urlimg/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/urlimg/CMakeLists.txt -------------------------------------------------------------------------------- /demo/urlimg/res/logo.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/urlimg/res/logo.icns -------------------------------------------------------------------------------- /demo/urlimg/res/logo256.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/urlimg/res/logo256.ico -------------------------------------------------------------------------------- /demo/urlimg/res/logo48.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/urlimg/res/logo48.ico -------------------------------------------------------------------------------- /demo/urlimg/urlimg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/urlimg/urlimg.c -------------------------------------------------------------------------------- /demo/webhello/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/webhello/CMakeLists.txt -------------------------------------------------------------------------------- /demo/webhello/res/logo.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/webhello/res/logo.icns -------------------------------------------------------------------------------- /demo/webhello/res/logo256.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/webhello/res/logo256.ico -------------------------------------------------------------------------------- /demo/webhello/res/logo48.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/webhello/res/logo48.ico -------------------------------------------------------------------------------- /demo/webhello/webhello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/demo/webhello/webhello.c -------------------------------------------------------------------------------- /prj/NAppAppleClang.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/prj/NAppAppleClang.cmake -------------------------------------------------------------------------------- /prj/NAppClang.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/prj/NAppClang.cmake -------------------------------------------------------------------------------- /prj/NAppCompilers.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/prj/NAppCompilers.cmake -------------------------------------------------------------------------------- /prj/NAppGCC.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/prj/NAppGCC.cmake -------------------------------------------------------------------------------- /prj/NAppGenerateTools.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/prj/NAppGenerateTools.cmake -------------------------------------------------------------------------------- /prj/NAppGenerators.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/prj/NAppGenerators.cmake -------------------------------------------------------------------------------- /prj/NAppMSVC.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/prj/NAppMSVC.cmake -------------------------------------------------------------------------------- /prj/NAppMacOS.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/prj/NAppMacOS.cmake -------------------------------------------------------------------------------- /prj/NAppProject.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/prj/NAppProject.cmake -------------------------------------------------------------------------------- /prj/NAppTarget.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/prj/NAppTarget.cmake -------------------------------------------------------------------------------- /prj/NAppUtils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/prj/NAppUtils.cmake -------------------------------------------------------------------------------- /prj/NAppVersion.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/prj/NAppVersion.cmake -------------------------------------------------------------------------------- /prj/build.txt: -------------------------------------------------------------------------------- 1 | 6674 2 | -------------------------------------------------------------------------------- /prj/depend/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/prj/depend/stdint.h -------------------------------------------------------------------------------- /prj/nappgui-config.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/prj/nappgui-config.cmake -------------------------------------------------------------------------------- /prj/templates/Application.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/prj/templates/Application.manifest -------------------------------------------------------------------------------- /prj/templates/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/prj/templates/Info.plist -------------------------------------------------------------------------------- /prj/templates/logo.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/prj/templates/logo.icns -------------------------------------------------------------------------------- /prj/templates/logo256.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/prj/templates/logo256.ico -------------------------------------------------------------------------------- /prj/templates/logo48.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/prj/templates/logo48.ico -------------------------------------------------------------------------------- /prj/templates/main-cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/prj/templates/main-cmd.c -------------------------------------------------------------------------------- /prj/templates/main-desktop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/prj/templates/main-desktop.c -------------------------------------------------------------------------------- /prj/version.txt: -------------------------------------------------------------------------------- 1 | 1.6.0 -------------------------------------------------------------------------------- /src/core/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | nap_library(core "osbs" "${NAPPGUI_SHARED}" NRC_NONE) 2 | -------------------------------------------------------------------------------- /src/core/array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/core/array.c -------------------------------------------------------------------------------- /src/core/array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/core/array.h -------------------------------------------------------------------------------- /src/core/arrpt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/core/arrpt.h -------------------------------------------------------------------------------- /src/core/arrpt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/core/arrpt.hpp -------------------------------------------------------------------------------- /src/core/arrpt.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/core/arrpt.hxx -------------------------------------------------------------------------------- /src/core/arrst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/core/arrst.h -------------------------------------------------------------------------------- /src/core/arrst.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/core/arrst.hpp -------------------------------------------------------------------------------- /src/core/arrst.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/core/arrst.hxx -------------------------------------------------------------------------------- /src/core/bhash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/core/bhash.c -------------------------------------------------------------------------------- /src/core/bhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/core/bhash.h -------------------------------------------------------------------------------- /src/core/buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/core/buffer.c -------------------------------------------------------------------------------- /src/core/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/core/buffer.h -------------------------------------------------------------------------------- /src/core/clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/core/clock.c -------------------------------------------------------------------------------- /src/core/clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/core/clock.h -------------------------------------------------------------------------------- /src/core/core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/core/core.cpp -------------------------------------------------------------------------------- /src/core/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/core/core.h -------------------------------------------------------------------------------- /src/core/core.hdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/core/core.hdf -------------------------------------------------------------------------------- /src/core/core.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/core/core.hxx -------------------------------------------------------------------------------- /src/core/core.ixx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/core/core.ixx -------------------------------------------------------------------------------- /src/core/coreall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/core/coreall.h -------------------------------------------------------------------------------- /src/core/coreh.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/core/coreh.hxx -------------------------------------------------------------------------------- /src/core/date.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/core/date.c -------------------------------------------------------------------------------- /src/core/date.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/core/date.h -------------------------------------------------------------------------------- /src/core/dbind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/core/dbind.c -------------------------------------------------------------------------------- /src/core/dbind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/core/dbind.h -------------------------------------------------------------------------------- /src/core/dbind.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/core/dbind.inl -------------------------------------------------------------------------------- /src/core/dbindh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/core/dbindh.h -------------------------------------------------------------------------------- /src/core/event.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/core/event.cpp -------------------------------------------------------------------------------- /src/core/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/core/event.h -------------------------------------------------------------------------------- /src/core/event.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/core/event.inl -------------------------------------------------------------------------------- /src/core/heap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/core/heap.c -------------------------------------------------------------------------------- /src/core/heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/core/heap.h -------------------------------------------------------------------------------- /src/core/heap.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/core/heap.inl -------------------------------------------------------------------------------- /src/core/hfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/core/hfile.c -------------------------------------------------------------------------------- /src/core/hfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/core/hfile.h -------------------------------------------------------------------------------- /src/core/hfileh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/core/hfileh.h -------------------------------------------------------------------------------- /src/core/keybuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/core/keybuf.c -------------------------------------------------------------------------------- /src/core/keybuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/core/keybuf.h -------------------------------------------------------------------------------- /src/core/lex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/core/lex.c -------------------------------------------------------------------------------- /src/core/lex.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/core/lex.inl -------------------------------------------------------------------------------- /src/core/nfa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/core/nfa.c -------------------------------------------------------------------------------- /src/core/nfa.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/core/nfa.inl -------------------------------------------------------------------------------- /src/core/obj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/core/obj.c -------------------------------------------------------------------------------- /src/core/objh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/core/objh.h -------------------------------------------------------------------------------- /src/core/rbtree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/core/rbtree.c -------------------------------------------------------------------------------- /src/core/rbtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/core/rbtree.h -------------------------------------------------------------------------------- /src/core/regex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/core/regex.c -------------------------------------------------------------------------------- /src/core/regex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/core/regex.h -------------------------------------------------------------------------------- /src/core/respack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/core/respack.c -------------------------------------------------------------------------------- /src/core/respack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/core/respack.h -------------------------------------------------------------------------------- /src/core/respackh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/core/respackh.h -------------------------------------------------------------------------------- /src/core/setpt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/core/setpt.h -------------------------------------------------------------------------------- /src/core/setpt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/core/setpt.hpp -------------------------------------------------------------------------------- /src/core/setpt.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/core/setpt.hxx -------------------------------------------------------------------------------- /src/core/setst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/core/setst.h -------------------------------------------------------------------------------- /src/core/setst.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/core/setst.hpp -------------------------------------------------------------------------------- /src/core/setst.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/core/setst.hxx -------------------------------------------------------------------------------- /src/core/stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/core/stream.c -------------------------------------------------------------------------------- /src/core/stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/core/stream.h -------------------------------------------------------------------------------- /src/core/stream.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/core/stream.inl -------------------------------------------------------------------------------- /src/core/strings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/core/strings.c -------------------------------------------------------------------------------- /src/core/strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/core/strings.h -------------------------------------------------------------------------------- /src/core/tfilter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/core/tfilter.c -------------------------------------------------------------------------------- /src/core/tfilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/core/tfilter.h -------------------------------------------------------------------------------- /src/core/tfilter.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/core/tfilter.inl -------------------------------------------------------------------------------- /src/draw2d/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | nap_library(draw2d "geom2d" "${NAPPGUI_SHARED}" NRC_NONE) 2 | -------------------------------------------------------------------------------- /src/draw2d/color.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/draw2d/color.c -------------------------------------------------------------------------------- /src/draw2d/color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/draw2d/color.h -------------------------------------------------------------------------------- /src/draw2d/dctx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/draw2d/dctx.c -------------------------------------------------------------------------------- /src/draw2d/dctx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/draw2d/dctx.h -------------------------------------------------------------------------------- /src/draw2d/dctx.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/draw2d/dctx.inl -------------------------------------------------------------------------------- /src/draw2d/dctxh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/draw2d/dctxh.h -------------------------------------------------------------------------------- /src/draw2d/draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/draw2d/draw.h -------------------------------------------------------------------------------- /src/draw2d/draw.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/draw2d/draw.inl -------------------------------------------------------------------------------- /src/draw2d/draw2d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/draw2d/draw2d.c -------------------------------------------------------------------------------- /src/draw2d/draw2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/draw2d/draw2d.h -------------------------------------------------------------------------------- /src/draw2d/draw2d.hdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/draw2d/draw2d.hdf -------------------------------------------------------------------------------- /src/draw2d/draw2d.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/draw2d/draw2d.hxx -------------------------------------------------------------------------------- /src/draw2d/draw2d.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/draw2d/draw2d.inl -------------------------------------------------------------------------------- /src/draw2d/draw2d.ixx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/draw2d/draw2d.ixx -------------------------------------------------------------------------------- /src/draw2d/draw2dall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/draw2d/draw2dall.h -------------------------------------------------------------------------------- /src/draw2d/drawg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/draw2d/drawg.cpp -------------------------------------------------------------------------------- /src/draw2d/drawg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/draw2d/drawg.h -------------------------------------------------------------------------------- /src/draw2d/drawg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/draw2d/drawg.hpp -------------------------------------------------------------------------------- /src/draw2d/font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/draw2d/font.c -------------------------------------------------------------------------------- /src/draw2d/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/draw2d/font.h -------------------------------------------------------------------------------- /src/draw2d/font.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/draw2d/font.inl -------------------------------------------------------------------------------- /src/draw2d/gtk/dctx_gtk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/draw2d/gtk/dctx_gtk.c -------------------------------------------------------------------------------- /src/draw2d/gtk/dctx_gtk.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/draw2d/gtk/dctx_gtk.inl -------------------------------------------------------------------------------- /src/draw2d/gtk/draw2d_gtk.ixx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/draw2d/gtk/draw2d_gtk.ixx -------------------------------------------------------------------------------- /src/draw2d/gtk/draw_gtk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/draw2d/gtk/draw_gtk.c -------------------------------------------------------------------------------- /src/draw2d/gtk/osfont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/draw2d/gtk/osfont.c -------------------------------------------------------------------------------- /src/draw2d/gtk/osimage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/draw2d/gtk/osimage.c -------------------------------------------------------------------------------- /src/draw2d/gtk/osimage.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/draw2d/gtk/osimage.inl -------------------------------------------------------------------------------- /src/draw2d/guictx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/draw2d/guictx.c -------------------------------------------------------------------------------- /src/draw2d/guictx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/draw2d/guictx.h -------------------------------------------------------------------------------- /src/draw2d/guictx.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/draw2d/guictx.hxx -------------------------------------------------------------------------------- /src/draw2d/image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/draw2d/image.c -------------------------------------------------------------------------------- /src/draw2d/image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/draw2d/image.h -------------------------------------------------------------------------------- /src/draw2d/image.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/draw2d/image.inl -------------------------------------------------------------------------------- /src/draw2d/imgutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/draw2d/imgutil.c -------------------------------------------------------------------------------- /src/draw2d/imgutil.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/draw2d/imgutil.inl -------------------------------------------------------------------------------- /src/draw2d/osx/dctx_osx.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/draw2d/osx/dctx_osx.m -------------------------------------------------------------------------------- /src/draw2d/osx/draw2d_osx.ixx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/draw2d/osx/draw2d_osx.ixx -------------------------------------------------------------------------------- /src/draw2d/osx/draw_osx.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/draw2d/osx/draw_osx.m -------------------------------------------------------------------------------- /src/draw2d/osx/osfont.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/draw2d/osx/osfont.m -------------------------------------------------------------------------------- /src/draw2d/osx/osimage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/draw2d/osx/osimage.m -------------------------------------------------------------------------------- /src/draw2d/palette.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/draw2d/palette.c -------------------------------------------------------------------------------- /src/draw2d/palette.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/draw2d/palette.h -------------------------------------------------------------------------------- /src/draw2d/pixbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/draw2d/pixbuf.c -------------------------------------------------------------------------------- /src/draw2d/pixbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/draw2d/pixbuf.h -------------------------------------------------------------------------------- /src/draw2d/win/dctx_win.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/draw2d/win/dctx_win.cpp -------------------------------------------------------------------------------- /src/draw2d/win/dctx_win.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/draw2d/win/dctx_win.inl -------------------------------------------------------------------------------- /src/draw2d/win/draw2d_gdi.ixx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/draw2d/win/draw2d_gdi.ixx -------------------------------------------------------------------------------- /src/draw2d/win/draw2d_win.ixx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/draw2d/win/draw2d_win.ixx -------------------------------------------------------------------------------- /src/draw2d/win/draw_win.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/draw2d/win/draw_win.cpp -------------------------------------------------------------------------------- /src/draw2d/win/draw_win.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/draw2d/win/draw_win.inl -------------------------------------------------------------------------------- /src/draw2d/win/osfont.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/draw2d/win/osfont.cpp -------------------------------------------------------------------------------- /src/draw2d/win/osimage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/draw2d/win/osimage.cpp -------------------------------------------------------------------------------- /src/encode/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | nap_library(encode "core" "${NAPPGUI_SHARED}" NRC_NONE) 2 | -------------------------------------------------------------------------------- /src/encode/base64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/encode/base64.c -------------------------------------------------------------------------------- /src/encode/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/encode/base64.h -------------------------------------------------------------------------------- /src/encode/encode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/encode/encode.c -------------------------------------------------------------------------------- /src/encode/encode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/encode/encode.h -------------------------------------------------------------------------------- /src/encode/encode.hdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/encode/encode.hdf -------------------------------------------------------------------------------- /src/encode/encode.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/encode/encode.hxx -------------------------------------------------------------------------------- /src/encode/json.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/encode/json.c -------------------------------------------------------------------------------- /src/encode/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/encode/json.h -------------------------------------------------------------------------------- /src/encode/url.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/encode/url.c -------------------------------------------------------------------------------- /src/encode/url.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/encode/url.h -------------------------------------------------------------------------------- /src/geom2d/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | nap_library(geom2d "core" "${NAPPGUI_SHARED}" NRC_NONE) 2 | -------------------------------------------------------------------------------- /src/geom2d/box2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/geom2d/box2d.cpp -------------------------------------------------------------------------------- /src/geom2d/box2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/geom2d/box2d.h -------------------------------------------------------------------------------- /src/geom2d/box2d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/geom2d/box2d.hpp -------------------------------------------------------------------------------- /src/geom2d/cir2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/geom2d/cir2d.cpp -------------------------------------------------------------------------------- /src/geom2d/cir2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/geom2d/cir2d.h -------------------------------------------------------------------------------- /src/geom2d/cir2d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/geom2d/cir2d.hpp -------------------------------------------------------------------------------- /src/geom2d/col2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/geom2d/col2d.cpp -------------------------------------------------------------------------------- /src/geom2d/col2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/geom2d/col2d.h -------------------------------------------------------------------------------- /src/geom2d/col2d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/geom2d/col2d.hpp -------------------------------------------------------------------------------- /src/geom2d/col2d.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/geom2d/col2d.ipp -------------------------------------------------------------------------------- /src/geom2d/geom2d.hdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/geom2d/geom2d.hdf -------------------------------------------------------------------------------- /src/geom2d/geom2d.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/geom2d/geom2d.hxx -------------------------------------------------------------------------------- /src/geom2d/geom2dall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/geom2d/geom2dall.h -------------------------------------------------------------------------------- /src/geom2d/obb2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/geom2d/obb2d.cpp -------------------------------------------------------------------------------- /src/geom2d/obb2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/geom2d/obb2d.h -------------------------------------------------------------------------------- /src/geom2d/obb2d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/geom2d/obb2d.hpp -------------------------------------------------------------------------------- /src/geom2d/obb2d.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/geom2d/obb2d.ipp -------------------------------------------------------------------------------- /src/geom2d/pol2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/geom2d/pol2d.cpp -------------------------------------------------------------------------------- /src/geom2d/pol2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/geom2d/pol2d.h -------------------------------------------------------------------------------- /src/geom2d/pol2d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/geom2d/pol2d.hpp -------------------------------------------------------------------------------- /src/geom2d/pol2d.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/geom2d/pol2d.ipp -------------------------------------------------------------------------------- /src/geom2d/polabel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/geom2d/polabel.cpp -------------------------------------------------------------------------------- /src/geom2d/polpart.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/geom2d/polpart.cpp -------------------------------------------------------------------------------- /src/geom2d/r2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/geom2d/r2d.cpp -------------------------------------------------------------------------------- /src/geom2d/r2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/geom2d/r2d.h -------------------------------------------------------------------------------- /src/geom2d/r2d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/geom2d/r2d.hpp -------------------------------------------------------------------------------- /src/geom2d/s2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/geom2d/s2d.cpp -------------------------------------------------------------------------------- /src/geom2d/s2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/geom2d/s2d.h -------------------------------------------------------------------------------- /src/geom2d/s2d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/geom2d/s2d.hpp -------------------------------------------------------------------------------- /src/geom2d/seg2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/geom2d/seg2d.cpp -------------------------------------------------------------------------------- /src/geom2d/seg2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/geom2d/seg2d.h -------------------------------------------------------------------------------- /src/geom2d/seg2d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/geom2d/seg2d.hpp -------------------------------------------------------------------------------- /src/geom2d/t2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/geom2d/t2d.cpp -------------------------------------------------------------------------------- /src/geom2d/t2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/geom2d/t2d.h -------------------------------------------------------------------------------- /src/geom2d/t2d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/geom2d/t2d.hpp -------------------------------------------------------------------------------- /src/geom2d/tri2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/geom2d/tri2d.cpp -------------------------------------------------------------------------------- /src/geom2d/tri2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/geom2d/tri2d.h -------------------------------------------------------------------------------- /src/geom2d/tri2d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/geom2d/tri2d.hpp -------------------------------------------------------------------------------- /src/geom2d/v2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/geom2d/v2d.cpp -------------------------------------------------------------------------------- /src/geom2d/v2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/geom2d/v2d.h -------------------------------------------------------------------------------- /src/geom2d/v2d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/geom2d/v2d.hpp -------------------------------------------------------------------------------- /src/gui/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | nap_library(gui "draw2d" "${NAPPGUI_SHARED}" NRC_NONE) 2 | -------------------------------------------------------------------------------- /src/gui/button.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/gui/button.c -------------------------------------------------------------------------------- /src/gui/button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/gui/button.h -------------------------------------------------------------------------------- /src/gui/button.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/gui/button.inl -------------------------------------------------------------------------------- /src/gui/cell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/gui/cell.h -------------------------------------------------------------------------------- /src/gui/cell.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/gui/cell.inl -------------------------------------------------------------------------------- /src/gui/combo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/gui/combo.c -------------------------------------------------------------------------------- /src/gui/combo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/gui/combo.h -------------------------------------------------------------------------------- /src/gui/combo.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/gui/combo.inl -------------------------------------------------------------------------------- /src/gui/component.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/gui/component.c -------------------------------------------------------------------------------- /src/gui/component.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/gui/component.inl -------------------------------------------------------------------------------- /src/gui/comwin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/gui/comwin.c -------------------------------------------------------------------------------- /src/gui/comwin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/gui/comwin.h -------------------------------------------------------------------------------- /src/gui/drawctrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/gui/drawctrl.c -------------------------------------------------------------------------------- /src/gui/drawctrl.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/gui/drawctrl.inl -------------------------------------------------------------------------------- /src/gui/edit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/gui/edit.c -------------------------------------------------------------------------------- /src/gui/edit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/gui/edit.h -------------------------------------------------------------------------------- /src/gui/edit.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/gui/edit.inl -------------------------------------------------------------------------------- /src/gui/editimp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/gui/editimp.c -------------------------------------------------------------------------------- /src/gui/editimp.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/gui/editimp.inl -------------------------------------------------------------------------------- /src/gui/gbind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/gui/gbind.c -------------------------------------------------------------------------------- /src/gui/gbind.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/gui/gbind.inl -------------------------------------------------------------------------------- /src/gui/globals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/gui/globals.c -------------------------------------------------------------------------------- /src/gui/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/gui/globals.h -------------------------------------------------------------------------------- /src/gui/gui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/gui/gui.c -------------------------------------------------------------------------------- /src/gui/gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/gui/gui.h -------------------------------------------------------------------------------- /src/gui/gui.hdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/gui/gui.hdf -------------------------------------------------------------------------------- /src/gui/gui.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/gui/gui.hxx -------------------------------------------------------------------------------- /src/gui/gui.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/gui/gui.inl -------------------------------------------------------------------------------- /src/gui/gui.ixx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/gui/gui.ixx -------------------------------------------------------------------------------- /src/gui/guiall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/gui/guiall.h -------------------------------------------------------------------------------- /src/gui/guicontrol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/gui/guicontrol.c -------------------------------------------------------------------------------- /src/gui/guicontrol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/gui/guicontrol.h -------------------------------------------------------------------------------- /src/gui/imageview.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/gui/imageview.c -------------------------------------------------------------------------------- /src/gui/imageview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/gui/imageview.h -------------------------------------------------------------------------------- /src/gui/items.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/gui/items.c -------------------------------------------------------------------------------- /src/gui/items.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/gui/items.inl -------------------------------------------------------------------------------- /src/gui/label.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/gui/label.c -------------------------------------------------------------------------------- /src/gui/label.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/gui/label.h -------------------------------------------------------------------------------- /src/gui/label.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/gui/label.inl -------------------------------------------------------------------------------- /src/gui/layout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/gui/layout.c -------------------------------------------------------------------------------- /src/gui/layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/gui/layout.h -------------------------------------------------------------------------------- /src/gui/layout.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/gui/layout.inl -------------------------------------------------------------------------------- /src/gui/layouth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/gui/layouth.h -------------------------------------------------------------------------------- /src/gui/listbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/gui/listbox.c -------------------------------------------------------------------------------- /src/gui/listbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/gui/listbox.h -------------------------------------------------------------------------------- /src/gui/listbox.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/gui/listbox.inl -------------------------------------------------------------------------------- /src/gui/menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/gui/menu.c -------------------------------------------------------------------------------- /src/gui/menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/gui/menu.h -------------------------------------------------------------------------------- /src/gui/menu.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/gui/menu.inl -------------------------------------------------------------------------------- /src/gui/menuitem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/gui/menuitem.c -------------------------------------------------------------------------------- /src/gui/menuitem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/gui/menuitem.h -------------------------------------------------------------------------------- /src/gui/menuitem.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/gui/menuitem.inl -------------------------------------------------------------------------------- /src/gui/panel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/gui/panel.c -------------------------------------------------------------------------------- /src/gui/panel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/gui/panel.h -------------------------------------------------------------------------------- /src/gui/panel.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/gui/panel.inl -------------------------------------------------------------------------------- /src/gui/popup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/gui/popup.c -------------------------------------------------------------------------------- /src/gui/popup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/gui/popup.h -------------------------------------------------------------------------------- /src/gui/popup.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/gui/popup.inl -------------------------------------------------------------------------------- /src/gui/progress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/gui/progress.c -------------------------------------------------------------------------------- /src/gui/progress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/gui/progress.h -------------------------------------------------------------------------------- /src/gui/progress.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/gui/progress.inl -------------------------------------------------------------------------------- /src/gui/res/res_gui/bomb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/gui/res/res_gui/bomb.png -------------------------------------------------------------------------------- /src/gui/res/res_gui/bomb_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/gui/res/res_gui/bomb_dark.png -------------------------------------------------------------------------------- /src/gui/res/res_gui/confused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/gui/res/res_gui/confused.png -------------------------------------------------------------------------------- /src/gui/res/res_gui/confused_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/gui/res/res_gui/confused_dark.png -------------------------------------------------------------------------------- /src/gui/res/res_gui/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/gui/res/res_gui/logo.png -------------------------------------------------------------------------------- /src/gui/res/res_gui/logo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/gui/res/res_gui/logo_dark.png -------------------------------------------------------------------------------- /src/gui/res/res_gui/strings.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/gui/res/res_gui/strings.msg -------------------------------------------------------------------------------- /src/gui/res_gui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/gui/res_gui.c -------------------------------------------------------------------------------- /src/gui/res_gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/gui/res_gui.h -------------------------------------------------------------------------------- /src/gui/scrollview.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/gui/scrollview.c -------------------------------------------------------------------------------- /src/gui/scrollview.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/gui/scrollview.inl -------------------------------------------------------------------------------- /src/gui/slider.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/gui/slider.c -------------------------------------------------------------------------------- /src/gui/slider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/gui/slider.h -------------------------------------------------------------------------------- /src/gui/slider.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/gui/slider.inl -------------------------------------------------------------------------------- /src/gui/splitview.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/gui/splitview.c -------------------------------------------------------------------------------- /src/gui/splitview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/gui/splitview.h -------------------------------------------------------------------------------- /src/gui/splitview.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/gui/splitview.inl -------------------------------------------------------------------------------- /src/gui/tableview.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/gui/tableview.c -------------------------------------------------------------------------------- /src/gui/tableview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/gui/tableview.h -------------------------------------------------------------------------------- /src/gui/tableviewh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/gui/tableviewh.h -------------------------------------------------------------------------------- /src/gui/textview.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/gui/textview.c -------------------------------------------------------------------------------- /src/gui/textview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/gui/textview.h -------------------------------------------------------------------------------- /src/gui/textview.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/gui/textview.inl -------------------------------------------------------------------------------- /src/gui/updown.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/gui/updown.c -------------------------------------------------------------------------------- /src/gui/updown.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/gui/updown.h -------------------------------------------------------------------------------- /src/gui/updown.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/gui/updown.inl -------------------------------------------------------------------------------- /src/gui/vctrl.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/gui/vctrl.inl -------------------------------------------------------------------------------- /src/gui/view.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/gui/view.c -------------------------------------------------------------------------------- /src/gui/view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/gui/view.h -------------------------------------------------------------------------------- /src/gui/view.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/gui/view.inl -------------------------------------------------------------------------------- /src/gui/webview.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/gui/webview.c -------------------------------------------------------------------------------- /src/gui/webview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/gui/webview.h -------------------------------------------------------------------------------- /src/gui/webview.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/gui/webview.inl -------------------------------------------------------------------------------- /src/gui/window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/gui/window.c -------------------------------------------------------------------------------- /src/gui/window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/gui/window.h -------------------------------------------------------------------------------- /src/gui/window.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/gui/window.inl -------------------------------------------------------------------------------- /src/inet/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/inet/CMakeLists.txt -------------------------------------------------------------------------------- /src/inet/httpreq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/inet/httpreq.c -------------------------------------------------------------------------------- /src/inet/httpreq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/inet/httpreq.h -------------------------------------------------------------------------------- /src/inet/inet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/inet/inet.c -------------------------------------------------------------------------------- /src/inet/inet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/inet/inet.h -------------------------------------------------------------------------------- /src/inet/inet.hdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/inet/inet.hdf -------------------------------------------------------------------------------- /src/inet/inet.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/inet/inet.hxx -------------------------------------------------------------------------------- /src/inet/inet.ixx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/inet/inet.ixx -------------------------------------------------------------------------------- /src/inet/linux/oshttpreq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/inet/linux/oshttpreq.c -------------------------------------------------------------------------------- /src/inet/oshttpreq.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/inet/oshttpreq.inl -------------------------------------------------------------------------------- /src/inet/osx/oshttpreq.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/inet/osx/oshttpreq.m -------------------------------------------------------------------------------- /src/inet/win/oshttpreq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/inet/win/oshttpreq.c -------------------------------------------------------------------------------- /src/nappgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/nappgui.h -------------------------------------------------------------------------------- /src/ogl3d/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/ogl3d/CMakeLists.txt -------------------------------------------------------------------------------- /src/ogl3d/eglew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/ogl3d/eglew.h -------------------------------------------------------------------------------- /src/ogl3d/glew.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/ogl3d/glew.c -------------------------------------------------------------------------------- /src/ogl3d/glew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/ogl3d/glew.h -------------------------------------------------------------------------------- /src/ogl3d/glxew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/ogl3d/glxew.h -------------------------------------------------------------------------------- /src/ogl3d/gtk/ogl3dimp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/ogl3d/gtk/ogl3dimp.c -------------------------------------------------------------------------------- /src/ogl3d/ogl3d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/ogl3d/ogl3d.c -------------------------------------------------------------------------------- /src/ogl3d/ogl3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/ogl3d/ogl3d.h -------------------------------------------------------------------------------- /src/ogl3d/ogl3d.hdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/ogl3d/ogl3d.hdf -------------------------------------------------------------------------------- /src/ogl3d/ogl3d.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/ogl3d/ogl3d.hxx -------------------------------------------------------------------------------- /src/ogl3d/ogl3d.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/ogl3d/ogl3d.inl -------------------------------------------------------------------------------- /src/ogl3d/osx/ogl3dimp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/ogl3d/osx/ogl3dimp.m -------------------------------------------------------------------------------- /src/ogl3d/wglew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/ogl3d/wglew.h -------------------------------------------------------------------------------- /src/ogl3d/win/ogl3dimp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/ogl3d/win/ogl3dimp.c -------------------------------------------------------------------------------- /src/osapp/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | nap_library(osapp "osgui;gui" "${NAPPGUI_SHARED}" NRC_NONE) 2 | -------------------------------------------------------------------------------- /src/osapp/gtk/osapp_gtk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osapp/gtk/osapp_gtk.c -------------------------------------------------------------------------------- /src/osapp/gtk/osapp_gtk.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osapp/gtk/osapp_gtk.inl -------------------------------------------------------------------------------- /src/osapp/gtk/osapp_gtk.ixx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osapp/gtk/osapp_gtk.ixx -------------------------------------------------------------------------------- /src/osapp/osapp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osapp/osapp.c -------------------------------------------------------------------------------- /src/osapp/osapp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osapp/osapp.h -------------------------------------------------------------------------------- /src/osapp/osapp.hdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osapp/osapp.hdf -------------------------------------------------------------------------------- /src/osapp/osapp.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osapp/osapp.hxx -------------------------------------------------------------------------------- /src/osapp/osapp.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osapp/osapp.inl -------------------------------------------------------------------------------- /src/osapp/osapp.ixx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osapp/osapp.ixx -------------------------------------------------------------------------------- /src/osapp/osmain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osapp/osmain.h -------------------------------------------------------------------------------- /src/osapp/osmain.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osapp/osmain.hxx -------------------------------------------------------------------------------- /src/osapp/osmain_gtk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osapp/osmain_gtk.h -------------------------------------------------------------------------------- /src/osapp/osmain_osx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osapp/osmain_osx.h -------------------------------------------------------------------------------- /src/osapp/osmain_win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osapp/osmain_win.h -------------------------------------------------------------------------------- /src/osapp/osx/osapp_osx.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osapp/osx/osapp_osx.inl -------------------------------------------------------------------------------- /src/osapp/osx/osapp_osx.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osapp/osx/osapp_osx.m -------------------------------------------------------------------------------- /src/osapp/win/osapp_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osapp/win/osapp_win.c -------------------------------------------------------------------------------- /src/osapp/win/osapp_win.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osapp/win/osapp_win.inl -------------------------------------------------------------------------------- /src/osapp/win/osapp_win.ixx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osapp/win/osapp_win.ixx -------------------------------------------------------------------------------- /src/osbs/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | nap_library(osbs "sewer" "${NAPPGUI_SHARED}" NRC_NONE) 2 | -------------------------------------------------------------------------------- /src/osbs/bfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osbs/bfile.h -------------------------------------------------------------------------------- /src/osbs/bmutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osbs/bmutex.h -------------------------------------------------------------------------------- /src/osbs/bproc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osbs/bproc.h -------------------------------------------------------------------------------- /src/osbs/bsocket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osbs/bsocket.c -------------------------------------------------------------------------------- /src/osbs/bsocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osbs/bsocket.h -------------------------------------------------------------------------------- /src/osbs/bthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osbs/bthread.h -------------------------------------------------------------------------------- /src/osbs/btime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osbs/btime.h -------------------------------------------------------------------------------- /src/osbs/dlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osbs/dlib.h -------------------------------------------------------------------------------- /src/osbs/linux/sinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osbs/linux/sinfo.c -------------------------------------------------------------------------------- /src/osbs/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osbs/log.c -------------------------------------------------------------------------------- /src/osbs/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osbs/log.h -------------------------------------------------------------------------------- /src/osbs/log.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osbs/log.inl -------------------------------------------------------------------------------- /src/osbs/osbs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osbs/osbs.c -------------------------------------------------------------------------------- /src/osbs/osbs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osbs/osbs.h -------------------------------------------------------------------------------- /src/osbs/osbs.hdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osbs/osbs.hdf -------------------------------------------------------------------------------- /src/osbs/osbs.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osbs/osbs.hxx -------------------------------------------------------------------------------- /src/osbs/osbs.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osbs/osbs.inl -------------------------------------------------------------------------------- /src/osbs/osbsall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osbs/osbsall.h -------------------------------------------------------------------------------- /src/osbs/osx/sinfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osbs/osx/sinfo.m -------------------------------------------------------------------------------- /src/osbs/unix/bfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osbs/unix/bfile.c -------------------------------------------------------------------------------- /src/osbs/unix/bmutex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osbs/unix/bmutex.c -------------------------------------------------------------------------------- /src/osbs/unix/bproc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osbs/unix/bproc.c -------------------------------------------------------------------------------- /src/osbs/unix/bsocket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osbs/unix/bsocket.c -------------------------------------------------------------------------------- /src/osbs/unix/bthread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osbs/unix/bthread.c -------------------------------------------------------------------------------- /src/osbs/unix/btime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osbs/unix/btime.c -------------------------------------------------------------------------------- /src/osbs/unix/dlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osbs/unix/dlib.c -------------------------------------------------------------------------------- /src/osbs/unix/sinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osbs/unix/sinfo.c -------------------------------------------------------------------------------- /src/osbs/win/bfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osbs/win/bfile.c -------------------------------------------------------------------------------- /src/osbs/win/bmutex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osbs/win/bmutex.c -------------------------------------------------------------------------------- /src/osbs/win/bproc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osbs/win/bproc.c -------------------------------------------------------------------------------- /src/osbs/win/bsocket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osbs/win/bsocket.c -------------------------------------------------------------------------------- /src/osbs/win/bthread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osbs/win/bthread.c -------------------------------------------------------------------------------- /src/osbs/win/btime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osbs/win/btime.c -------------------------------------------------------------------------------- /src/osbs/win/dlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osbs/win/dlib.c -------------------------------------------------------------------------------- /src/osbs/win/sinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osbs/win/sinfo.c -------------------------------------------------------------------------------- /src/osgui/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/CMakeLists.txt -------------------------------------------------------------------------------- /src/osgui/gtk/osbutton.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/gtk/osbutton.c -------------------------------------------------------------------------------- /src/osgui/gtk/osbutton_gtk.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/gtk/osbutton_gtk.inl -------------------------------------------------------------------------------- /src/osgui/gtk/oscombo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/gtk/oscombo.c -------------------------------------------------------------------------------- /src/osgui/gtk/oscombo_gtk.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/gtk/oscombo_gtk.inl -------------------------------------------------------------------------------- /src/osgui/gtk/oscomwin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/gtk/oscomwin.c -------------------------------------------------------------------------------- /src/osgui/gtk/oscomwin_gtk.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/gtk/oscomwin_gtk.inl -------------------------------------------------------------------------------- /src/osgui/gtk/oscontrol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/gtk/oscontrol.c -------------------------------------------------------------------------------- /src/osgui/gtk/oscontrol_gtk.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/gtk/oscontrol_gtk.inl -------------------------------------------------------------------------------- /src/osgui/gtk/osdrawctrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/gtk/osdrawctrl.c -------------------------------------------------------------------------------- /src/osgui/gtk/osedit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/gtk/osedit.c -------------------------------------------------------------------------------- /src/osgui/gtk/osedit_gtk.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/gtk/osedit_gtk.inl -------------------------------------------------------------------------------- /src/osgui/gtk/osentry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/gtk/osentry.c -------------------------------------------------------------------------------- /src/osgui/gtk/osentry_gtk.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/gtk/osentry_gtk.inl -------------------------------------------------------------------------------- /src/osgui/gtk/osglobals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/gtk/osglobals.c -------------------------------------------------------------------------------- /src/osgui/gtk/osglobals_gtk.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/gtk/osglobals_gtk.inl -------------------------------------------------------------------------------- /src/osgui/gtk/osgui_gtk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/gtk/osgui_gtk.c -------------------------------------------------------------------------------- /src/osgui/gtk/osgui_gtk.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/gtk/osgui_gtk.inl -------------------------------------------------------------------------------- /src/osgui/gtk/osgui_gtk.ixx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/gtk/osgui_gtk.ixx -------------------------------------------------------------------------------- /src/osgui/gtk/oslistener.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/gtk/oslistener.c -------------------------------------------------------------------------------- /src/osgui/gtk/oslistener.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/gtk/oslistener.inl -------------------------------------------------------------------------------- /src/osgui/gtk/osmenu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/gtk/osmenu.c -------------------------------------------------------------------------------- /src/osgui/gtk/osmenu_gtk.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/gtk/osmenu_gtk.inl -------------------------------------------------------------------------------- /src/osgui/gtk/osmenuitem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/gtk/osmenuitem.c -------------------------------------------------------------------------------- /src/osgui/gtk/osmenuitem_gtk.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/gtk/osmenuitem_gtk.inl -------------------------------------------------------------------------------- /src/osgui/gtk/ospanel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/gtk/ospanel.c -------------------------------------------------------------------------------- /src/osgui/gtk/ospanel_gtk.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/gtk/ospanel_gtk.inl -------------------------------------------------------------------------------- /src/osgui/gtk/ospopup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/gtk/ospopup.c -------------------------------------------------------------------------------- /src/osgui/gtk/ospopup_gtk.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/gtk/ospopup_gtk.inl -------------------------------------------------------------------------------- /src/osgui/gtk/osprogress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/gtk/osprogress.c -------------------------------------------------------------------------------- /src/osgui/gtk/osscroll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/gtk/osscroll.c -------------------------------------------------------------------------------- /src/osgui/gtk/osscroll_gtk.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/gtk/osscroll_gtk.inl -------------------------------------------------------------------------------- /src/osgui/gtk/osslider.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/gtk/osslider.c -------------------------------------------------------------------------------- /src/osgui/gtk/ossplit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/gtk/ossplit.c -------------------------------------------------------------------------------- /src/osgui/gtk/ossplit_gtk.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/gtk/ossplit_gtk.inl -------------------------------------------------------------------------------- /src/osgui/gtk/ostext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/gtk/ostext.c -------------------------------------------------------------------------------- /src/osgui/gtk/ostext_gtk.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/gtk/ostext_gtk.inl -------------------------------------------------------------------------------- /src/osgui/gtk/osupdown.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/gtk/osupdown.c -------------------------------------------------------------------------------- /src/osgui/gtk/osview.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/gtk/osview.c -------------------------------------------------------------------------------- /src/osgui/gtk/osview_gtk.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/gtk/osview_gtk.inl -------------------------------------------------------------------------------- /src/osgui/gtk/osweb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/gtk/osweb.c -------------------------------------------------------------------------------- /src/osgui/gtk/osweb_gtk.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/gtk/osweb_gtk.inl -------------------------------------------------------------------------------- /src/osgui/gtk/oswindow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/gtk/oswindow.c -------------------------------------------------------------------------------- /src/osgui/gtk/oswindow_gtk.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/gtk/oswindow_gtk.inl -------------------------------------------------------------------------------- /src/osgui/osbutton.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/osbutton.c -------------------------------------------------------------------------------- /src/osgui/osbutton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/osbutton.h -------------------------------------------------------------------------------- /src/osgui/osbutton.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/osbutton.inl -------------------------------------------------------------------------------- /src/osgui/oscombo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/oscombo.c -------------------------------------------------------------------------------- /src/osgui/oscombo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/oscombo.h -------------------------------------------------------------------------------- /src/osgui/oscombo.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/oscombo.inl -------------------------------------------------------------------------------- /src/osgui/oscomwin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/oscomwin.h -------------------------------------------------------------------------------- /src/osgui/oscontrol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/oscontrol.c -------------------------------------------------------------------------------- /src/osgui/oscontrol.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/oscontrol.inl -------------------------------------------------------------------------------- /src/osgui/osdrawctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/osdrawctrl.h -------------------------------------------------------------------------------- /src/osgui/osedit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/osedit.c -------------------------------------------------------------------------------- /src/osgui/osedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/osedit.h -------------------------------------------------------------------------------- /src/osgui/osedit.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/osedit.inl -------------------------------------------------------------------------------- /src/osgui/osglobals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/osglobals.h -------------------------------------------------------------------------------- /src/osgui/osgui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/osgui.c -------------------------------------------------------------------------------- /src/osgui/osgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/osgui.h -------------------------------------------------------------------------------- /src/osgui/osgui.hdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/osgui.hdf -------------------------------------------------------------------------------- /src/osgui/osgui.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/osgui.hxx -------------------------------------------------------------------------------- /src/osgui/osgui.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/osgui.inl -------------------------------------------------------------------------------- /src/osgui/osgui.ixx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/osgui.ixx -------------------------------------------------------------------------------- /src/osgui/osguictx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/osguictx.c -------------------------------------------------------------------------------- /src/osgui/osguictx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/osguictx.h -------------------------------------------------------------------------------- /src/osgui/osmenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/osmenu.h -------------------------------------------------------------------------------- /src/osgui/osmenuitem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/osmenuitem.h -------------------------------------------------------------------------------- /src/osgui/ospanel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/ospanel.c -------------------------------------------------------------------------------- /src/osgui/ospanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/ospanel.h -------------------------------------------------------------------------------- /src/osgui/ospanel.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/ospanel.inl -------------------------------------------------------------------------------- /src/osgui/ospopup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/ospopup.c -------------------------------------------------------------------------------- /src/osgui/ospopup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/ospopup.h -------------------------------------------------------------------------------- /src/osgui/ospopup.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/ospopup.inl -------------------------------------------------------------------------------- /src/osgui/osprogress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/osprogress.c -------------------------------------------------------------------------------- /src/osgui/osprogress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/osprogress.h -------------------------------------------------------------------------------- /src/osgui/osprogress.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/osprogress.inl -------------------------------------------------------------------------------- /src/osgui/osscroll.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/osscroll.inl -------------------------------------------------------------------------------- /src/osgui/osscrolls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/osscrolls.c -------------------------------------------------------------------------------- /src/osgui/osscrolls.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/osscrolls.inl -------------------------------------------------------------------------------- /src/osgui/osslider.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/osslider.c -------------------------------------------------------------------------------- /src/osgui/osslider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/osslider.h -------------------------------------------------------------------------------- /src/osgui/osslider.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/osslider.inl -------------------------------------------------------------------------------- /src/osgui/ossplit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/ossplit.c -------------------------------------------------------------------------------- /src/osgui/ossplit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/ossplit.h -------------------------------------------------------------------------------- /src/osgui/ossplit.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/ossplit.inl -------------------------------------------------------------------------------- /src/osgui/ostabstop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/ostabstop.c -------------------------------------------------------------------------------- /src/osgui/ostabstop.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/ostabstop.inl -------------------------------------------------------------------------------- /src/osgui/ostext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/ostext.c -------------------------------------------------------------------------------- /src/osgui/ostext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/ostext.h -------------------------------------------------------------------------------- /src/osgui/ostext.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/ostext.inl -------------------------------------------------------------------------------- /src/osgui/osupdown.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/osupdown.c -------------------------------------------------------------------------------- /src/osgui/osupdown.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/osupdown.h -------------------------------------------------------------------------------- /src/osgui/osupdown.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/osupdown.inl -------------------------------------------------------------------------------- /src/osgui/osview.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/osview.c -------------------------------------------------------------------------------- /src/osgui/osview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/osview.h -------------------------------------------------------------------------------- /src/osgui/osview.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/osview.inl -------------------------------------------------------------------------------- /src/osgui/osweb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/osweb.c -------------------------------------------------------------------------------- /src/osgui/osweb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/osweb.h -------------------------------------------------------------------------------- /src/osgui/osweb.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/osweb.inl -------------------------------------------------------------------------------- /src/osgui/oswindow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/oswindow.c -------------------------------------------------------------------------------- /src/osgui/oswindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/oswindow.h -------------------------------------------------------------------------------- /src/osgui/oswindow.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/oswindow.inl -------------------------------------------------------------------------------- /src/osgui/osx/osbutton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/osx/osbutton.m -------------------------------------------------------------------------------- /src/osgui/osx/osbutton_osx.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/osx/osbutton_osx.inl -------------------------------------------------------------------------------- /src/osgui/osx/oscolor.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/osx/oscolor.inl -------------------------------------------------------------------------------- /src/osgui/osx/oscolor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/osx/oscolor.m -------------------------------------------------------------------------------- /src/osgui/osx/oscombo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/osx/oscombo.m -------------------------------------------------------------------------------- /src/osgui/osx/oscombo_osx.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/osx/oscombo_osx.inl -------------------------------------------------------------------------------- /src/osgui/osx/oscomwin.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/osx/oscomwin.inl -------------------------------------------------------------------------------- /src/osgui/osx/oscomwin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/osx/oscomwin.m -------------------------------------------------------------------------------- /src/osgui/osx/oscontrol.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/osx/oscontrol.m -------------------------------------------------------------------------------- /src/osgui/osx/oscontrol_osx.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/osx/oscontrol_osx.inl -------------------------------------------------------------------------------- /src/osgui/osx/osdrawctrl.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/osx/osdrawctrl.m -------------------------------------------------------------------------------- /src/osgui/osx/osedit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/osx/osedit.m -------------------------------------------------------------------------------- /src/osgui/osx/osedit_osx.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/osx/osedit_osx.inl -------------------------------------------------------------------------------- /src/osgui/osx/osglobals.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/osx/osglobals.inl -------------------------------------------------------------------------------- /src/osgui/osx/osglobals.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/osx/osglobals.m -------------------------------------------------------------------------------- /src/osgui/osx/osgui_osx.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/osx/osgui_osx.inl -------------------------------------------------------------------------------- /src/osgui/osx/osgui_osx.ixx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/osx/osgui_osx.ixx -------------------------------------------------------------------------------- /src/osgui/osx/osgui_osx.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/osx/osgui_osx.m -------------------------------------------------------------------------------- /src/osgui/osx/oslistener.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/osx/oslistener.inl -------------------------------------------------------------------------------- /src/osgui/osx/oslistener.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/osx/oslistener.m -------------------------------------------------------------------------------- /src/osgui/osx/osmenu.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/osx/osmenu.m -------------------------------------------------------------------------------- /src/osgui/osx/osmenu_osx.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/osx/osmenu_osx.inl -------------------------------------------------------------------------------- /src/osgui/osx/osmenuitem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/osx/osmenuitem.m -------------------------------------------------------------------------------- /src/osgui/osx/osmenuitem_osx.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/osx/osmenuitem_osx.inl -------------------------------------------------------------------------------- /src/osgui/osx/ospanel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/osx/ospanel.m -------------------------------------------------------------------------------- /src/osgui/osx/ospanel_osx.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/osx/ospanel_osx.inl -------------------------------------------------------------------------------- /src/osgui/osx/ospopup.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/osx/ospopup.m -------------------------------------------------------------------------------- /src/osgui/osx/ospopup_osx.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/osx/ospopup_osx.inl -------------------------------------------------------------------------------- /src/osgui/osx/osprogress.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/osx/osprogress.m -------------------------------------------------------------------------------- /src/osgui/osx/osprogress_osx.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/osx/osprogress_osx.inl -------------------------------------------------------------------------------- /src/osgui/osx/osscroll.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/osx/osscroll.m -------------------------------------------------------------------------------- /src/osgui/osx/osscroll_osx.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/osx/osscroll_osx.inl -------------------------------------------------------------------------------- /src/osgui/osx/osslider.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/osx/osslider.m -------------------------------------------------------------------------------- /src/osgui/osx/osslider_osx.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/osx/osslider_osx.inl -------------------------------------------------------------------------------- /src/osgui/osx/ossplit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/osx/ossplit.m -------------------------------------------------------------------------------- /src/osgui/osx/ossplit_osx.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/osx/ossplit_osx.inl -------------------------------------------------------------------------------- /src/osgui/osx/ostext.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/osx/ostext.m -------------------------------------------------------------------------------- /src/osgui/osx/ostext_osx.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/osx/ostext_osx.inl -------------------------------------------------------------------------------- /src/osgui/osx/ostextfield.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/osx/ostextfield.inl -------------------------------------------------------------------------------- /src/osgui/osx/ostextfield.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/osx/ostextfield.m -------------------------------------------------------------------------------- /src/osgui/osx/osupdown.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/osx/osupdown.m -------------------------------------------------------------------------------- /src/osgui/osx/osupdown_osx.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/osx/osupdown_osx.inl -------------------------------------------------------------------------------- /src/osgui/osx/osview.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/osx/osview.m -------------------------------------------------------------------------------- /src/osgui/osx/osview_osx.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/osx/osview_osx.inl -------------------------------------------------------------------------------- /src/osgui/osx/osweb.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/osx/osweb.m -------------------------------------------------------------------------------- /src/osgui/osx/osweb_osx.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/osx/osweb_osx.inl -------------------------------------------------------------------------------- /src/osgui/osx/oswindow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/osx/oswindow.m -------------------------------------------------------------------------------- /src/osgui/osx/oswindow_osx.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/osx/oswindow_osx.inl -------------------------------------------------------------------------------- /src/osgui/win/depend/WebView2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/win/depend/WebView2.h -------------------------------------------------------------------------------- /src/osgui/win/osbutton.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/win/osbutton.c -------------------------------------------------------------------------------- /src/osgui/win/osbutton_win.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/win/osbutton_win.inl -------------------------------------------------------------------------------- /src/osgui/win/oscombo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/win/oscombo.c -------------------------------------------------------------------------------- /src/osgui/win/oscombo_win.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/win/oscombo_win.inl -------------------------------------------------------------------------------- /src/osgui/win/oscomwin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/win/oscomwin.c -------------------------------------------------------------------------------- /src/osgui/win/oscontrol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/win/oscontrol.cpp -------------------------------------------------------------------------------- /src/osgui/win/oscontrol_win.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/win/oscontrol_win.inl -------------------------------------------------------------------------------- /src/osgui/win/osdrawctrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/win/osdrawctrl.cpp -------------------------------------------------------------------------------- /src/osgui/win/osedit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/win/osedit.c -------------------------------------------------------------------------------- /src/osgui/win/osedit_win.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/win/osedit_win.inl -------------------------------------------------------------------------------- /src/osgui/win/osglobals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/win/osglobals.c -------------------------------------------------------------------------------- /src/osgui/win/osgui_win.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/win/osgui_win.cpp -------------------------------------------------------------------------------- /src/osgui/win/osgui_win.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/win/osgui_win.inl -------------------------------------------------------------------------------- /src/osgui/win/osgui_win.ixx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/win/osgui_win.ixx -------------------------------------------------------------------------------- /src/osgui/win/osimg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/win/osimg.cpp -------------------------------------------------------------------------------- /src/osgui/win/osimg.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/win/osimg.inl -------------------------------------------------------------------------------- /src/osgui/win/osimglist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/win/osimglist.c -------------------------------------------------------------------------------- /src/osgui/win/osimglist.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/win/osimglist.inl -------------------------------------------------------------------------------- /src/osgui/win/oslistener.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/win/oslistener.c -------------------------------------------------------------------------------- /src/osgui/win/oslistener.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/win/oslistener.inl -------------------------------------------------------------------------------- /src/osgui/win/osmenu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/win/osmenu.c -------------------------------------------------------------------------------- /src/osgui/win/osmenu_win.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/win/osmenu_win.inl -------------------------------------------------------------------------------- /src/osgui/win/osmenuitem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/win/osmenuitem.c -------------------------------------------------------------------------------- /src/osgui/win/osmenuitem_win.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/win/osmenuitem_win.inl -------------------------------------------------------------------------------- /src/osgui/win/ospanel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/win/ospanel.c -------------------------------------------------------------------------------- /src/osgui/win/ospanel_win.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/win/ospanel_win.inl -------------------------------------------------------------------------------- /src/osgui/win/ospopup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/win/ospopup.c -------------------------------------------------------------------------------- /src/osgui/win/ospopup_win.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/win/ospopup_win.inl -------------------------------------------------------------------------------- /src/osgui/win/osprogress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/win/osprogress.c -------------------------------------------------------------------------------- /src/osgui/win/osscroll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/win/osscroll.c -------------------------------------------------------------------------------- /src/osgui/win/osscroll_win.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/win/osscroll_win.inl -------------------------------------------------------------------------------- /src/osgui/win/osslider.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/win/osslider.c -------------------------------------------------------------------------------- /src/osgui/win/osslider_win.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/win/osslider_win.inl -------------------------------------------------------------------------------- /src/osgui/win/ossplit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/win/ossplit.c -------------------------------------------------------------------------------- /src/osgui/win/ossplit_win.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/win/ossplit_win.inl -------------------------------------------------------------------------------- /src/osgui/win/osstyleXP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/win/osstyleXP.c -------------------------------------------------------------------------------- /src/osgui/win/osstyleXP.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/win/osstyleXP.inl -------------------------------------------------------------------------------- /src/osgui/win/ostext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/win/ostext.c -------------------------------------------------------------------------------- /src/osgui/win/ostext_win.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/win/ostext_win.inl -------------------------------------------------------------------------------- /src/osgui/win/osupdown.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/win/osupdown.c -------------------------------------------------------------------------------- /src/osgui/win/osupdown_win.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/win/osupdown_win.inl -------------------------------------------------------------------------------- /src/osgui/win/osview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/win/osview.cpp -------------------------------------------------------------------------------- /src/osgui/win/osweb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/win/osweb.cpp -------------------------------------------------------------------------------- /src/osgui/win/osweb_win.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/win/osweb_win.inl -------------------------------------------------------------------------------- /src/osgui/win/oswindow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/win/oswindow.c -------------------------------------------------------------------------------- /src/osgui/win/oswindow_win.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/osgui/win/oswindow_win.inl -------------------------------------------------------------------------------- /src/sewer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/sewer/CMakeLists.txt -------------------------------------------------------------------------------- /src/sewer/arch.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/sewer/arch.hxx -------------------------------------------------------------------------------- /src/sewer/blib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/sewer/blib.c -------------------------------------------------------------------------------- /src/sewer/blib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/sewer/blib.h -------------------------------------------------------------------------------- /src/sewer/bmath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/sewer/bmath.cpp -------------------------------------------------------------------------------- /src/sewer/bmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/sewer/bmath.h -------------------------------------------------------------------------------- /src/sewer/bmath.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/sewer/bmath.hpp -------------------------------------------------------------------------------- /src/sewer/bmath.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/sewer/bmath.inl -------------------------------------------------------------------------------- /src/sewer/bmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/sewer/bmem.c -------------------------------------------------------------------------------- /src/sewer/bmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/sewer/bmem.h -------------------------------------------------------------------------------- /src/sewer/bmem.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/sewer/bmem.inl -------------------------------------------------------------------------------- /src/sewer/bstd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/sewer/bstd.h -------------------------------------------------------------------------------- /src/sewer/cassert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/sewer/cassert.c -------------------------------------------------------------------------------- /src/sewer/cassert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/sewer/cassert.h -------------------------------------------------------------------------------- /src/sewer/config.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/sewer/config.hxx -------------------------------------------------------------------------------- /src/sewer/nowarn.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/sewer/nowarn.hxx -------------------------------------------------------------------------------- /src/sewer/ptr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/sewer/ptr.c -------------------------------------------------------------------------------- /src/sewer/ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/sewer/ptr.h -------------------------------------------------------------------------------- /src/sewer/qsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/sewer/qsort.c -------------------------------------------------------------------------------- /src/sewer/qsort.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/sewer/qsort.inl -------------------------------------------------------------------------------- /src/sewer/sewer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/sewer/sewer.c -------------------------------------------------------------------------------- /src/sewer/sewer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/sewer/sewer.h -------------------------------------------------------------------------------- /src/sewer/sewer.hdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/sewer/sewer.hdf -------------------------------------------------------------------------------- /src/sewer/sewer.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/sewer/sewer.hxx -------------------------------------------------------------------------------- /src/sewer/sewer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/sewer/sewer.inl -------------------------------------------------------------------------------- /src/sewer/sewerall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/sewer/sewerall.h -------------------------------------------------------------------------------- /src/sewer/types.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/sewer/types.c -------------------------------------------------------------------------------- /src/sewer/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/sewer/types.h -------------------------------------------------------------------------------- /src/sewer/types.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/sewer/types.hxx -------------------------------------------------------------------------------- /src/sewer/unicode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/sewer/unicode.c -------------------------------------------------------------------------------- /src/sewer/unicode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/sewer/unicode.h -------------------------------------------------------------------------------- /src/sewer/unix/bmem_unix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/sewer/unix/bmem_unix.c -------------------------------------------------------------------------------- /src/sewer/unix/bstdimp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/sewer/unix/bstdimp.c -------------------------------------------------------------------------------- /src/sewer/warn.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/sewer/warn.hxx -------------------------------------------------------------------------------- /src/sewer/win/bmem_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/sewer/win/bmem_win.c -------------------------------------------------------------------------------- /src/sewer/win/bstdimp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/src/sewer/win/bstdimp.c -------------------------------------------------------------------------------- /tools/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/tools/CMakeLists.txt -------------------------------------------------------------------------------- /tools/nrc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | nap_command_app(nrc "" NRC_NONE) 2 | -------------------------------------------------------------------------------- /tools/nrc/msgparser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/tools/nrc/msgparser.c -------------------------------------------------------------------------------- /tools/nrc/msgparser.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/tools/nrc/msgparser.inl -------------------------------------------------------------------------------- /tools/nrc/nglob.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/tools/nrc/nglob.c -------------------------------------------------------------------------------- /tools/nrc/nglob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/tools/nrc/nglob.h -------------------------------------------------------------------------------- /tools/nrc/nrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/tools/nrc/nrc.c -------------------------------------------------------------------------------- /tools/nrc/nrc.ixx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/tools/nrc/nrc.ixx -------------------------------------------------------------------------------- /tools/nrc/nrclib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/tools/nrc/nrclib.c -------------------------------------------------------------------------------- /tools/nrc/nrclib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/tools/nrc/nrclib.h -------------------------------------------------------------------------------- /tools/nrc/resgen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/tools/nrc/resgen.c -------------------------------------------------------------------------------- /tools/nrc/resgen.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frang75/nappgui_src/HEAD/tools/nrc/resgen.inl --------------------------------------------------------------------------------