├── .gitignore ├── LICENSE ├── README.MD ├── libs └── pugixml │ ├── pugiconfig.hpp │ ├── pugixml.cpp │ └── pugixml.hpp ├── src ├── assetspanel.cpp ├── assetspanel.h ├── codegenerator.cpp ├── codegenerator.h ├── codegenerator_data.h ├── config.h ├── creator.cpp ├── creator.h ├── creator.ncp ├── ctrls │ ├── box_model.cpp │ ├── box_model.h │ ├── button.cpp │ ├── button.h │ ├── categorize.cpp │ ├── categorize.h │ ├── checkbox.cpp │ ├── checkbox.h │ ├── combox.cpp │ ├── combox.h │ ├── ctrl.cpp │ ├── ctrl.h │ ├── custom.cpp │ ├── custom.h │ ├── date_chooser.cpp │ ├── date_chooser.h │ ├── field.cpp │ ├── field.h │ ├── form.cpp │ ├── form.h │ ├── group.cpp │ ├── group.h │ ├── label.cpp │ ├── label.h │ ├── listbox.cpp │ ├── listbox.h │ ├── menubar.cpp │ ├── menubar.h │ ├── notebook.cpp │ ├── notebook.h │ ├── page.cpp │ ├── page.h │ ├── panel.cpp │ ├── panel.h │ ├── picture.cpp │ ├── picture.h │ ├── progress.cpp │ ├── progress.h │ ├── property.cpp │ ├── property.h │ ├── slider.cpp │ ├── slider.h │ ├── spinbox.cpp │ ├── spinbox.h │ ├── splitterbar.cpp │ ├── splitterbar.h │ ├── tabbar.cpp │ ├── tabbar.h │ ├── textbox.cpp │ ├── textbox.h │ ├── toolbar.cpp │ ├── toolbar.h │ ├── treebox.cpp │ └── treebox.h ├── filemanager.cpp ├── filemanager.h ├── guimanager.cpp ├── guimanager.h ├── imagemanager.cpp ├── imagemanager.h ├── info.cpp ├── info.h ├── info.ncp ├── inifile.cpp ├── inifile.h ├── itemseditorpanel.cpp ├── itemseditorpanel.h ├── itemseditorpanel.ncp ├── lock_guard.h ├── main.cpp ├── namemanager.cpp ├── namemanager.h ├── nana_extra │ ├── adi_place.cpp │ ├── adi_place.hpp │ ├── color_helper.cpp │ ├── color_helper.h │ ├── pgitems.cpp │ ├── pgitems.h │ ├── propertygrid.cpp │ └── propertygrid.h ├── new_project.cpp ├── new_project.h ├── new_project.ncp ├── objectspanel.cpp ├── objectspanel.h ├── options.cpp ├── options.h ├── options.ncp ├── pgitems_creator.cpp ├── pgitems_creator.h ├── propertiespanel.cpp ├── propertiespanel.h ├── propertiespanel.ncp ├── propertygrid_helper.cpp ├── propertygrid_helper.h ├── scrollablecanvas.cpp ├── scrollablecanvas.h ├── style.h ├── tree.h ├── undoredo.h ├── updater.cpp ├── updater.h └── version.h ├── tests └── ctrls │ ├── ctrls.h │ ├── ctrls.ncp │ └── main.cpp └── wdir └── icons ├── NC.png ├── add.png ├── button.png ├── categorize.png ├── checkbox.png ├── combox.png ├── copy.png ├── creator.ico ├── custom.png ├── cut.png ├── datechooser.png ├── delete.png ├── down.png ├── empty.png ├── form.png ├── goright.png ├── grid_layout.png ├── group.png ├── horizontal_layout.png ├── info.png ├── into.png ├── item_generic.png ├── label.png ├── listbox.png ├── load_prj.png ├── menu.png ├── menu_item.png ├── menu_item_add.png ├── menu_separator.png ├── menubar.png ├── new_prj.png ├── notebook.png ├── options.png ├── output.png ├── page.png ├── panel.png ├── paste.png ├── picture.png ├── progress.png ├── redo.png ├── save.png ├── save_as.png ├── scroll.png ├── settings.png ├── slider.png ├── spinbox.png ├── splitter.png ├── tabbar.png ├── textbox.png ├── toolbar.png ├── treebox.png ├── undo.png ├── up.png └── vertical_layout.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/README.MD -------------------------------------------------------------------------------- /libs/pugixml/pugiconfig.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/libs/pugixml/pugiconfig.hpp -------------------------------------------------------------------------------- /libs/pugixml/pugixml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/libs/pugixml/pugixml.cpp -------------------------------------------------------------------------------- /libs/pugixml/pugixml.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/libs/pugixml/pugixml.hpp -------------------------------------------------------------------------------- /src/assetspanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/src/assetspanel.cpp -------------------------------------------------------------------------------- /src/assetspanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/src/assetspanel.h -------------------------------------------------------------------------------- /src/codegenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/src/codegenerator.cpp -------------------------------------------------------------------------------- /src/codegenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/src/codegenerator.h -------------------------------------------------------------------------------- /src/codegenerator_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/src/codegenerator_data.h -------------------------------------------------------------------------------- /src/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/src/config.h -------------------------------------------------------------------------------- /src/creator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/src/creator.cpp -------------------------------------------------------------------------------- /src/creator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/src/creator.h -------------------------------------------------------------------------------- /src/creator.ncp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/src/creator.ncp -------------------------------------------------------------------------------- /src/ctrls/box_model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/src/ctrls/box_model.cpp -------------------------------------------------------------------------------- /src/ctrls/box_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/src/ctrls/box_model.h -------------------------------------------------------------------------------- /src/ctrls/button.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/src/ctrls/button.cpp -------------------------------------------------------------------------------- /src/ctrls/button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/src/ctrls/button.h -------------------------------------------------------------------------------- /src/ctrls/categorize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/src/ctrls/categorize.cpp -------------------------------------------------------------------------------- /src/ctrls/categorize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/src/ctrls/categorize.h -------------------------------------------------------------------------------- /src/ctrls/checkbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/src/ctrls/checkbox.cpp -------------------------------------------------------------------------------- /src/ctrls/checkbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/src/ctrls/checkbox.h -------------------------------------------------------------------------------- /src/ctrls/combox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/src/ctrls/combox.cpp -------------------------------------------------------------------------------- /src/ctrls/combox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/src/ctrls/combox.h -------------------------------------------------------------------------------- /src/ctrls/ctrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/src/ctrls/ctrl.cpp -------------------------------------------------------------------------------- /src/ctrls/ctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/src/ctrls/ctrl.h -------------------------------------------------------------------------------- /src/ctrls/custom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/src/ctrls/custom.cpp -------------------------------------------------------------------------------- /src/ctrls/custom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/src/ctrls/custom.h -------------------------------------------------------------------------------- /src/ctrls/date_chooser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/src/ctrls/date_chooser.cpp -------------------------------------------------------------------------------- /src/ctrls/date_chooser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/src/ctrls/date_chooser.h -------------------------------------------------------------------------------- /src/ctrls/field.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/src/ctrls/field.cpp -------------------------------------------------------------------------------- /src/ctrls/field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/src/ctrls/field.h -------------------------------------------------------------------------------- /src/ctrls/form.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/src/ctrls/form.cpp -------------------------------------------------------------------------------- /src/ctrls/form.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/src/ctrls/form.h -------------------------------------------------------------------------------- /src/ctrls/group.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/src/ctrls/group.cpp -------------------------------------------------------------------------------- /src/ctrls/group.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/src/ctrls/group.h -------------------------------------------------------------------------------- /src/ctrls/label.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/src/ctrls/label.cpp -------------------------------------------------------------------------------- /src/ctrls/label.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/src/ctrls/label.h -------------------------------------------------------------------------------- /src/ctrls/listbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/src/ctrls/listbox.cpp -------------------------------------------------------------------------------- /src/ctrls/listbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/src/ctrls/listbox.h -------------------------------------------------------------------------------- /src/ctrls/menubar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/src/ctrls/menubar.cpp -------------------------------------------------------------------------------- /src/ctrls/menubar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/src/ctrls/menubar.h -------------------------------------------------------------------------------- /src/ctrls/notebook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/src/ctrls/notebook.cpp -------------------------------------------------------------------------------- /src/ctrls/notebook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/src/ctrls/notebook.h -------------------------------------------------------------------------------- /src/ctrls/page.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/src/ctrls/page.cpp -------------------------------------------------------------------------------- /src/ctrls/page.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/src/ctrls/page.h -------------------------------------------------------------------------------- /src/ctrls/panel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/src/ctrls/panel.cpp -------------------------------------------------------------------------------- /src/ctrls/panel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/src/ctrls/panel.h -------------------------------------------------------------------------------- /src/ctrls/picture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/src/ctrls/picture.cpp -------------------------------------------------------------------------------- /src/ctrls/picture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/src/ctrls/picture.h -------------------------------------------------------------------------------- /src/ctrls/progress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/src/ctrls/progress.cpp -------------------------------------------------------------------------------- /src/ctrls/progress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/src/ctrls/progress.h -------------------------------------------------------------------------------- /src/ctrls/property.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/src/ctrls/property.cpp -------------------------------------------------------------------------------- /src/ctrls/property.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/src/ctrls/property.h -------------------------------------------------------------------------------- /src/ctrls/slider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/src/ctrls/slider.cpp -------------------------------------------------------------------------------- /src/ctrls/slider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/src/ctrls/slider.h -------------------------------------------------------------------------------- /src/ctrls/spinbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/src/ctrls/spinbox.cpp -------------------------------------------------------------------------------- /src/ctrls/spinbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/src/ctrls/spinbox.h -------------------------------------------------------------------------------- /src/ctrls/splitterbar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/src/ctrls/splitterbar.cpp -------------------------------------------------------------------------------- /src/ctrls/splitterbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/src/ctrls/splitterbar.h -------------------------------------------------------------------------------- /src/ctrls/tabbar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/src/ctrls/tabbar.cpp -------------------------------------------------------------------------------- /src/ctrls/tabbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/src/ctrls/tabbar.h -------------------------------------------------------------------------------- /src/ctrls/textbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/src/ctrls/textbox.cpp -------------------------------------------------------------------------------- /src/ctrls/textbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/src/ctrls/textbox.h -------------------------------------------------------------------------------- /src/ctrls/toolbar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/src/ctrls/toolbar.cpp -------------------------------------------------------------------------------- /src/ctrls/toolbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/src/ctrls/toolbar.h -------------------------------------------------------------------------------- /src/ctrls/treebox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/src/ctrls/treebox.cpp -------------------------------------------------------------------------------- /src/ctrls/treebox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/src/ctrls/treebox.h -------------------------------------------------------------------------------- /src/filemanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/src/filemanager.cpp -------------------------------------------------------------------------------- /src/filemanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/src/filemanager.h -------------------------------------------------------------------------------- /src/guimanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/src/guimanager.cpp -------------------------------------------------------------------------------- /src/guimanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/src/guimanager.h -------------------------------------------------------------------------------- /src/imagemanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/src/imagemanager.cpp -------------------------------------------------------------------------------- /src/imagemanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/src/imagemanager.h -------------------------------------------------------------------------------- /src/info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/src/info.cpp -------------------------------------------------------------------------------- /src/info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/src/info.h -------------------------------------------------------------------------------- /src/info.ncp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/src/info.ncp -------------------------------------------------------------------------------- /src/inifile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/src/inifile.cpp -------------------------------------------------------------------------------- /src/inifile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/src/inifile.h -------------------------------------------------------------------------------- /src/itemseditorpanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/src/itemseditorpanel.cpp -------------------------------------------------------------------------------- /src/itemseditorpanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/src/itemseditorpanel.h -------------------------------------------------------------------------------- /src/itemseditorpanel.ncp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/src/itemseditorpanel.ncp -------------------------------------------------------------------------------- /src/lock_guard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/src/lock_guard.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/namemanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/src/namemanager.cpp -------------------------------------------------------------------------------- /src/namemanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/src/namemanager.h -------------------------------------------------------------------------------- /src/nana_extra/adi_place.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/src/nana_extra/adi_place.cpp -------------------------------------------------------------------------------- /src/nana_extra/adi_place.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/src/nana_extra/adi_place.hpp -------------------------------------------------------------------------------- /src/nana_extra/color_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/src/nana_extra/color_helper.cpp -------------------------------------------------------------------------------- /src/nana_extra/color_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/src/nana_extra/color_helper.h -------------------------------------------------------------------------------- /src/nana_extra/pgitems.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/src/nana_extra/pgitems.cpp -------------------------------------------------------------------------------- /src/nana_extra/pgitems.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/src/nana_extra/pgitems.h -------------------------------------------------------------------------------- /src/nana_extra/propertygrid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/src/nana_extra/propertygrid.cpp -------------------------------------------------------------------------------- /src/nana_extra/propertygrid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/src/nana_extra/propertygrid.h -------------------------------------------------------------------------------- /src/new_project.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/src/new_project.cpp -------------------------------------------------------------------------------- /src/new_project.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/src/new_project.h -------------------------------------------------------------------------------- /src/new_project.ncp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/src/new_project.ncp -------------------------------------------------------------------------------- /src/objectspanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/src/objectspanel.cpp -------------------------------------------------------------------------------- /src/objectspanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/src/objectspanel.h -------------------------------------------------------------------------------- /src/options.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/src/options.cpp -------------------------------------------------------------------------------- /src/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/src/options.h -------------------------------------------------------------------------------- /src/options.ncp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/src/options.ncp -------------------------------------------------------------------------------- /src/pgitems_creator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/src/pgitems_creator.cpp -------------------------------------------------------------------------------- /src/pgitems_creator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/src/pgitems_creator.h -------------------------------------------------------------------------------- /src/propertiespanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/src/propertiespanel.cpp -------------------------------------------------------------------------------- /src/propertiespanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/src/propertiespanel.h -------------------------------------------------------------------------------- /src/propertiespanel.ncp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/src/propertiespanel.ncp -------------------------------------------------------------------------------- /src/propertygrid_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/src/propertygrid_helper.cpp -------------------------------------------------------------------------------- /src/propertygrid_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/src/propertygrid_helper.h -------------------------------------------------------------------------------- /src/scrollablecanvas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/src/scrollablecanvas.cpp -------------------------------------------------------------------------------- /src/scrollablecanvas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/src/scrollablecanvas.h -------------------------------------------------------------------------------- /src/style.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/src/style.h -------------------------------------------------------------------------------- /src/tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/src/tree.h -------------------------------------------------------------------------------- /src/undoredo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/src/undoredo.h -------------------------------------------------------------------------------- /src/updater.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/src/updater.cpp -------------------------------------------------------------------------------- /src/updater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/src/updater.h -------------------------------------------------------------------------------- /src/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/src/version.h -------------------------------------------------------------------------------- /tests/ctrls/ctrls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/tests/ctrls/ctrls.h -------------------------------------------------------------------------------- /tests/ctrls/ctrls.ncp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/tests/ctrls/ctrls.ncp -------------------------------------------------------------------------------- /tests/ctrls/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/tests/ctrls/main.cpp -------------------------------------------------------------------------------- /wdir/icons/NC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/wdir/icons/NC.png -------------------------------------------------------------------------------- /wdir/icons/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/wdir/icons/add.png -------------------------------------------------------------------------------- /wdir/icons/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/wdir/icons/button.png -------------------------------------------------------------------------------- /wdir/icons/categorize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/wdir/icons/categorize.png -------------------------------------------------------------------------------- /wdir/icons/checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/wdir/icons/checkbox.png -------------------------------------------------------------------------------- /wdir/icons/combox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/wdir/icons/combox.png -------------------------------------------------------------------------------- /wdir/icons/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/wdir/icons/copy.png -------------------------------------------------------------------------------- /wdir/icons/creator.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/wdir/icons/creator.ico -------------------------------------------------------------------------------- /wdir/icons/custom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/wdir/icons/custom.png -------------------------------------------------------------------------------- /wdir/icons/cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/wdir/icons/cut.png -------------------------------------------------------------------------------- /wdir/icons/datechooser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/wdir/icons/datechooser.png -------------------------------------------------------------------------------- /wdir/icons/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/wdir/icons/delete.png -------------------------------------------------------------------------------- /wdir/icons/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/wdir/icons/down.png -------------------------------------------------------------------------------- /wdir/icons/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/wdir/icons/empty.png -------------------------------------------------------------------------------- /wdir/icons/form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/wdir/icons/form.png -------------------------------------------------------------------------------- /wdir/icons/goright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/wdir/icons/goright.png -------------------------------------------------------------------------------- /wdir/icons/grid_layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/wdir/icons/grid_layout.png -------------------------------------------------------------------------------- /wdir/icons/group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/wdir/icons/group.png -------------------------------------------------------------------------------- /wdir/icons/horizontal_layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/wdir/icons/horizontal_layout.png -------------------------------------------------------------------------------- /wdir/icons/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/wdir/icons/info.png -------------------------------------------------------------------------------- /wdir/icons/into.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/wdir/icons/into.png -------------------------------------------------------------------------------- /wdir/icons/item_generic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/wdir/icons/item_generic.png -------------------------------------------------------------------------------- /wdir/icons/label.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/wdir/icons/label.png -------------------------------------------------------------------------------- /wdir/icons/listbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/wdir/icons/listbox.png -------------------------------------------------------------------------------- /wdir/icons/load_prj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/wdir/icons/load_prj.png -------------------------------------------------------------------------------- /wdir/icons/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/wdir/icons/menu.png -------------------------------------------------------------------------------- /wdir/icons/menu_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/wdir/icons/menu_item.png -------------------------------------------------------------------------------- /wdir/icons/menu_item_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/wdir/icons/menu_item_add.png -------------------------------------------------------------------------------- /wdir/icons/menu_separator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/wdir/icons/menu_separator.png -------------------------------------------------------------------------------- /wdir/icons/menubar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/wdir/icons/menubar.png -------------------------------------------------------------------------------- /wdir/icons/new_prj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/wdir/icons/new_prj.png -------------------------------------------------------------------------------- /wdir/icons/notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/wdir/icons/notebook.png -------------------------------------------------------------------------------- /wdir/icons/options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/wdir/icons/options.png -------------------------------------------------------------------------------- /wdir/icons/output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/wdir/icons/output.png -------------------------------------------------------------------------------- /wdir/icons/page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/wdir/icons/page.png -------------------------------------------------------------------------------- /wdir/icons/panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/wdir/icons/panel.png -------------------------------------------------------------------------------- /wdir/icons/paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/wdir/icons/paste.png -------------------------------------------------------------------------------- /wdir/icons/picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/wdir/icons/picture.png -------------------------------------------------------------------------------- /wdir/icons/progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/wdir/icons/progress.png -------------------------------------------------------------------------------- /wdir/icons/redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/wdir/icons/redo.png -------------------------------------------------------------------------------- /wdir/icons/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/wdir/icons/save.png -------------------------------------------------------------------------------- /wdir/icons/save_as.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/wdir/icons/save_as.png -------------------------------------------------------------------------------- /wdir/icons/scroll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/wdir/icons/scroll.png -------------------------------------------------------------------------------- /wdir/icons/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/wdir/icons/settings.png -------------------------------------------------------------------------------- /wdir/icons/slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/wdir/icons/slider.png -------------------------------------------------------------------------------- /wdir/icons/spinbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/wdir/icons/spinbox.png -------------------------------------------------------------------------------- /wdir/icons/splitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/wdir/icons/splitter.png -------------------------------------------------------------------------------- /wdir/icons/tabbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/wdir/icons/tabbar.png -------------------------------------------------------------------------------- /wdir/icons/textbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/wdir/icons/textbox.png -------------------------------------------------------------------------------- /wdir/icons/toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/wdir/icons/toolbar.png -------------------------------------------------------------------------------- /wdir/icons/treebox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/wdir/icons/treebox.png -------------------------------------------------------------------------------- /wdir/icons/undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/wdir/icons/undo.png -------------------------------------------------------------------------------- /wdir/icons/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/wdir/icons/up.png -------------------------------------------------------------------------------- /wdir/icons/vertical_layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besh81/nana-creator/HEAD/wdir/icons/vertical_layout.png --------------------------------------------------------------------------------