├── .gitattributes ├── .gitignore ├── .gitmodules ├── README.md ├── app ├── app.pro ├── app_delegate.cpp ├── app_delegate.h ├── main.cpp └── win32 │ ├── editor.ico │ └── qtcc_editor.rc ├── bin └── .gitignore ├── doc ├── fix-cocos2d-x-compile-error.md ├── how-to-support-new-node.md └── screenshot.png ├── editor_zh.ts ├── framework.pri ├── generate_xcode_project.sh ├── plugin ├── coc │ ├── coc.pro │ ├── coc_animation │ │ ├── coc_animation.cpp │ │ ├── coc_animation.h │ │ ├── coc_animation_loader.cpp │ │ ├── coc_animation_loader.h │ │ ├── coc_animation_mgr.cpp │ │ ├── coc_animation_mgr.h │ │ ├── coc_animation_player.cpp │ │ ├── coc_animation_player.h │ │ ├── coc_color_transform.cpp │ │ ├── coc_color_transform.h │ │ ├── coc_config.h │ │ ├── coc_movie.cpp │ │ ├── coc_movie.h │ │ ├── coc_property.cpp │ │ ├── coc_property.h │ │ ├── coc_shape.cpp │ │ ├── coc_shape.h │ │ ├── coc_stream.h │ │ └── property │ │ │ ├── coc_animation_player_property.cpp │ │ │ └── coc_animation_player_property.h │ ├── coc_animation_property_listener.cpp │ ├── coc_animation_property_listener.h │ ├── plugin_coc.cpp │ ├── plugin_coc.h │ └── plugin_coc.pri ├── lua │ ├── lua.pro │ ├── lua_module_register.cpp │ ├── lua_tool.cpp │ ├── lua_tool.h │ ├── plugin-lua │ │ ├── lua_component.cpp │ │ ├── lua_component.h │ │ ├── lua_helper.cpp │ │ ├── lua_helper.h │ │ ├── lua_script_loader.cpp │ │ ├── lua_script_loader.h │ │ ├── lua_stack.cpp │ │ └── lua_stack.h │ ├── plugin_lua.cpp │ ├── plugin_lua.h │ ├── plugin_lua.pri │ ├── qt_script_property.cpp │ └── qt_script_property.h └── viewer │ ├── plugin_viewer.cpp │ ├── plugin_viewer.h │ ├── viewer.pro │ ├── viewerwindow.cpp │ ├── viewerwindow.h │ └── viewerwindow.ui ├── qco-editor.pro ├── res ├── editor │ ├── language │ │ └── editor_zh.qm │ ├── property │ │ ├── ccnodes.json │ │ ├── component.json │ │ ├── configure.json │ │ ├── default_value.json │ │ ├── font.json │ │ ├── menu_component.json │ │ ├── settings_property.json │ │ ├── text.json │ │ ├── toolbox.json │ │ ├── values.json │ │ └── widgets.json │ ├── shader │ │ ├── grid.frag │ │ └── grid.vert │ ├── style │ │ └── darkorange.stylesheet │ └── ui │ │ ├── diamond1.png │ │ ├── diamond2.png │ │ ├── gray.png │ │ └── green.png ├── plugin │ ├── coc │ │ ├── configure.json │ │ ├── default.json │ │ ├── menu.json │ │ ├── properties.json │ │ └── values.json │ └── lua │ │ ├── component_menu.json │ │ ├── configure.json │ │ ├── functions.lua │ │ └── properties.json └── qco │ ├── CheckBoxNode_Disable.png │ ├── CheckBoxNode_Normal.png │ ├── CheckBox_Disable.png │ ├── CheckBox_Normal.png │ ├── CheckBox_Press.png │ ├── CloseNormal.png │ ├── CloseSelected.png │ ├── HelloWorld.png │ ├── alpha.png │ ├── area.png │ ├── area2.png │ ├── area3.png │ ├── btn_dark_dwn.png │ ├── btn_dark_nml.png │ ├── btn_disable.png │ ├── btn_normal.png │ ├── btn_press.png │ ├── button_disabled.png │ ├── button_normal.png │ ├── button_pressed.png │ ├── fonts │ ├── Marker Felt.ttf │ └── arial.ttf │ ├── green.png │ ├── resource_image.json │ ├── resource_text.json │ ├── spark.plist │ ├── spark.png │ ├── test_lua_script.lua │ ├── tortoise.c3b │ └── tortoise.png ├── src ├── editor │ ├── base_editor.cpp │ ├── base_editor.h │ ├── canvas │ │ ├── canvas.cpp │ │ ├── canvas.h │ │ ├── canvas2d.cpp │ │ ├── canvas2d.h │ │ ├── canvas3d.cpp │ │ ├── canvas3d.h │ │ ├── canvas_creator.cpp │ │ ├── canvas_creator.h │ │ ├── canvas_mgr.cpp │ │ ├── canvas_mgr.h │ │ ├── canvas_tile.cpp │ │ ├── canvas_tile.h │ │ ├── editor_multi_selector.cpp │ │ ├── editor_multi_selector.h │ │ ├── gizmo.cpp │ │ ├── gizmo.h │ │ ├── gizmo_position.cpp │ │ ├── gizmo_position.h │ │ ├── gizmo_rotation.cpp │ │ ├── gizmo_rotation.h │ │ ├── gizmo_scale.cpp │ │ ├── gizmo_scale.h │ │ ├── tile_painter.cpp │ │ └── tile_painter.h │ ├── cc_predefine.h │ ├── class_name_map.cpp │ ├── class_name_map.h │ ├── command │ │ ├── cmd_component_property_change.cpp │ │ ├── cmd_component_property_change.h │ │ ├── cmd_create_component.cpp │ │ ├── cmd_create_component.h │ │ ├── cmd_create_node.cpp │ │ ├── cmd_create_node.h │ │ ├── cmd_delete_component.cpp │ │ ├── cmd_delete_component.h │ │ ├── cmd_delete_node.cpp │ │ ├── cmd_delete_node.h │ │ ├── cmd_drop_files.cpp │ │ ├── cmd_drop_files.h │ │ ├── cmd_property_change.cpp │ │ ├── cmd_property_change.h │ │ ├── cmd_reorder_node.cpp │ │ ├── cmd_reorder_node.h │ │ ├── cmd_reparent_node.cpp │ │ ├── cmd_reparent_node.h │ │ └── cmd_types.h │ ├── common_types.h │ ├── config.h │ ├── configure_loader.cpp │ ├── configure_loader.h │ ├── default_configure_loaders.cpp │ ├── document.cpp │ ├── document.h │ ├── draw_node3d.cpp │ ├── draw_node3d.h │ ├── editor.pri │ ├── editor_setting.cpp │ ├── editor_setting.h │ ├── event_listener.h │ ├── exporters │ │ ├── layout_exporter.cpp │ │ └── layout_exporter.h │ ├── extend │ │ ├── editor_camera.cpp │ │ ├── editor_camera.h │ │ ├── editor_light.cpp │ │ ├── editor_light.h │ │ ├── editor_scene.cpp │ │ ├── editor_scene.h │ │ ├── editor_sprite3d.cpp │ │ └── editor_sprite3d.h │ ├── framework.cpp │ ├── framework.h │ ├── glwidget.cpp │ ├── glwidget.h │ ├── hierarchy.cpp │ ├── hierarchy.h │ ├── icon_cache.cpp │ ├── icon_cache.h │ ├── importer.cpp │ ├── importer.h │ ├── importers │ │ ├── default_importer.cpp │ │ ├── default_importer.h │ │ ├── file_importer.cpp │ │ ├── file_importer.h │ │ ├── layout_importer.cpp │ │ └── layout_importer.h │ ├── inspector.cpp │ ├── inspector.h │ ├── launchwindow.cpp │ ├── launchwindow.h │ ├── layout_editor.cpp │ ├── layout_editor.h │ ├── loading_dialog.cpp │ ├── loading_dialog.h │ ├── logout.cpp │ ├── logout.h │ ├── mainwindow.cpp │ ├── mainwindow.h │ ├── menu_loader.cpp │ ├── menu_loader.h │ ├── newfiledialog.cpp │ ├── newfiledialog.h │ ├── newprojectdialog.cpp │ ├── newprojectdialog.h │ ├── plugin_interface.cpp │ ├── plugin_interface.h │ ├── plugin_mgr.cpp │ ├── plugin_mgr.h │ ├── project_mgr.cpp │ ├── project_mgr.h │ ├── properties │ │ ├── property_creator.cpp │ │ ├── property_creator.h │ │ ├── property_default.cpp │ │ ├── property_default.h │ │ ├── property_definition.cpp │ │ ├── property_definition.h │ │ ├── property_group.cpp │ │ ├── property_group.h │ │ ├── property_listener.cpp │ │ ├── property_listener.h │ │ ├── property_listener_link.cpp │ │ ├── property_listener_link.h │ │ ├── property_listener_tile.cpp │ │ ├── property_listener_tile.h │ │ ├── property_listener_widget.cpp │ │ ├── property_listener_widget.h │ │ ├── property_param.cpp │ │ ├── property_param.h │ │ ├── qt_comp_property.cpp │ │ ├── qt_comp_property.h │ │ ├── qt_file_property_ex.cpp │ │ ├── qt_file_property_ex.h │ │ ├── qt_font_property.cpp │ │ ├── qt_font_property.h │ │ ├── qt_user_property.cpp │ │ ├── qt_user_property.h │ │ ├── register_property_listeners.cpp │ │ └── register_property_listeners.h │ ├── qhierarchytree.cpp │ ├── qhierarchytree.h │ ├── qresourcetable.cpp │ ├── qresourcetable.h │ ├── qresourcetree.cpp │ ├── qresourcetree.h │ ├── qtglview.cpp │ ├── qtglview.h │ ├── resource.cpp │ ├── resource.h │ ├── resource_content.cpp │ ├── resource_content.h │ ├── resource_folder.cpp │ ├── resource_folder.h │ ├── resource_mgr.cpp │ ├── resource_mgr.h │ ├── resource_mime.cpp │ ├── resource_mime.h │ ├── status_bar.cpp │ ├── status_bar.h │ ├── texture_split_editor.cpp │ ├── texture_split_editor.h │ ├── tools │ │ ├── file_tools.cpp │ │ ├── file_tools.h │ │ ├── json_tools.cpp │ │ ├── json_tools.h │ │ ├── log_event_dispatcher.cpp │ │ ├── log_event_dispatcher.h │ │ ├── log_tool.cpp │ │ ├── log_tool.h │ │ ├── math_tool.h │ │ ├── math_tools.cpp │ │ ├── mesh_tools.cpp │ │ ├── mesh_tools.h │ │ ├── node_tool.cpp │ │ ├── node_tool.h │ │ ├── qstring_tool.cpp │ │ ├── qstring_tool.h │ │ ├── time_tool.cpp │ │ └── time_tool.h │ ├── user_configure.cpp │ └── user_configure.h ├── runtime.pri ├── runtime │ ├── base_loader_mgr.cpp │ ├── base_loader_mgr.h │ ├── binary_reader.cpp │ ├── binary_reader.h │ ├── binary_writer.cpp │ ├── binary_writer.h │ ├── component_loader_mgr.cpp │ ├── component_loader_mgr.h │ ├── extend │ │ ├── csb_animation.cpp │ │ ├── csb_animation.h │ │ ├── layout_proxy.cpp │ │ ├── layout_proxy.h │ │ ├── tile_collision_node.cpp │ │ ├── tile_collision_node.h │ │ ├── z_button.cpp │ │ ├── z_button.h │ │ ├── z_textatlas.cpp │ │ └── z_textatlas.h │ ├── helper.cpp │ ├── helper.h │ ├── json_helper.cpp │ ├── json_helper.h │ ├── layout_loader_mgr.cpp │ ├── layout_loader_mgr.h │ ├── loaders │ │ ├── button_loader.cpp │ │ ├── button_loader.h │ │ ├── camera_loader.cpp │ │ ├── camera_loader.h │ │ ├── checkbox_loader.cpp │ │ ├── checkbox_loader.h │ │ ├── component_loader.cpp │ │ ├── component_loader.h │ │ ├── csb_animation_loader.cpp │ │ ├── csb_animation_loader.h │ │ ├── image_loader.cpp │ │ ├── image_loader.h │ │ ├── layout_component_loader.cpp │ │ ├── layout_component_loader.h │ │ ├── layout_loader.cpp │ │ ├── layout_loader.h │ │ ├── layout_proxy_loader.cpp │ │ ├── layout_proxy_loader.h │ │ ├── light_loader.cpp │ │ ├── light_loader.h │ │ ├── listview_loader.cpp │ │ ├── listview_loader.h │ │ ├── loader_addin.cpp │ │ ├── loader_addin.h │ │ ├── loadingbar_loader.cpp │ │ ├── loadingbar_loader.h │ │ ├── node_loader.cpp │ │ ├── node_loader.h │ │ ├── pageview_loader.cpp │ │ ├── pageview_loader.h │ │ ├── particle_loader.cpp │ │ ├── particle_loader.h │ │ ├── physicsbody_loader.cpp │ │ ├── physicsbody_loader.h │ │ ├── richtext_loader.cpp │ │ ├── richtext_loader.h │ │ ├── scrollview_loader.cpp │ │ ├── scrollview_loader.h │ │ ├── slider_loader.cpp │ │ ├── slider_loader.h │ │ ├── spot_light_loader.cpp │ │ ├── spot_light_loader.h │ │ ├── sprite3dloader.cpp │ │ ├── sprite3dloader.h │ │ ├── sprite_loader.cpp │ │ ├── sprite_loader.h │ │ ├── text_loader.cpp │ │ ├── text_loader.h │ │ ├── textatlas_loader.cpp │ │ ├── textatlas_loader.h │ │ ├── textbmfont_loader.cpp │ │ ├── textbmfont_loader.h │ │ ├── textfield_loader.cpp │ │ ├── textfield_loader.h │ │ ├── tile_collision_node_loader.cpp │ │ ├── tile_collision_node_loader.h │ │ ├── widget_loader.cpp │ │ └── widget_loader.h │ ├── math_tool.cpp │ ├── math_tool.h │ ├── object_factory.cpp │ ├── object_factory.h │ ├── object_loader.cpp │ ├── object_loader.h │ ├── pip_config.h │ ├── rect.h │ ├── resource_holder.cpp │ ├── resource_holder.h │ ├── resource_mapping.cpp │ ├── resource_mapping.h │ ├── singleton.h │ ├── smartpointer.h │ ├── sprite_tool.cpp │ ├── sprite_tool.h │ ├── string_tool.cpp │ └── string_tool.h └── src.pro ├── test ├── .gitignore ├── editor_test │ ├── .cocos-project.json │ ├── .gitignore │ ├── CMakeLists.txt │ ├── Classes │ │ ├── AppDelegate.cpp │ │ ├── AppDelegate.h │ │ ├── lua_module_register.h │ │ ├── main_scene.cpp │ │ └── main_scene.h │ ├── Resources │ │ └── res │ │ │ ├── .gitkeep │ │ │ ├── CloseNormal.png │ │ │ ├── CloseSelected.png │ │ │ ├── HelloWorld.png │ │ │ ├── fonts │ │ │ ├── Marker Felt.ttf │ │ │ └── arial.ttf │ │ │ ├── test.json │ │ │ ├── tortoise.c3b │ │ │ └── tortoise.png │ ├── proj.android-studio │ │ ├── .gitignore │ │ ├── app │ │ │ ├── .gitignore │ │ │ ├── AndroidManifest.xml │ │ │ ├── build.gradle │ │ │ ├── jni │ │ │ │ ├── Android.mk │ │ │ │ ├── Application.mk │ │ │ │ └── hellocpp │ │ │ │ │ └── main.cpp │ │ │ ├── proguard-rules.pro │ │ │ ├── project.properties │ │ │ ├── res │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ └── values │ │ │ │ │ └── strings.xml │ │ │ └── src │ │ │ │ └── org │ │ │ │ └── cocos2dx │ │ │ │ └── cpp │ │ │ │ └── AppActivity.java │ │ ├── build-cfg.json │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle │ ├── proj.android │ │ ├── .classpath │ │ ├── .cproject │ │ ├── .externalToolBuilders │ │ │ └── org.eclipse.cdt.managedbuilder.core.genmakebuilder.launch │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.cdt.codan.core.prefs │ │ │ ├── org.eclipse.cdt.core.prefs │ │ │ └── org.eclipse.ltk.core.refactoring.prefs │ │ ├── AndroidManifest.xml │ │ ├── ant.properties │ │ ├── build-cfg.json │ │ ├── build.xml │ │ ├── build_native.py │ │ ├── jni │ │ │ ├── Android.mk │ │ │ ├── Application.mk │ │ │ └── hellocpp │ │ │ │ └── main.cpp │ │ ├── proguard-project.txt │ │ ├── project.properties │ │ ├── res │ │ │ ├── drawable-hdpi │ │ │ │ └── icon.png │ │ │ ├── drawable-ldpi │ │ │ │ └── icon.png │ │ │ ├── drawable-mdpi │ │ │ │ └── icon.png │ │ │ └── values │ │ │ │ └── strings.xml │ │ └── src │ │ │ └── org │ │ │ └── cocos2dx │ │ │ └── cpp │ │ │ └── AppActivity.java │ ├── proj.ios_mac │ │ ├── editor_test.xcodeproj │ │ │ └── project.pbxproj │ │ ├── ios │ │ │ ├── AppController.h │ │ │ ├── AppController.mm │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default-667h@2x.png │ │ │ ├── Default-736h@3x.png │ │ │ ├── Default.png │ │ │ ├── Default@2x.png │ │ │ ├── Icon-100.png │ │ │ ├── Icon-114.png │ │ │ ├── Icon-120.png │ │ │ ├── Icon-144.png │ │ │ ├── Icon-152.png │ │ │ ├── Icon-29.png │ │ │ ├── Icon-40.png │ │ │ ├── Icon-50.png │ │ │ ├── Icon-57.png │ │ │ ├── Icon-58.png │ │ │ ├── Icon-72.png │ │ │ ├── Icon-76.png │ │ │ ├── Icon-80.png │ │ │ ├── Info.plist │ │ │ ├── RootViewController.h │ │ │ ├── RootViewController.mm │ │ │ └── main.m │ │ └── mac │ │ │ ├── Icon.icns │ │ │ ├── Info.plist │ │ │ └── main.cpp │ ├── proj.linux │ │ └── main.cpp │ ├── proj.qt │ │ ├── classes.pri │ │ └── editor_simulator.pro │ ├── proj.win10 │ │ └── App │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cpp │ │ │ ├── App.xaml.h │ │ │ ├── Assets │ │ │ ├── LockScreenLogo.scale-200.png │ │ │ ├── SplashScreen.scale-200.png │ │ │ ├── Square150x150Logo.scale-200.png │ │ │ ├── Square44x44Logo.scale-200.png │ │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ │ ├── StoreLogo.png │ │ │ └── Wide310x150Logo.scale-200.png │ │ │ ├── Cocos2dEngine │ │ │ ├── Cocos2dRenderer.cpp │ │ │ ├── Cocos2dRenderer.h │ │ │ ├── OpenGLES.cpp │ │ │ ├── OpenGLES.h │ │ │ ├── OpenGLESPage.xaml │ │ │ ├── OpenGLESPage.xaml.cpp │ │ │ └── OpenGLESPage.xaml.h │ │ │ ├── Package.appxmanifest │ │ │ ├── editor_test_TemporaryKey.pfx │ │ │ ├── pch.cpp │ │ │ ├── pch.h │ │ │ └── resources.props │ ├── proj.win32 │ │ ├── build-cfg.json │ │ ├── game.rc │ │ ├── main.cpp │ │ ├── main.h │ │ ├── res │ │ │ └── game.ico │ │ └── resource.h │ └── proj.win8.1-universal │ │ ├── App.Shared │ │ ├── App.xaml │ │ ├── App.xaml.cpp │ │ ├── App.xaml.h │ │ ├── Cocos2dRenderer.cpp │ │ ├── Cocos2dRenderer.h │ │ ├── OpenGLES.cpp │ │ ├── OpenGLES.h │ │ ├── OpenGLESPage.xaml │ │ ├── OpenGLESPage.xaml.cpp │ │ ├── OpenGLESPage.xaml.h │ │ ├── editor_test.Shared.vcxitems │ │ ├── editor_test.Shared.vcxitems.filters │ │ ├── pch.cpp │ │ └── pch.h │ │ ├── App.Windows │ │ ├── Assets │ │ │ ├── Logo.scale-100.png │ │ │ ├── SmallLogo.scale-100.png │ │ │ ├── SplashScreen.scale-100.png │ │ │ └── StoreLogo.scale-100.png │ │ ├── Package.appxmanifest │ │ └── editor_test.Windows_TemporaryKey.pfx │ │ └── App.WindowsPhone │ │ ├── Assets │ │ ├── Logo.scale-240.png │ │ ├── SmallLogo.scale-240.png │ │ ├── SplashScreen.scale-240.png │ │ ├── Square71x71Logo.scale-240.png │ │ ├── StoreLogo.scale-240.png │ │ └── WideLogo.scale-240.png │ │ └── Package.appxmanifest └── myplugin │ ├── README.md │ ├── myplugin.cpp │ ├── myplugin.h │ └── myplugin.pro ├── third_party ├── qtpropertysheet │ ├── README.md │ ├── doc │ │ └── screenshot.png │ ├── qtpropertysheet.pro │ ├── simple │ │ ├── main.cpp │ │ ├── mainwindow.cpp │ │ ├── mainwindow.h │ │ ├── mainwindow.ui │ │ ├── simple.pri │ │ └── simple.pro │ └── src │ │ ├── qtattributename.cpp │ │ ├── qtattributename.h │ │ ├── qtbuttonpropertybrowser.cpp │ │ ├── qtbuttonpropertybrowser.h │ │ ├── qtbuttonpropertyitem.cpp │ │ ├── qtbuttonpropertyitem.h │ │ ├── qtproperty.cpp │ │ ├── qtproperty.h │ │ ├── qtpropertybrowser.cpp │ │ ├── qtpropertybrowser.h │ │ ├── qtpropertybrowserutils.cpp │ │ ├── qtpropertybrowserutils.h │ │ ├── qtpropertyconfig.h │ │ ├── qtpropertyeditor.cpp │ │ ├── qtpropertyeditor.h │ │ ├── qtpropertyeditorfactory.cpp │ │ ├── qtpropertyeditorfactory.h │ │ ├── qtpropertyfactory.cpp │ │ ├── qtpropertyfactory.h │ │ ├── qtpropertysheet.pri │ │ ├── qtpropertytreedelegate.cpp │ │ ├── qtpropertytreedelegate.h │ │ ├── qtpropertytreeview.cpp │ │ ├── qtpropertytreeview.h │ │ ├── qtpropertytype.cpp │ │ ├── qtpropertytype.h │ │ ├── qttreepropertybrowser.cpp │ │ ├── qttreepropertybrowser.h │ │ ├── qxtcheckcombobox.cpp │ │ ├── qxtcheckcombobox.h │ │ ├── qxtcheckcombobox_p.h │ │ ├── qxtglobal.cpp │ │ ├── qxtglobal.h │ │ └── src.pro ├── smartjson.pri ├── smartjson │ ├── .gitignore │ ├── README.md │ ├── build │ │ ├── .gitignore │ │ ├── smartjson.xcodeproj │ │ │ └── project.pbxproj │ │ └── test.py │ ├── src │ │ ├── config.hpp │ │ ├── container │ │ │ ├── allocator.cpp │ │ │ ├── allocator.hpp │ │ │ ├── array.cpp │ │ │ ├── array.hpp │ │ │ ├── array.ipp │ │ │ ├── dict.cpp │ │ │ ├── dict.hpp │ │ │ ├── dict.ipp │ │ │ ├── iterator.h │ │ │ ├── object.cpp │ │ │ ├── object.hpp │ │ │ ├── reference.cpp │ │ │ ├── reference.hpp │ │ │ ├── reference.ipp │ │ │ ├── string.cpp │ │ │ ├── string.hpp │ │ │ └── string.ipp │ │ ├── json.hpp │ │ ├── node.cpp │ │ ├── node.hpp │ │ ├── node.ipp │ │ ├── parser.cpp │ │ ├── parser.hpp │ │ ├── types.hpp │ │ ├── writer.cpp │ │ └── writer.hpp │ └── test │ │ ├── main.cpp │ │ └── test.cpp └── third_party.pri ├── tools ├── collect_lines.py ├── gen_pri.py ├── make_package.py ├── renamefiles.py ├── resolvelib.py └── toutf8.py └── ui ├── appicon.icns ├── appicon.iconset ├── icon_128x128.png ├── icon_128x128@2x.png ├── icon_16x16.png ├── icon_16x16@2x.png ├── icon_256x256.png ├── icon_256x256@2x.png ├── icon_32x32.png ├── icon_32x32@2x.png ├── icon_512x512.png └── icon_512x512@2x.png ├── editorsetting.ui ├── icon ├── alignbottom.png ├── alignhcenter.png ├── alignleft.png ├── alignright.png ├── aligntop.png ├── alignvcenter.png ├── am.png ├── checkbox.png ├── down_arrow.png ├── hand.png ├── handle.png ├── icon.qrc ├── layout.png ├── move.png ├── p.png ├── png.png ├── rotate.png ├── run.png ├── sameheight.png ├── samehgap.png ├── samesize.png ├── samevgap.png ├── samewidth.png ├── scale.png └── windows.png ├── launchwindow.ui ├── loadingdialog.ui ├── mainwindow.ui ├── newfiledialog.ui └── newprojectdialog.ui /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/.gitmodules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/README.md -------------------------------------------------------------------------------- /app/app.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/app/app.pro -------------------------------------------------------------------------------- /app/app_delegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/app/app_delegate.cpp -------------------------------------------------------------------------------- /app/app_delegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/app/app_delegate.h -------------------------------------------------------------------------------- /app/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/app/main.cpp -------------------------------------------------------------------------------- /app/win32/editor.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/app/win32/editor.ico -------------------------------------------------------------------------------- /app/win32/qtcc_editor.rc: -------------------------------------------------------------------------------- 1 | IDI_ICON1 ICON DISCARDABLE "editor.ico" 2 | -------------------------------------------------------------------------------- /bin/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/bin/.gitignore -------------------------------------------------------------------------------- /doc/fix-cocos2d-x-compile-error.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/doc/fix-cocos2d-x-compile-error.md -------------------------------------------------------------------------------- /doc/how-to-support-new-node.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/doc/how-to-support-new-node.md -------------------------------------------------------------------------------- /doc/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/doc/screenshot.png -------------------------------------------------------------------------------- /editor_zh.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/editor_zh.ts -------------------------------------------------------------------------------- /framework.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/framework.pri -------------------------------------------------------------------------------- /generate_xcode_project.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/generate_xcode_project.sh -------------------------------------------------------------------------------- /plugin/coc/coc.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/plugin/coc/coc.pro -------------------------------------------------------------------------------- /plugin/coc/coc_animation/coc_animation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/plugin/coc/coc_animation/coc_animation.cpp -------------------------------------------------------------------------------- /plugin/coc/coc_animation/coc_animation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/plugin/coc/coc_animation/coc_animation.h -------------------------------------------------------------------------------- /plugin/coc/coc_animation/coc_animation_loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/plugin/coc/coc_animation/coc_animation_loader.cpp -------------------------------------------------------------------------------- /plugin/coc/coc_animation/coc_animation_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/plugin/coc/coc_animation/coc_animation_loader.h -------------------------------------------------------------------------------- /plugin/coc/coc_animation/coc_animation_mgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/plugin/coc/coc_animation/coc_animation_mgr.cpp -------------------------------------------------------------------------------- /plugin/coc/coc_animation/coc_animation_mgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/plugin/coc/coc_animation/coc_animation_mgr.h -------------------------------------------------------------------------------- /plugin/coc/coc_animation/coc_animation_player.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/plugin/coc/coc_animation/coc_animation_player.cpp -------------------------------------------------------------------------------- /plugin/coc/coc_animation/coc_animation_player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/plugin/coc/coc_animation/coc_animation_player.h -------------------------------------------------------------------------------- /plugin/coc/coc_animation/coc_color_transform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/plugin/coc/coc_animation/coc_color_transform.cpp -------------------------------------------------------------------------------- /plugin/coc/coc_animation/coc_color_transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/plugin/coc/coc_animation/coc_color_transform.h -------------------------------------------------------------------------------- /plugin/coc/coc_animation/coc_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/plugin/coc/coc_animation/coc_config.h -------------------------------------------------------------------------------- /plugin/coc/coc_animation/coc_movie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/plugin/coc/coc_animation/coc_movie.cpp -------------------------------------------------------------------------------- /plugin/coc/coc_animation/coc_movie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/plugin/coc/coc_animation/coc_movie.h -------------------------------------------------------------------------------- /plugin/coc/coc_animation/coc_property.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/plugin/coc/coc_animation/coc_property.cpp -------------------------------------------------------------------------------- /plugin/coc/coc_animation/coc_property.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/plugin/coc/coc_animation/coc_property.h -------------------------------------------------------------------------------- /plugin/coc/coc_animation/coc_shape.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/plugin/coc/coc_animation/coc_shape.cpp -------------------------------------------------------------------------------- /plugin/coc/coc_animation/coc_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/plugin/coc/coc_animation/coc_shape.h -------------------------------------------------------------------------------- /plugin/coc/coc_animation/coc_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/plugin/coc/coc_animation/coc_stream.h -------------------------------------------------------------------------------- /plugin/coc/coc_animation/property/coc_animation_player_property.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/plugin/coc/coc_animation/property/coc_animation_player_property.cpp -------------------------------------------------------------------------------- /plugin/coc/coc_animation/property/coc_animation_player_property.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/plugin/coc/coc_animation/property/coc_animation_player_property.h -------------------------------------------------------------------------------- /plugin/coc/coc_animation_property_listener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/plugin/coc/coc_animation_property_listener.cpp -------------------------------------------------------------------------------- /plugin/coc/coc_animation_property_listener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/plugin/coc/coc_animation_property_listener.h -------------------------------------------------------------------------------- /plugin/coc/plugin_coc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/plugin/coc/plugin_coc.cpp -------------------------------------------------------------------------------- /plugin/coc/plugin_coc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/plugin/coc/plugin_coc.h -------------------------------------------------------------------------------- /plugin/coc/plugin_coc.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/plugin/coc/plugin_coc.pri -------------------------------------------------------------------------------- /plugin/lua/lua.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/plugin/lua/lua.pro -------------------------------------------------------------------------------- /plugin/lua/lua_module_register.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/plugin/lua/lua_module_register.cpp -------------------------------------------------------------------------------- /plugin/lua/lua_tool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/plugin/lua/lua_tool.cpp -------------------------------------------------------------------------------- /plugin/lua/lua_tool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/plugin/lua/lua_tool.h -------------------------------------------------------------------------------- /plugin/lua/plugin-lua/lua_component.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/plugin/lua/plugin-lua/lua_component.cpp -------------------------------------------------------------------------------- /plugin/lua/plugin-lua/lua_component.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/plugin/lua/plugin-lua/lua_component.h -------------------------------------------------------------------------------- /plugin/lua/plugin-lua/lua_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/plugin/lua/plugin-lua/lua_helper.cpp -------------------------------------------------------------------------------- /plugin/lua/plugin-lua/lua_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/plugin/lua/plugin-lua/lua_helper.h -------------------------------------------------------------------------------- /plugin/lua/plugin-lua/lua_script_loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/plugin/lua/plugin-lua/lua_script_loader.cpp -------------------------------------------------------------------------------- /plugin/lua/plugin-lua/lua_script_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/plugin/lua/plugin-lua/lua_script_loader.h -------------------------------------------------------------------------------- /plugin/lua/plugin-lua/lua_stack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/plugin/lua/plugin-lua/lua_stack.cpp -------------------------------------------------------------------------------- /plugin/lua/plugin-lua/lua_stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/plugin/lua/plugin-lua/lua_stack.h -------------------------------------------------------------------------------- /plugin/lua/plugin_lua.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/plugin/lua/plugin_lua.cpp -------------------------------------------------------------------------------- /plugin/lua/plugin_lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/plugin/lua/plugin_lua.h -------------------------------------------------------------------------------- /plugin/lua/plugin_lua.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/plugin/lua/plugin_lua.pri -------------------------------------------------------------------------------- /plugin/lua/qt_script_property.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/plugin/lua/qt_script_property.cpp -------------------------------------------------------------------------------- /plugin/lua/qt_script_property.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/plugin/lua/qt_script_property.h -------------------------------------------------------------------------------- /plugin/viewer/plugin_viewer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/plugin/viewer/plugin_viewer.cpp -------------------------------------------------------------------------------- /plugin/viewer/plugin_viewer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/plugin/viewer/plugin_viewer.h -------------------------------------------------------------------------------- /plugin/viewer/viewer.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/plugin/viewer/viewer.pro -------------------------------------------------------------------------------- /plugin/viewer/viewerwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/plugin/viewer/viewerwindow.cpp -------------------------------------------------------------------------------- /plugin/viewer/viewerwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/plugin/viewer/viewerwindow.h -------------------------------------------------------------------------------- /plugin/viewer/viewerwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/plugin/viewer/viewerwindow.ui -------------------------------------------------------------------------------- /qco-editor.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/qco-editor.pro -------------------------------------------------------------------------------- /res/editor/language/editor_zh.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/res/editor/language/editor_zh.qm -------------------------------------------------------------------------------- /res/editor/property/ccnodes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/res/editor/property/ccnodes.json -------------------------------------------------------------------------------- /res/editor/property/component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/res/editor/property/component.json -------------------------------------------------------------------------------- /res/editor/property/configure.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/res/editor/property/configure.json -------------------------------------------------------------------------------- /res/editor/property/default_value.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/res/editor/property/default_value.json -------------------------------------------------------------------------------- /res/editor/property/font.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/res/editor/property/font.json -------------------------------------------------------------------------------- /res/editor/property/menu_component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/res/editor/property/menu_component.json -------------------------------------------------------------------------------- /res/editor/property/settings_property.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/res/editor/property/settings_property.json -------------------------------------------------------------------------------- /res/editor/property/text.json: -------------------------------------------------------------------------------- 1 | { 2 | "text" : "文字" 3 | } 4 | -------------------------------------------------------------------------------- /res/editor/property/toolbox.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/res/editor/property/toolbox.json -------------------------------------------------------------------------------- /res/editor/property/values.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/res/editor/property/values.json -------------------------------------------------------------------------------- /res/editor/property/widgets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/res/editor/property/widgets.json -------------------------------------------------------------------------------- /res/editor/shader/grid.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/res/editor/shader/grid.frag -------------------------------------------------------------------------------- /res/editor/shader/grid.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/res/editor/shader/grid.vert -------------------------------------------------------------------------------- /res/editor/style/darkorange.stylesheet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/res/editor/style/darkorange.stylesheet -------------------------------------------------------------------------------- /res/editor/ui/diamond1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/res/editor/ui/diamond1.png -------------------------------------------------------------------------------- /res/editor/ui/diamond2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/res/editor/ui/diamond2.png -------------------------------------------------------------------------------- /res/editor/ui/gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/res/editor/ui/gray.png -------------------------------------------------------------------------------- /res/editor/ui/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/res/editor/ui/green.png -------------------------------------------------------------------------------- /res/plugin/coc/configure.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/res/plugin/coc/configure.json -------------------------------------------------------------------------------- /res/plugin/coc/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/res/plugin/coc/default.json -------------------------------------------------------------------------------- /res/plugin/coc/menu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/res/plugin/coc/menu.json -------------------------------------------------------------------------------- /res/plugin/coc/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/res/plugin/coc/properties.json -------------------------------------------------------------------------------- /res/plugin/coc/values.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/res/plugin/coc/values.json -------------------------------------------------------------------------------- /res/plugin/lua/component_menu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/res/plugin/lua/component_menu.json -------------------------------------------------------------------------------- /res/plugin/lua/configure.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/res/plugin/lua/configure.json -------------------------------------------------------------------------------- /res/plugin/lua/functions.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/res/plugin/lua/functions.lua -------------------------------------------------------------------------------- /res/plugin/lua/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/res/plugin/lua/properties.json -------------------------------------------------------------------------------- /res/qco/CheckBoxNode_Disable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/res/qco/CheckBoxNode_Disable.png -------------------------------------------------------------------------------- /res/qco/CheckBoxNode_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/res/qco/CheckBoxNode_Normal.png -------------------------------------------------------------------------------- /res/qco/CheckBox_Disable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/res/qco/CheckBox_Disable.png -------------------------------------------------------------------------------- /res/qco/CheckBox_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/res/qco/CheckBox_Normal.png -------------------------------------------------------------------------------- /res/qco/CheckBox_Press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/res/qco/CheckBox_Press.png -------------------------------------------------------------------------------- /res/qco/CloseNormal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/res/qco/CloseNormal.png -------------------------------------------------------------------------------- /res/qco/CloseSelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/res/qco/CloseSelected.png -------------------------------------------------------------------------------- /res/qco/HelloWorld.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/res/qco/HelloWorld.png -------------------------------------------------------------------------------- /res/qco/alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/res/qco/alpha.png -------------------------------------------------------------------------------- /res/qco/area.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/res/qco/area.png -------------------------------------------------------------------------------- /res/qco/area2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/res/qco/area2.png -------------------------------------------------------------------------------- /res/qco/area3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/res/qco/area3.png -------------------------------------------------------------------------------- /res/qco/btn_dark_dwn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/res/qco/btn_dark_dwn.png -------------------------------------------------------------------------------- /res/qco/btn_dark_nml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/res/qco/btn_dark_nml.png -------------------------------------------------------------------------------- /res/qco/btn_disable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/res/qco/btn_disable.png -------------------------------------------------------------------------------- /res/qco/btn_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/res/qco/btn_normal.png -------------------------------------------------------------------------------- /res/qco/btn_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/res/qco/btn_press.png -------------------------------------------------------------------------------- /res/qco/button_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/res/qco/button_disabled.png -------------------------------------------------------------------------------- /res/qco/button_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/res/qco/button_normal.png -------------------------------------------------------------------------------- /res/qco/button_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/res/qco/button_pressed.png -------------------------------------------------------------------------------- /res/qco/fonts/Marker Felt.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/res/qco/fonts/Marker Felt.ttf -------------------------------------------------------------------------------- /res/qco/fonts/arial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/res/qco/fonts/arial.ttf -------------------------------------------------------------------------------- /res/qco/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/res/qco/green.png -------------------------------------------------------------------------------- /res/qco/resource_image.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/res/qco/resource_image.json -------------------------------------------------------------------------------- /res/qco/resource_text.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/res/qco/resource_text.json -------------------------------------------------------------------------------- /res/qco/spark.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/res/qco/spark.plist -------------------------------------------------------------------------------- /res/qco/spark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/res/qco/spark.png -------------------------------------------------------------------------------- /res/qco/test_lua_script.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/res/qco/test_lua_script.lua -------------------------------------------------------------------------------- /res/qco/tortoise.c3b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/res/qco/tortoise.c3b -------------------------------------------------------------------------------- /res/qco/tortoise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/res/qco/tortoise.png -------------------------------------------------------------------------------- /src/editor/base_editor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/base_editor.cpp -------------------------------------------------------------------------------- /src/editor/base_editor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/base_editor.h -------------------------------------------------------------------------------- /src/editor/canvas/canvas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/canvas/canvas.cpp -------------------------------------------------------------------------------- /src/editor/canvas/canvas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/canvas/canvas.h -------------------------------------------------------------------------------- /src/editor/canvas/canvas2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/canvas/canvas2d.cpp -------------------------------------------------------------------------------- /src/editor/canvas/canvas2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/canvas/canvas2d.h -------------------------------------------------------------------------------- /src/editor/canvas/canvas3d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/canvas/canvas3d.cpp -------------------------------------------------------------------------------- /src/editor/canvas/canvas3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/canvas/canvas3d.h -------------------------------------------------------------------------------- /src/editor/canvas/canvas_creator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/canvas/canvas_creator.cpp -------------------------------------------------------------------------------- /src/editor/canvas/canvas_creator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/canvas/canvas_creator.h -------------------------------------------------------------------------------- /src/editor/canvas/canvas_mgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/canvas/canvas_mgr.cpp -------------------------------------------------------------------------------- /src/editor/canvas/canvas_mgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/canvas/canvas_mgr.h -------------------------------------------------------------------------------- /src/editor/canvas/canvas_tile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/canvas/canvas_tile.cpp -------------------------------------------------------------------------------- /src/editor/canvas/canvas_tile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/canvas/canvas_tile.h -------------------------------------------------------------------------------- /src/editor/canvas/editor_multi_selector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/canvas/editor_multi_selector.cpp -------------------------------------------------------------------------------- /src/editor/canvas/editor_multi_selector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/canvas/editor_multi_selector.h -------------------------------------------------------------------------------- /src/editor/canvas/gizmo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/canvas/gizmo.cpp -------------------------------------------------------------------------------- /src/editor/canvas/gizmo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/canvas/gizmo.h -------------------------------------------------------------------------------- /src/editor/canvas/gizmo_position.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/canvas/gizmo_position.cpp -------------------------------------------------------------------------------- /src/editor/canvas/gizmo_position.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/canvas/gizmo_position.h -------------------------------------------------------------------------------- /src/editor/canvas/gizmo_rotation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/canvas/gizmo_rotation.cpp -------------------------------------------------------------------------------- /src/editor/canvas/gizmo_rotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/canvas/gizmo_rotation.h -------------------------------------------------------------------------------- /src/editor/canvas/gizmo_scale.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/canvas/gizmo_scale.cpp -------------------------------------------------------------------------------- /src/editor/canvas/gizmo_scale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/canvas/gizmo_scale.h -------------------------------------------------------------------------------- /src/editor/canvas/tile_painter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/canvas/tile_painter.cpp -------------------------------------------------------------------------------- /src/editor/canvas/tile_painter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/canvas/tile_painter.h -------------------------------------------------------------------------------- /src/editor/cc_predefine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/cc_predefine.h -------------------------------------------------------------------------------- /src/editor/class_name_map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/class_name_map.cpp -------------------------------------------------------------------------------- /src/editor/class_name_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/class_name_map.h -------------------------------------------------------------------------------- /src/editor/command/cmd_component_property_change.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/command/cmd_component_property_change.cpp -------------------------------------------------------------------------------- /src/editor/command/cmd_component_property_change.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/command/cmd_component_property_change.h -------------------------------------------------------------------------------- /src/editor/command/cmd_create_component.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/command/cmd_create_component.cpp -------------------------------------------------------------------------------- /src/editor/command/cmd_create_component.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/command/cmd_create_component.h -------------------------------------------------------------------------------- /src/editor/command/cmd_create_node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/command/cmd_create_node.cpp -------------------------------------------------------------------------------- /src/editor/command/cmd_create_node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/command/cmd_create_node.h -------------------------------------------------------------------------------- /src/editor/command/cmd_delete_component.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/command/cmd_delete_component.cpp -------------------------------------------------------------------------------- /src/editor/command/cmd_delete_component.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/command/cmd_delete_component.h -------------------------------------------------------------------------------- /src/editor/command/cmd_delete_node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/command/cmd_delete_node.cpp -------------------------------------------------------------------------------- /src/editor/command/cmd_delete_node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/command/cmd_delete_node.h -------------------------------------------------------------------------------- /src/editor/command/cmd_drop_files.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/command/cmd_drop_files.cpp -------------------------------------------------------------------------------- /src/editor/command/cmd_drop_files.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/command/cmd_drop_files.h -------------------------------------------------------------------------------- /src/editor/command/cmd_property_change.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/command/cmd_property_change.cpp -------------------------------------------------------------------------------- /src/editor/command/cmd_property_change.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/command/cmd_property_change.h -------------------------------------------------------------------------------- /src/editor/command/cmd_reorder_node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/command/cmd_reorder_node.cpp -------------------------------------------------------------------------------- /src/editor/command/cmd_reorder_node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/command/cmd_reorder_node.h -------------------------------------------------------------------------------- /src/editor/command/cmd_reparent_node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/command/cmd_reparent_node.cpp -------------------------------------------------------------------------------- /src/editor/command/cmd_reparent_node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/command/cmd_reparent_node.h -------------------------------------------------------------------------------- /src/editor/command/cmd_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/command/cmd_types.h -------------------------------------------------------------------------------- /src/editor/common_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/common_types.h -------------------------------------------------------------------------------- /src/editor/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/config.h -------------------------------------------------------------------------------- /src/editor/configure_loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/configure_loader.cpp -------------------------------------------------------------------------------- /src/editor/configure_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/configure_loader.h -------------------------------------------------------------------------------- /src/editor/default_configure_loaders.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/default_configure_loaders.cpp -------------------------------------------------------------------------------- /src/editor/document.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/document.cpp -------------------------------------------------------------------------------- /src/editor/document.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/document.h -------------------------------------------------------------------------------- /src/editor/draw_node3d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/draw_node3d.cpp -------------------------------------------------------------------------------- /src/editor/draw_node3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/draw_node3d.h -------------------------------------------------------------------------------- /src/editor/editor.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/editor.pri -------------------------------------------------------------------------------- /src/editor/editor_setting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/editor_setting.cpp -------------------------------------------------------------------------------- /src/editor/editor_setting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/editor_setting.h -------------------------------------------------------------------------------- /src/editor/event_listener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/event_listener.h -------------------------------------------------------------------------------- /src/editor/exporters/layout_exporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/exporters/layout_exporter.cpp -------------------------------------------------------------------------------- /src/editor/exporters/layout_exporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/exporters/layout_exporter.h -------------------------------------------------------------------------------- /src/editor/extend/editor_camera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/extend/editor_camera.cpp -------------------------------------------------------------------------------- /src/editor/extend/editor_camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/extend/editor_camera.h -------------------------------------------------------------------------------- /src/editor/extend/editor_light.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/extend/editor_light.cpp -------------------------------------------------------------------------------- /src/editor/extend/editor_light.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/extend/editor_light.h -------------------------------------------------------------------------------- /src/editor/extend/editor_scene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/extend/editor_scene.cpp -------------------------------------------------------------------------------- /src/editor/extend/editor_scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/extend/editor_scene.h -------------------------------------------------------------------------------- /src/editor/extend/editor_sprite3d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/extend/editor_sprite3d.cpp -------------------------------------------------------------------------------- /src/editor/extend/editor_sprite3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/extend/editor_sprite3d.h -------------------------------------------------------------------------------- /src/editor/framework.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/framework.cpp -------------------------------------------------------------------------------- /src/editor/framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/framework.h -------------------------------------------------------------------------------- /src/editor/glwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/glwidget.cpp -------------------------------------------------------------------------------- /src/editor/glwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/glwidget.h -------------------------------------------------------------------------------- /src/editor/hierarchy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/hierarchy.cpp -------------------------------------------------------------------------------- /src/editor/hierarchy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/hierarchy.h -------------------------------------------------------------------------------- /src/editor/icon_cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/icon_cache.cpp -------------------------------------------------------------------------------- /src/editor/icon_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/icon_cache.h -------------------------------------------------------------------------------- /src/editor/importer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/importer.cpp -------------------------------------------------------------------------------- /src/editor/importer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/importer.h -------------------------------------------------------------------------------- /src/editor/importers/default_importer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/importers/default_importer.cpp -------------------------------------------------------------------------------- /src/editor/importers/default_importer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/importers/default_importer.h -------------------------------------------------------------------------------- /src/editor/importers/file_importer.cpp: -------------------------------------------------------------------------------- 1 | #include "file_importer.h" 2 | -------------------------------------------------------------------------------- /src/editor/importers/file_importer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/importers/file_importer.h -------------------------------------------------------------------------------- /src/editor/importers/layout_importer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/importers/layout_importer.cpp -------------------------------------------------------------------------------- /src/editor/importers/layout_importer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/importers/layout_importer.h -------------------------------------------------------------------------------- /src/editor/inspector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/inspector.cpp -------------------------------------------------------------------------------- /src/editor/inspector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/inspector.h -------------------------------------------------------------------------------- /src/editor/launchwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/launchwindow.cpp -------------------------------------------------------------------------------- /src/editor/launchwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/launchwindow.h -------------------------------------------------------------------------------- /src/editor/layout_editor.cpp: -------------------------------------------------------------------------------- 1 | #include "layout_editor.h" 2 | -------------------------------------------------------------------------------- /src/editor/layout_editor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/layout_editor.h -------------------------------------------------------------------------------- /src/editor/loading_dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/loading_dialog.cpp -------------------------------------------------------------------------------- /src/editor/loading_dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/loading_dialog.h -------------------------------------------------------------------------------- /src/editor/logout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/logout.cpp -------------------------------------------------------------------------------- /src/editor/logout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/logout.h -------------------------------------------------------------------------------- /src/editor/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/mainwindow.cpp -------------------------------------------------------------------------------- /src/editor/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/mainwindow.h -------------------------------------------------------------------------------- /src/editor/menu_loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/menu_loader.cpp -------------------------------------------------------------------------------- /src/editor/menu_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/menu_loader.h -------------------------------------------------------------------------------- /src/editor/newfiledialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/newfiledialog.cpp -------------------------------------------------------------------------------- /src/editor/newfiledialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/newfiledialog.h -------------------------------------------------------------------------------- /src/editor/newprojectdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/newprojectdialog.cpp -------------------------------------------------------------------------------- /src/editor/newprojectdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/newprojectdialog.h -------------------------------------------------------------------------------- /src/editor/plugin_interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/plugin_interface.cpp -------------------------------------------------------------------------------- /src/editor/plugin_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/plugin_interface.h -------------------------------------------------------------------------------- /src/editor/plugin_mgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/plugin_mgr.cpp -------------------------------------------------------------------------------- /src/editor/plugin_mgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/plugin_mgr.h -------------------------------------------------------------------------------- /src/editor/project_mgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/project_mgr.cpp -------------------------------------------------------------------------------- /src/editor/project_mgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/project_mgr.h -------------------------------------------------------------------------------- /src/editor/properties/property_creator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/properties/property_creator.cpp -------------------------------------------------------------------------------- /src/editor/properties/property_creator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/properties/property_creator.h -------------------------------------------------------------------------------- /src/editor/properties/property_default.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/properties/property_default.cpp -------------------------------------------------------------------------------- /src/editor/properties/property_default.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/properties/property_default.h -------------------------------------------------------------------------------- /src/editor/properties/property_definition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/properties/property_definition.cpp -------------------------------------------------------------------------------- /src/editor/properties/property_definition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/properties/property_definition.h -------------------------------------------------------------------------------- /src/editor/properties/property_group.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/properties/property_group.cpp -------------------------------------------------------------------------------- /src/editor/properties/property_group.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/properties/property_group.h -------------------------------------------------------------------------------- /src/editor/properties/property_listener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/properties/property_listener.cpp -------------------------------------------------------------------------------- /src/editor/properties/property_listener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/properties/property_listener.h -------------------------------------------------------------------------------- /src/editor/properties/property_listener_link.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/properties/property_listener_link.cpp -------------------------------------------------------------------------------- /src/editor/properties/property_listener_link.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/properties/property_listener_link.h -------------------------------------------------------------------------------- /src/editor/properties/property_listener_tile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/properties/property_listener_tile.cpp -------------------------------------------------------------------------------- /src/editor/properties/property_listener_tile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/properties/property_listener_tile.h -------------------------------------------------------------------------------- /src/editor/properties/property_listener_widget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/properties/property_listener_widget.cpp -------------------------------------------------------------------------------- /src/editor/properties/property_listener_widget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/properties/property_listener_widget.h -------------------------------------------------------------------------------- /src/editor/properties/property_param.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/properties/property_param.cpp -------------------------------------------------------------------------------- /src/editor/properties/property_param.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/properties/property_param.h -------------------------------------------------------------------------------- /src/editor/properties/qt_comp_property.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/properties/qt_comp_property.cpp -------------------------------------------------------------------------------- /src/editor/properties/qt_comp_property.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/properties/qt_comp_property.h -------------------------------------------------------------------------------- /src/editor/properties/qt_file_property_ex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/properties/qt_file_property_ex.cpp -------------------------------------------------------------------------------- /src/editor/properties/qt_file_property_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/properties/qt_file_property_ex.h -------------------------------------------------------------------------------- /src/editor/properties/qt_font_property.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/properties/qt_font_property.cpp -------------------------------------------------------------------------------- /src/editor/properties/qt_font_property.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/properties/qt_font_property.h -------------------------------------------------------------------------------- /src/editor/properties/qt_user_property.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/properties/qt_user_property.cpp -------------------------------------------------------------------------------- /src/editor/properties/qt_user_property.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/properties/qt_user_property.h -------------------------------------------------------------------------------- /src/editor/properties/register_property_listeners.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/properties/register_property_listeners.cpp -------------------------------------------------------------------------------- /src/editor/properties/register_property_listeners.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/properties/register_property_listeners.h -------------------------------------------------------------------------------- /src/editor/qhierarchytree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/qhierarchytree.cpp -------------------------------------------------------------------------------- /src/editor/qhierarchytree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/qhierarchytree.h -------------------------------------------------------------------------------- /src/editor/qresourcetable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/qresourcetable.cpp -------------------------------------------------------------------------------- /src/editor/qresourcetable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/qresourcetable.h -------------------------------------------------------------------------------- /src/editor/qresourcetree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/qresourcetree.cpp -------------------------------------------------------------------------------- /src/editor/qresourcetree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/qresourcetree.h -------------------------------------------------------------------------------- /src/editor/qtglview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/qtglview.cpp -------------------------------------------------------------------------------- /src/editor/qtglview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/qtglview.h -------------------------------------------------------------------------------- /src/editor/resource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/resource.cpp -------------------------------------------------------------------------------- /src/editor/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/resource.h -------------------------------------------------------------------------------- /src/editor/resource_content.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/resource_content.cpp -------------------------------------------------------------------------------- /src/editor/resource_content.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/resource_content.h -------------------------------------------------------------------------------- /src/editor/resource_folder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/resource_folder.cpp -------------------------------------------------------------------------------- /src/editor/resource_folder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/resource_folder.h -------------------------------------------------------------------------------- /src/editor/resource_mgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/resource_mgr.cpp -------------------------------------------------------------------------------- /src/editor/resource_mgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/resource_mgr.h -------------------------------------------------------------------------------- /src/editor/resource_mime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/resource_mime.cpp -------------------------------------------------------------------------------- /src/editor/resource_mime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/resource_mime.h -------------------------------------------------------------------------------- /src/editor/status_bar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/status_bar.cpp -------------------------------------------------------------------------------- /src/editor/status_bar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/status_bar.h -------------------------------------------------------------------------------- /src/editor/texture_split_editor.cpp: -------------------------------------------------------------------------------- 1 | #include "texture_split_editor.h" 2 | -------------------------------------------------------------------------------- /src/editor/texture_split_editor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/texture_split_editor.h -------------------------------------------------------------------------------- /src/editor/tools/file_tools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/tools/file_tools.cpp -------------------------------------------------------------------------------- /src/editor/tools/file_tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/tools/file_tools.h -------------------------------------------------------------------------------- /src/editor/tools/json_tools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/tools/json_tools.cpp -------------------------------------------------------------------------------- /src/editor/tools/json_tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/tools/json_tools.h -------------------------------------------------------------------------------- /src/editor/tools/log_event_dispatcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/tools/log_event_dispatcher.cpp -------------------------------------------------------------------------------- /src/editor/tools/log_event_dispatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/tools/log_event_dispatcher.h -------------------------------------------------------------------------------- /src/editor/tools/log_tool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/tools/log_tool.cpp -------------------------------------------------------------------------------- /src/editor/tools/log_tool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/tools/log_tool.h -------------------------------------------------------------------------------- /src/editor/tools/math_tool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/tools/math_tool.h -------------------------------------------------------------------------------- /src/editor/tools/math_tools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/tools/math_tools.cpp -------------------------------------------------------------------------------- /src/editor/tools/mesh_tools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/tools/mesh_tools.cpp -------------------------------------------------------------------------------- /src/editor/tools/mesh_tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/tools/mesh_tools.h -------------------------------------------------------------------------------- /src/editor/tools/node_tool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/tools/node_tool.cpp -------------------------------------------------------------------------------- /src/editor/tools/node_tool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/tools/node_tool.h -------------------------------------------------------------------------------- /src/editor/tools/qstring_tool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/tools/qstring_tool.cpp -------------------------------------------------------------------------------- /src/editor/tools/qstring_tool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/tools/qstring_tool.h -------------------------------------------------------------------------------- /src/editor/tools/time_tool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/tools/time_tool.cpp -------------------------------------------------------------------------------- /src/editor/tools/time_tool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/tools/time_tool.h -------------------------------------------------------------------------------- /src/editor/user_configure.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/user_configure.cpp -------------------------------------------------------------------------------- /src/editor/user_configure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/editor/user_configure.h -------------------------------------------------------------------------------- /src/runtime.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/runtime.pri -------------------------------------------------------------------------------- /src/runtime/base_loader_mgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/runtime/base_loader_mgr.cpp -------------------------------------------------------------------------------- /src/runtime/base_loader_mgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/runtime/base_loader_mgr.h -------------------------------------------------------------------------------- /src/runtime/binary_reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/runtime/binary_reader.cpp -------------------------------------------------------------------------------- /src/runtime/binary_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/runtime/binary_reader.h -------------------------------------------------------------------------------- /src/runtime/binary_writer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/runtime/binary_writer.cpp -------------------------------------------------------------------------------- /src/runtime/binary_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/runtime/binary_writer.h -------------------------------------------------------------------------------- /src/runtime/component_loader_mgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/runtime/component_loader_mgr.cpp -------------------------------------------------------------------------------- /src/runtime/component_loader_mgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/runtime/component_loader_mgr.h -------------------------------------------------------------------------------- /src/runtime/extend/csb_animation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/runtime/extend/csb_animation.cpp -------------------------------------------------------------------------------- /src/runtime/extend/csb_animation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/runtime/extend/csb_animation.h -------------------------------------------------------------------------------- /src/runtime/extend/layout_proxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/runtime/extend/layout_proxy.cpp -------------------------------------------------------------------------------- /src/runtime/extend/layout_proxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/runtime/extend/layout_proxy.h -------------------------------------------------------------------------------- /src/runtime/extend/tile_collision_node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/runtime/extend/tile_collision_node.cpp -------------------------------------------------------------------------------- /src/runtime/extend/tile_collision_node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/runtime/extend/tile_collision_node.h -------------------------------------------------------------------------------- /src/runtime/extend/z_button.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/runtime/extend/z_button.cpp -------------------------------------------------------------------------------- /src/runtime/extend/z_button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/runtime/extend/z_button.h -------------------------------------------------------------------------------- /src/runtime/extend/z_textatlas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/runtime/extend/z_textatlas.cpp -------------------------------------------------------------------------------- /src/runtime/extend/z_textatlas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/runtime/extend/z_textatlas.h -------------------------------------------------------------------------------- /src/runtime/helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/runtime/helper.cpp -------------------------------------------------------------------------------- /src/runtime/helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/runtime/helper.h -------------------------------------------------------------------------------- /src/runtime/json_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/runtime/json_helper.cpp -------------------------------------------------------------------------------- /src/runtime/json_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/runtime/json_helper.h -------------------------------------------------------------------------------- /src/runtime/layout_loader_mgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/runtime/layout_loader_mgr.cpp -------------------------------------------------------------------------------- /src/runtime/layout_loader_mgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/runtime/layout_loader_mgr.h -------------------------------------------------------------------------------- /src/runtime/loaders/button_loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/runtime/loaders/button_loader.cpp -------------------------------------------------------------------------------- /src/runtime/loaders/button_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/runtime/loaders/button_loader.h -------------------------------------------------------------------------------- /src/runtime/loaders/camera_loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/runtime/loaders/camera_loader.cpp -------------------------------------------------------------------------------- /src/runtime/loaders/camera_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/runtime/loaders/camera_loader.h -------------------------------------------------------------------------------- /src/runtime/loaders/checkbox_loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/runtime/loaders/checkbox_loader.cpp -------------------------------------------------------------------------------- /src/runtime/loaders/checkbox_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/runtime/loaders/checkbox_loader.h -------------------------------------------------------------------------------- /src/runtime/loaders/component_loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/runtime/loaders/component_loader.cpp -------------------------------------------------------------------------------- /src/runtime/loaders/component_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/runtime/loaders/component_loader.h -------------------------------------------------------------------------------- /src/runtime/loaders/csb_animation_loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/runtime/loaders/csb_animation_loader.cpp -------------------------------------------------------------------------------- /src/runtime/loaders/csb_animation_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/runtime/loaders/csb_animation_loader.h -------------------------------------------------------------------------------- /src/runtime/loaders/image_loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/runtime/loaders/image_loader.cpp -------------------------------------------------------------------------------- /src/runtime/loaders/image_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/runtime/loaders/image_loader.h -------------------------------------------------------------------------------- /src/runtime/loaders/layout_component_loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/runtime/loaders/layout_component_loader.cpp -------------------------------------------------------------------------------- /src/runtime/loaders/layout_component_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/runtime/loaders/layout_component_loader.h -------------------------------------------------------------------------------- /src/runtime/loaders/layout_loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/runtime/loaders/layout_loader.cpp -------------------------------------------------------------------------------- /src/runtime/loaders/layout_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/runtime/loaders/layout_loader.h -------------------------------------------------------------------------------- /src/runtime/loaders/layout_proxy_loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/runtime/loaders/layout_proxy_loader.cpp -------------------------------------------------------------------------------- /src/runtime/loaders/layout_proxy_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/runtime/loaders/layout_proxy_loader.h -------------------------------------------------------------------------------- /src/runtime/loaders/light_loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/runtime/loaders/light_loader.cpp -------------------------------------------------------------------------------- /src/runtime/loaders/light_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/runtime/loaders/light_loader.h -------------------------------------------------------------------------------- /src/runtime/loaders/listview_loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/runtime/loaders/listview_loader.cpp -------------------------------------------------------------------------------- /src/runtime/loaders/listview_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/runtime/loaders/listview_loader.h -------------------------------------------------------------------------------- /src/runtime/loaders/loader_addin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/runtime/loaders/loader_addin.cpp -------------------------------------------------------------------------------- /src/runtime/loaders/loader_addin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/runtime/loaders/loader_addin.h -------------------------------------------------------------------------------- /src/runtime/loaders/loadingbar_loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/runtime/loaders/loadingbar_loader.cpp -------------------------------------------------------------------------------- /src/runtime/loaders/loadingbar_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/runtime/loaders/loadingbar_loader.h -------------------------------------------------------------------------------- /src/runtime/loaders/node_loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/runtime/loaders/node_loader.cpp -------------------------------------------------------------------------------- /src/runtime/loaders/node_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/runtime/loaders/node_loader.h -------------------------------------------------------------------------------- /src/runtime/loaders/pageview_loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/runtime/loaders/pageview_loader.cpp -------------------------------------------------------------------------------- /src/runtime/loaders/pageview_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/runtime/loaders/pageview_loader.h -------------------------------------------------------------------------------- /src/runtime/loaders/particle_loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/runtime/loaders/particle_loader.cpp -------------------------------------------------------------------------------- /src/runtime/loaders/particle_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/runtime/loaders/particle_loader.h -------------------------------------------------------------------------------- /src/runtime/loaders/physicsbody_loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/runtime/loaders/physicsbody_loader.cpp -------------------------------------------------------------------------------- /src/runtime/loaders/physicsbody_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/runtime/loaders/physicsbody_loader.h -------------------------------------------------------------------------------- /src/runtime/loaders/richtext_loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/runtime/loaders/richtext_loader.cpp -------------------------------------------------------------------------------- /src/runtime/loaders/richtext_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/runtime/loaders/richtext_loader.h -------------------------------------------------------------------------------- /src/runtime/loaders/scrollview_loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/runtime/loaders/scrollview_loader.cpp -------------------------------------------------------------------------------- /src/runtime/loaders/scrollview_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/runtime/loaders/scrollview_loader.h -------------------------------------------------------------------------------- /src/runtime/loaders/slider_loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/runtime/loaders/slider_loader.cpp -------------------------------------------------------------------------------- /src/runtime/loaders/slider_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/runtime/loaders/slider_loader.h -------------------------------------------------------------------------------- /src/runtime/loaders/spot_light_loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/runtime/loaders/spot_light_loader.cpp -------------------------------------------------------------------------------- /src/runtime/loaders/spot_light_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/runtime/loaders/spot_light_loader.h -------------------------------------------------------------------------------- /src/runtime/loaders/sprite3dloader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/runtime/loaders/sprite3dloader.cpp -------------------------------------------------------------------------------- /src/runtime/loaders/sprite3dloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/runtime/loaders/sprite3dloader.h -------------------------------------------------------------------------------- /src/runtime/loaders/sprite_loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/runtime/loaders/sprite_loader.cpp -------------------------------------------------------------------------------- /src/runtime/loaders/sprite_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/runtime/loaders/sprite_loader.h -------------------------------------------------------------------------------- /src/runtime/loaders/text_loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/runtime/loaders/text_loader.cpp -------------------------------------------------------------------------------- /src/runtime/loaders/text_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/runtime/loaders/text_loader.h -------------------------------------------------------------------------------- /src/runtime/loaders/textatlas_loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/runtime/loaders/textatlas_loader.cpp -------------------------------------------------------------------------------- /src/runtime/loaders/textatlas_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/runtime/loaders/textatlas_loader.h -------------------------------------------------------------------------------- /src/runtime/loaders/textbmfont_loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/runtime/loaders/textbmfont_loader.cpp -------------------------------------------------------------------------------- /src/runtime/loaders/textbmfont_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/runtime/loaders/textbmfont_loader.h -------------------------------------------------------------------------------- /src/runtime/loaders/textfield_loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/runtime/loaders/textfield_loader.cpp -------------------------------------------------------------------------------- /src/runtime/loaders/textfield_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/runtime/loaders/textfield_loader.h -------------------------------------------------------------------------------- /src/runtime/loaders/tile_collision_node_loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/runtime/loaders/tile_collision_node_loader.cpp -------------------------------------------------------------------------------- /src/runtime/loaders/tile_collision_node_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/runtime/loaders/tile_collision_node_loader.h -------------------------------------------------------------------------------- /src/runtime/loaders/widget_loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/runtime/loaders/widget_loader.cpp -------------------------------------------------------------------------------- /src/runtime/loaders/widget_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/runtime/loaders/widget_loader.h -------------------------------------------------------------------------------- /src/runtime/math_tool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/runtime/math_tool.cpp -------------------------------------------------------------------------------- /src/runtime/math_tool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/runtime/math_tool.h -------------------------------------------------------------------------------- /src/runtime/object_factory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/runtime/object_factory.cpp -------------------------------------------------------------------------------- /src/runtime/object_factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/runtime/object_factory.h -------------------------------------------------------------------------------- /src/runtime/object_loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/runtime/object_loader.cpp -------------------------------------------------------------------------------- /src/runtime/object_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/runtime/object_loader.h -------------------------------------------------------------------------------- /src/runtime/pip_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/runtime/pip_config.h -------------------------------------------------------------------------------- /src/runtime/rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/runtime/rect.h -------------------------------------------------------------------------------- /src/runtime/resource_holder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/runtime/resource_holder.cpp -------------------------------------------------------------------------------- /src/runtime/resource_holder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/runtime/resource_holder.h -------------------------------------------------------------------------------- /src/runtime/resource_mapping.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/runtime/resource_mapping.cpp -------------------------------------------------------------------------------- /src/runtime/resource_mapping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/runtime/resource_mapping.h -------------------------------------------------------------------------------- /src/runtime/singleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/runtime/singleton.h -------------------------------------------------------------------------------- /src/runtime/smartpointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/runtime/smartpointer.h -------------------------------------------------------------------------------- /src/runtime/sprite_tool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/runtime/sprite_tool.cpp -------------------------------------------------------------------------------- /src/runtime/sprite_tool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/runtime/sprite_tool.h -------------------------------------------------------------------------------- /src/runtime/string_tool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/runtime/string_tool.cpp -------------------------------------------------------------------------------- /src/runtime/string_tool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/runtime/string_tool.h -------------------------------------------------------------------------------- /src/src.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/src/src.pro -------------------------------------------------------------------------------- /test/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | build*/ 3 | lib/ 4 | -------------------------------------------------------------------------------- /test/editor_test/.cocos-project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/.cocos-project.json -------------------------------------------------------------------------------- /test/editor_test/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | /build-*/ 3 | -------------------------------------------------------------------------------- /test/editor_test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/CMakeLists.txt -------------------------------------------------------------------------------- /test/editor_test/Classes/AppDelegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/Classes/AppDelegate.cpp -------------------------------------------------------------------------------- /test/editor_test/Classes/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/Classes/AppDelegate.h -------------------------------------------------------------------------------- /test/editor_test/Classes/lua_module_register.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/Classes/lua_module_register.h -------------------------------------------------------------------------------- /test/editor_test/Classes/main_scene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/Classes/main_scene.cpp -------------------------------------------------------------------------------- /test/editor_test/Classes/main_scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/Classes/main_scene.h -------------------------------------------------------------------------------- /test/editor_test/Resources/res/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/editor_test/Resources/res/CloseNormal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/Resources/res/CloseNormal.png -------------------------------------------------------------------------------- /test/editor_test/Resources/res/CloseSelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/Resources/res/CloseSelected.png -------------------------------------------------------------------------------- /test/editor_test/Resources/res/HelloWorld.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/Resources/res/HelloWorld.png -------------------------------------------------------------------------------- /test/editor_test/Resources/res/fonts/Marker Felt.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/Resources/res/fonts/Marker Felt.ttf -------------------------------------------------------------------------------- /test/editor_test/Resources/res/fonts/arial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/Resources/res/fonts/arial.ttf -------------------------------------------------------------------------------- /test/editor_test/Resources/res/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/Resources/res/test.json -------------------------------------------------------------------------------- /test/editor_test/Resources/res/tortoise.c3b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/Resources/res/tortoise.c3b -------------------------------------------------------------------------------- /test/editor_test/Resources/res/tortoise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/Resources/res/tortoise.png -------------------------------------------------------------------------------- /test/editor_test/proj.android-studio/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.android-studio/.gitignore -------------------------------------------------------------------------------- /test/editor_test/proj.android-studio/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | /jniLibs 3 | -------------------------------------------------------------------------------- /test/editor_test/proj.android-studio/app/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.android-studio/app/AndroidManifest.xml -------------------------------------------------------------------------------- /test/editor_test/proj.android-studio/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.android-studio/app/build.gradle -------------------------------------------------------------------------------- /test/editor_test/proj.android-studio/app/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.android-studio/app/jni/Android.mk -------------------------------------------------------------------------------- /test/editor_test/proj.android-studio/app/jni/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.android-studio/app/jni/Application.mk -------------------------------------------------------------------------------- /test/editor_test/proj.android-studio/app/jni/hellocpp/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.android-studio/app/jni/hellocpp/main.cpp -------------------------------------------------------------------------------- /test/editor_test/proj.android-studio/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.android-studio/app/proguard-rules.pro -------------------------------------------------------------------------------- /test/editor_test/proj.android-studio/app/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.android-studio/app/project.properties -------------------------------------------------------------------------------- /test/editor_test/proj.android-studio/app/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.android-studio/app/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /test/editor_test/proj.android-studio/app/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.android-studio/app/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /test/editor_test/proj.android-studio/app/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.android-studio/app/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /test/editor_test/proj.android-studio/app/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.android-studio/app/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /test/editor_test/proj.android-studio/app/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.android-studio/app/res/values/strings.xml -------------------------------------------------------------------------------- /test/editor_test/proj.android-studio/app/src/org/cocos2dx/cpp/AppActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.android-studio/app/src/org/cocos2dx/cpp/AppActivity.java -------------------------------------------------------------------------------- /test/editor_test/proj.android-studio/build-cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.android-studio/build-cfg.json -------------------------------------------------------------------------------- /test/editor_test/proj.android-studio/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.android-studio/build.gradle -------------------------------------------------------------------------------- /test/editor_test/proj.android-studio/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.android-studio/gradle.properties -------------------------------------------------------------------------------- /test/editor_test/proj.android-studio/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.android-studio/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /test/editor_test/proj.android-studio/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.android-studio/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /test/editor_test/proj.android-studio/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.android-studio/gradlew -------------------------------------------------------------------------------- /test/editor_test/proj.android-studio/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.android-studio/gradlew.bat -------------------------------------------------------------------------------- /test/editor_test/proj.android-studio/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.android-studio/settings.gradle -------------------------------------------------------------------------------- /test/editor_test/proj.android/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.android/.classpath -------------------------------------------------------------------------------- /test/editor_test/proj.android/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.android/.cproject -------------------------------------------------------------------------------- /test/editor_test/proj.android/.externalToolBuilders/org.eclipse.cdt.managedbuilder.core.genmakebuilder.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.android/.externalToolBuilders/org.eclipse.cdt.managedbuilder.core.genmakebuilder.launch -------------------------------------------------------------------------------- /test/editor_test/proj.android/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.android/.project -------------------------------------------------------------------------------- /test/editor_test/proj.android/.settings/org.eclipse.cdt.codan.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.android/.settings/org.eclipse.cdt.codan.core.prefs -------------------------------------------------------------------------------- /test/editor_test/proj.android/.settings/org.eclipse.cdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.android/.settings/org.eclipse.cdt.core.prefs -------------------------------------------------------------------------------- /test/editor_test/proj.android/.settings/org.eclipse.ltk.core.refactoring.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.android/.settings/org.eclipse.ltk.core.refactoring.prefs -------------------------------------------------------------------------------- /test/editor_test/proj.android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.android/AndroidManifest.xml -------------------------------------------------------------------------------- /test/editor_test/proj.android/ant.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.android/ant.properties -------------------------------------------------------------------------------- /test/editor_test/proj.android/build-cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.android/build-cfg.json -------------------------------------------------------------------------------- /test/editor_test/proj.android/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.android/build.xml -------------------------------------------------------------------------------- /test/editor_test/proj.android/build_native.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.android/build_native.py -------------------------------------------------------------------------------- /test/editor_test/proj.android/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.android/jni/Android.mk -------------------------------------------------------------------------------- /test/editor_test/proj.android/jni/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.android/jni/Application.mk -------------------------------------------------------------------------------- /test/editor_test/proj.android/jni/hellocpp/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.android/jni/hellocpp/main.cpp -------------------------------------------------------------------------------- /test/editor_test/proj.android/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.android/proguard-project.txt -------------------------------------------------------------------------------- /test/editor_test/proj.android/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.android/project.properties -------------------------------------------------------------------------------- /test/editor_test/proj.android/res/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.android/res/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /test/editor_test/proj.android/res/drawable-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.android/res/drawable-ldpi/icon.png -------------------------------------------------------------------------------- /test/editor_test/proj.android/res/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.android/res/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /test/editor_test/proj.android/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.android/res/values/strings.xml -------------------------------------------------------------------------------- /test/editor_test/proj.android/src/org/cocos2dx/cpp/AppActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.android/src/org/cocos2dx/cpp/AppActivity.java -------------------------------------------------------------------------------- /test/editor_test/proj.ios_mac/editor_test.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.ios_mac/editor_test.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /test/editor_test/proj.ios_mac/ios/AppController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.ios_mac/ios/AppController.h -------------------------------------------------------------------------------- /test/editor_test/proj.ios_mac/ios/AppController.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.ios_mac/ios/AppController.mm -------------------------------------------------------------------------------- /test/editor_test/proj.ios_mac/ios/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.ios_mac/ios/Default-568h@2x.png -------------------------------------------------------------------------------- /test/editor_test/proj.ios_mac/ios/Default-667h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.ios_mac/ios/Default-667h@2x.png -------------------------------------------------------------------------------- /test/editor_test/proj.ios_mac/ios/Default-736h@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.ios_mac/ios/Default-736h@3x.png -------------------------------------------------------------------------------- /test/editor_test/proj.ios_mac/ios/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.ios_mac/ios/Default.png -------------------------------------------------------------------------------- /test/editor_test/proj.ios_mac/ios/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.ios_mac/ios/Default@2x.png -------------------------------------------------------------------------------- /test/editor_test/proj.ios_mac/ios/Icon-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.ios_mac/ios/Icon-100.png -------------------------------------------------------------------------------- /test/editor_test/proj.ios_mac/ios/Icon-114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.ios_mac/ios/Icon-114.png -------------------------------------------------------------------------------- /test/editor_test/proj.ios_mac/ios/Icon-120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.ios_mac/ios/Icon-120.png -------------------------------------------------------------------------------- /test/editor_test/proj.ios_mac/ios/Icon-144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.ios_mac/ios/Icon-144.png -------------------------------------------------------------------------------- /test/editor_test/proj.ios_mac/ios/Icon-152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.ios_mac/ios/Icon-152.png -------------------------------------------------------------------------------- /test/editor_test/proj.ios_mac/ios/Icon-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.ios_mac/ios/Icon-29.png -------------------------------------------------------------------------------- /test/editor_test/proj.ios_mac/ios/Icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.ios_mac/ios/Icon-40.png -------------------------------------------------------------------------------- /test/editor_test/proj.ios_mac/ios/Icon-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.ios_mac/ios/Icon-50.png -------------------------------------------------------------------------------- /test/editor_test/proj.ios_mac/ios/Icon-57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.ios_mac/ios/Icon-57.png -------------------------------------------------------------------------------- /test/editor_test/proj.ios_mac/ios/Icon-58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.ios_mac/ios/Icon-58.png -------------------------------------------------------------------------------- /test/editor_test/proj.ios_mac/ios/Icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.ios_mac/ios/Icon-72.png -------------------------------------------------------------------------------- /test/editor_test/proj.ios_mac/ios/Icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.ios_mac/ios/Icon-76.png -------------------------------------------------------------------------------- /test/editor_test/proj.ios_mac/ios/Icon-80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.ios_mac/ios/Icon-80.png -------------------------------------------------------------------------------- /test/editor_test/proj.ios_mac/ios/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.ios_mac/ios/Info.plist -------------------------------------------------------------------------------- /test/editor_test/proj.ios_mac/ios/RootViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.ios_mac/ios/RootViewController.h -------------------------------------------------------------------------------- /test/editor_test/proj.ios_mac/ios/RootViewController.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.ios_mac/ios/RootViewController.mm -------------------------------------------------------------------------------- /test/editor_test/proj.ios_mac/ios/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.ios_mac/ios/main.m -------------------------------------------------------------------------------- /test/editor_test/proj.ios_mac/mac/Icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.ios_mac/mac/Icon.icns -------------------------------------------------------------------------------- /test/editor_test/proj.ios_mac/mac/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.ios_mac/mac/Info.plist -------------------------------------------------------------------------------- /test/editor_test/proj.ios_mac/mac/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.ios_mac/mac/main.cpp -------------------------------------------------------------------------------- /test/editor_test/proj.linux/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.linux/main.cpp -------------------------------------------------------------------------------- /test/editor_test/proj.qt/classes.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.qt/classes.pri -------------------------------------------------------------------------------- /test/editor_test/proj.qt/editor_simulator.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.qt/editor_simulator.pro -------------------------------------------------------------------------------- /test/editor_test/proj.win10/App/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.win10/App/App.xaml -------------------------------------------------------------------------------- /test/editor_test/proj.win10/App/App.xaml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.win10/App/App.xaml.cpp -------------------------------------------------------------------------------- /test/editor_test/proj.win10/App/App.xaml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.win10/App/App.xaml.h -------------------------------------------------------------------------------- /test/editor_test/proj.win10/App/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.win10/App/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /test/editor_test/proj.win10/App/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.win10/App/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /test/editor_test/proj.win10/App/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.win10/App/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /test/editor_test/proj.win10/App/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.win10/App/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /test/editor_test/proj.win10/App/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.win10/App/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /test/editor_test/proj.win10/App/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.win10/App/Assets/StoreLogo.png -------------------------------------------------------------------------------- /test/editor_test/proj.win10/App/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.win10/App/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /test/editor_test/proj.win10/App/Cocos2dEngine/Cocos2dRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.win10/App/Cocos2dEngine/Cocos2dRenderer.cpp -------------------------------------------------------------------------------- /test/editor_test/proj.win10/App/Cocos2dEngine/Cocos2dRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.win10/App/Cocos2dEngine/Cocos2dRenderer.h -------------------------------------------------------------------------------- /test/editor_test/proj.win10/App/Cocos2dEngine/OpenGLES.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.win10/App/Cocos2dEngine/OpenGLES.cpp -------------------------------------------------------------------------------- /test/editor_test/proj.win10/App/Cocos2dEngine/OpenGLES.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.win10/App/Cocos2dEngine/OpenGLES.h -------------------------------------------------------------------------------- /test/editor_test/proj.win10/App/Cocos2dEngine/OpenGLESPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.win10/App/Cocos2dEngine/OpenGLESPage.xaml -------------------------------------------------------------------------------- /test/editor_test/proj.win10/App/Cocos2dEngine/OpenGLESPage.xaml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.win10/App/Cocos2dEngine/OpenGLESPage.xaml.cpp -------------------------------------------------------------------------------- /test/editor_test/proj.win10/App/Cocos2dEngine/OpenGLESPage.xaml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.win10/App/Cocos2dEngine/OpenGLESPage.xaml.h -------------------------------------------------------------------------------- /test/editor_test/proj.win10/App/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.win10/App/Package.appxmanifest -------------------------------------------------------------------------------- /test/editor_test/proj.win10/App/editor_test_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.win10/App/editor_test_TemporaryKey.pfx -------------------------------------------------------------------------------- /test/editor_test/proj.win10/App/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /test/editor_test/proj.win10/App/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.win10/App/pch.h -------------------------------------------------------------------------------- /test/editor_test/proj.win10/App/resources.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.win10/App/resources.props -------------------------------------------------------------------------------- /test/editor_test/proj.win32/build-cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.win32/build-cfg.json -------------------------------------------------------------------------------- /test/editor_test/proj.win32/game.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.win32/game.rc -------------------------------------------------------------------------------- /test/editor_test/proj.win32/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.win32/main.cpp -------------------------------------------------------------------------------- /test/editor_test/proj.win32/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.win32/main.h -------------------------------------------------------------------------------- /test/editor_test/proj.win32/res/game.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.win32/res/game.ico -------------------------------------------------------------------------------- /test/editor_test/proj.win32/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.win32/resource.h -------------------------------------------------------------------------------- /test/editor_test/proj.win8.1-universal/App.Shared/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.win8.1-universal/App.Shared/App.xaml -------------------------------------------------------------------------------- /test/editor_test/proj.win8.1-universal/App.Shared/App.xaml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.win8.1-universal/App.Shared/App.xaml.cpp -------------------------------------------------------------------------------- /test/editor_test/proj.win8.1-universal/App.Shared/App.xaml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.win8.1-universal/App.Shared/App.xaml.h -------------------------------------------------------------------------------- /test/editor_test/proj.win8.1-universal/App.Shared/Cocos2dRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.win8.1-universal/App.Shared/Cocos2dRenderer.cpp -------------------------------------------------------------------------------- /test/editor_test/proj.win8.1-universal/App.Shared/Cocos2dRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.win8.1-universal/App.Shared/Cocos2dRenderer.h -------------------------------------------------------------------------------- /test/editor_test/proj.win8.1-universal/App.Shared/OpenGLES.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.win8.1-universal/App.Shared/OpenGLES.cpp -------------------------------------------------------------------------------- /test/editor_test/proj.win8.1-universal/App.Shared/OpenGLES.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.win8.1-universal/App.Shared/OpenGLES.h -------------------------------------------------------------------------------- /test/editor_test/proj.win8.1-universal/App.Shared/OpenGLESPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.win8.1-universal/App.Shared/OpenGLESPage.xaml -------------------------------------------------------------------------------- /test/editor_test/proj.win8.1-universal/App.Shared/OpenGLESPage.xaml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.win8.1-universal/App.Shared/OpenGLESPage.xaml.cpp -------------------------------------------------------------------------------- /test/editor_test/proj.win8.1-universal/App.Shared/OpenGLESPage.xaml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.win8.1-universal/App.Shared/OpenGLESPage.xaml.h -------------------------------------------------------------------------------- /test/editor_test/proj.win8.1-universal/App.Shared/editor_test.Shared.vcxitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.win8.1-universal/App.Shared/editor_test.Shared.vcxitems -------------------------------------------------------------------------------- /test/editor_test/proj.win8.1-universal/App.Shared/editor_test.Shared.vcxitems.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.win8.1-universal/App.Shared/editor_test.Shared.vcxitems.filters -------------------------------------------------------------------------------- /test/editor_test/proj.win8.1-universal/App.Shared/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /test/editor_test/proj.win8.1-universal/App.Shared/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.win8.1-universal/App.Shared/pch.h -------------------------------------------------------------------------------- /test/editor_test/proj.win8.1-universal/App.Windows/Assets/Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.win8.1-universal/App.Windows/Assets/Logo.scale-100.png -------------------------------------------------------------------------------- /test/editor_test/proj.win8.1-universal/App.Windows/Assets/SmallLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.win8.1-universal/App.Windows/Assets/SmallLogo.scale-100.png -------------------------------------------------------------------------------- /test/editor_test/proj.win8.1-universal/App.Windows/Assets/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.win8.1-universal/App.Windows/Assets/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /test/editor_test/proj.win8.1-universal/App.Windows/Assets/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.win8.1-universal/App.Windows/Assets/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /test/editor_test/proj.win8.1-universal/App.Windows/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.win8.1-universal/App.Windows/Package.appxmanifest -------------------------------------------------------------------------------- /test/editor_test/proj.win8.1-universal/App.Windows/editor_test.Windows_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.win8.1-universal/App.Windows/editor_test.Windows_TemporaryKey.pfx -------------------------------------------------------------------------------- /test/editor_test/proj.win8.1-universal/App.WindowsPhone/Assets/Logo.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.win8.1-universal/App.WindowsPhone/Assets/Logo.scale-240.png -------------------------------------------------------------------------------- /test/editor_test/proj.win8.1-universal/App.WindowsPhone/Assets/SmallLogo.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.win8.1-universal/App.WindowsPhone/Assets/SmallLogo.scale-240.png -------------------------------------------------------------------------------- /test/editor_test/proj.win8.1-universal/App.WindowsPhone/Assets/SplashScreen.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.win8.1-universal/App.WindowsPhone/Assets/SplashScreen.scale-240.png -------------------------------------------------------------------------------- /test/editor_test/proj.win8.1-universal/App.WindowsPhone/Assets/Square71x71Logo.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.win8.1-universal/App.WindowsPhone/Assets/Square71x71Logo.scale-240.png -------------------------------------------------------------------------------- /test/editor_test/proj.win8.1-universal/App.WindowsPhone/Assets/StoreLogo.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.win8.1-universal/App.WindowsPhone/Assets/StoreLogo.scale-240.png -------------------------------------------------------------------------------- /test/editor_test/proj.win8.1-universal/App.WindowsPhone/Assets/WideLogo.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.win8.1-universal/App.WindowsPhone/Assets/WideLogo.scale-240.png -------------------------------------------------------------------------------- /test/editor_test/proj.win8.1-universal/App.WindowsPhone/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/editor_test/proj.win8.1-universal/App.WindowsPhone/Package.appxmanifest -------------------------------------------------------------------------------- /test/myplugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/myplugin/README.md -------------------------------------------------------------------------------- /test/myplugin/myplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/myplugin/myplugin.cpp -------------------------------------------------------------------------------- /test/myplugin/myplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/myplugin/myplugin.h -------------------------------------------------------------------------------- /test/myplugin/myplugin.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/test/myplugin/myplugin.pro -------------------------------------------------------------------------------- /third_party/qtpropertysheet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/third_party/qtpropertysheet/README.md -------------------------------------------------------------------------------- /third_party/qtpropertysheet/doc/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/third_party/qtpropertysheet/doc/screenshot.png -------------------------------------------------------------------------------- /third_party/qtpropertysheet/qtpropertysheet.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/third_party/qtpropertysheet/qtpropertysheet.pro -------------------------------------------------------------------------------- /third_party/qtpropertysheet/simple/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/third_party/qtpropertysheet/simple/main.cpp -------------------------------------------------------------------------------- /third_party/qtpropertysheet/simple/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/third_party/qtpropertysheet/simple/mainwindow.cpp -------------------------------------------------------------------------------- /third_party/qtpropertysheet/simple/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/third_party/qtpropertysheet/simple/mainwindow.h -------------------------------------------------------------------------------- /third_party/qtpropertysheet/simple/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/third_party/qtpropertysheet/simple/mainwindow.ui -------------------------------------------------------------------------------- /third_party/qtpropertysheet/simple/simple.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/third_party/qtpropertysheet/simple/simple.pri -------------------------------------------------------------------------------- /third_party/qtpropertysheet/simple/simple.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/third_party/qtpropertysheet/simple/simple.pro -------------------------------------------------------------------------------- /third_party/qtpropertysheet/src/qtattributename.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/third_party/qtpropertysheet/src/qtattributename.cpp -------------------------------------------------------------------------------- /third_party/qtpropertysheet/src/qtattributename.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/third_party/qtpropertysheet/src/qtattributename.h -------------------------------------------------------------------------------- /third_party/qtpropertysheet/src/qtbuttonpropertybrowser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/third_party/qtpropertysheet/src/qtbuttonpropertybrowser.cpp -------------------------------------------------------------------------------- /third_party/qtpropertysheet/src/qtbuttonpropertybrowser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/third_party/qtpropertysheet/src/qtbuttonpropertybrowser.h -------------------------------------------------------------------------------- /third_party/qtpropertysheet/src/qtbuttonpropertyitem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/third_party/qtpropertysheet/src/qtbuttonpropertyitem.cpp -------------------------------------------------------------------------------- /third_party/qtpropertysheet/src/qtbuttonpropertyitem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/third_party/qtpropertysheet/src/qtbuttonpropertyitem.h -------------------------------------------------------------------------------- /third_party/qtpropertysheet/src/qtproperty.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/third_party/qtpropertysheet/src/qtproperty.cpp -------------------------------------------------------------------------------- /third_party/qtpropertysheet/src/qtproperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/third_party/qtpropertysheet/src/qtproperty.h -------------------------------------------------------------------------------- /third_party/qtpropertysheet/src/qtpropertybrowser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/third_party/qtpropertysheet/src/qtpropertybrowser.cpp -------------------------------------------------------------------------------- /third_party/qtpropertysheet/src/qtpropertybrowser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/third_party/qtpropertysheet/src/qtpropertybrowser.h -------------------------------------------------------------------------------- /third_party/qtpropertysheet/src/qtpropertybrowserutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/third_party/qtpropertysheet/src/qtpropertybrowserutils.cpp -------------------------------------------------------------------------------- /third_party/qtpropertysheet/src/qtpropertybrowserutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/third_party/qtpropertysheet/src/qtpropertybrowserutils.h -------------------------------------------------------------------------------- /third_party/qtpropertysheet/src/qtpropertyconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/third_party/qtpropertysheet/src/qtpropertyconfig.h -------------------------------------------------------------------------------- /third_party/qtpropertysheet/src/qtpropertyeditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/third_party/qtpropertysheet/src/qtpropertyeditor.cpp -------------------------------------------------------------------------------- /third_party/qtpropertysheet/src/qtpropertyeditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/third_party/qtpropertysheet/src/qtpropertyeditor.h -------------------------------------------------------------------------------- /third_party/qtpropertysheet/src/qtpropertyeditorfactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/third_party/qtpropertysheet/src/qtpropertyeditorfactory.cpp -------------------------------------------------------------------------------- /third_party/qtpropertysheet/src/qtpropertyeditorfactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/third_party/qtpropertysheet/src/qtpropertyeditorfactory.h -------------------------------------------------------------------------------- /third_party/qtpropertysheet/src/qtpropertyfactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/third_party/qtpropertysheet/src/qtpropertyfactory.cpp -------------------------------------------------------------------------------- /third_party/qtpropertysheet/src/qtpropertyfactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/third_party/qtpropertysheet/src/qtpropertyfactory.h -------------------------------------------------------------------------------- /third_party/qtpropertysheet/src/qtpropertysheet.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/third_party/qtpropertysheet/src/qtpropertysheet.pri -------------------------------------------------------------------------------- /third_party/qtpropertysheet/src/qtpropertytreedelegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/third_party/qtpropertysheet/src/qtpropertytreedelegate.cpp -------------------------------------------------------------------------------- /third_party/qtpropertysheet/src/qtpropertytreedelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/third_party/qtpropertysheet/src/qtpropertytreedelegate.h -------------------------------------------------------------------------------- /third_party/qtpropertysheet/src/qtpropertytreeview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/third_party/qtpropertysheet/src/qtpropertytreeview.cpp -------------------------------------------------------------------------------- /third_party/qtpropertysheet/src/qtpropertytreeview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/third_party/qtpropertysheet/src/qtpropertytreeview.h -------------------------------------------------------------------------------- /third_party/qtpropertysheet/src/qtpropertytype.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/third_party/qtpropertysheet/src/qtpropertytype.cpp -------------------------------------------------------------------------------- /third_party/qtpropertysheet/src/qtpropertytype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/third_party/qtpropertysheet/src/qtpropertytype.h -------------------------------------------------------------------------------- /third_party/qtpropertysheet/src/qttreepropertybrowser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/third_party/qtpropertysheet/src/qttreepropertybrowser.cpp -------------------------------------------------------------------------------- /third_party/qtpropertysheet/src/qttreepropertybrowser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/third_party/qtpropertysheet/src/qttreepropertybrowser.h -------------------------------------------------------------------------------- /third_party/qtpropertysheet/src/qxtcheckcombobox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/third_party/qtpropertysheet/src/qxtcheckcombobox.cpp -------------------------------------------------------------------------------- /third_party/qtpropertysheet/src/qxtcheckcombobox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/third_party/qtpropertysheet/src/qxtcheckcombobox.h -------------------------------------------------------------------------------- /third_party/qtpropertysheet/src/qxtcheckcombobox_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/third_party/qtpropertysheet/src/qxtcheckcombobox_p.h -------------------------------------------------------------------------------- /third_party/qtpropertysheet/src/qxtglobal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/third_party/qtpropertysheet/src/qxtglobal.cpp -------------------------------------------------------------------------------- /third_party/qtpropertysheet/src/qxtglobal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/third_party/qtpropertysheet/src/qxtglobal.h -------------------------------------------------------------------------------- /third_party/qtpropertysheet/src/src.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/third_party/qtpropertysheet/src/src.pro -------------------------------------------------------------------------------- /third_party/smartjson.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/third_party/smartjson.pri -------------------------------------------------------------------------------- /third_party/smartjson/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/third_party/smartjson/.gitignore -------------------------------------------------------------------------------- /third_party/smartjson/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/third_party/smartjson/README.md -------------------------------------------------------------------------------- /third_party/smartjson/build/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | /Build/ 3 | -------------------------------------------------------------------------------- /third_party/smartjson/build/smartjson.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/third_party/smartjson/build/smartjson.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /third_party/smartjson/build/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/third_party/smartjson/build/test.py -------------------------------------------------------------------------------- /third_party/smartjson/src/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/third_party/smartjson/src/config.hpp -------------------------------------------------------------------------------- /third_party/smartjson/src/container/allocator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/third_party/smartjson/src/container/allocator.cpp -------------------------------------------------------------------------------- /third_party/smartjson/src/container/allocator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/third_party/smartjson/src/container/allocator.hpp -------------------------------------------------------------------------------- /third_party/smartjson/src/container/array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/third_party/smartjson/src/container/array.cpp -------------------------------------------------------------------------------- /third_party/smartjson/src/container/array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/third_party/smartjson/src/container/array.hpp -------------------------------------------------------------------------------- /third_party/smartjson/src/container/array.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/third_party/smartjson/src/container/array.ipp -------------------------------------------------------------------------------- /third_party/smartjson/src/container/dict.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/third_party/smartjson/src/container/dict.cpp -------------------------------------------------------------------------------- /third_party/smartjson/src/container/dict.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/third_party/smartjson/src/container/dict.hpp -------------------------------------------------------------------------------- /third_party/smartjson/src/container/dict.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/third_party/smartjson/src/container/dict.ipp -------------------------------------------------------------------------------- /third_party/smartjson/src/container/iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/third_party/smartjson/src/container/iterator.h -------------------------------------------------------------------------------- /third_party/smartjson/src/container/object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/third_party/smartjson/src/container/object.cpp -------------------------------------------------------------------------------- /third_party/smartjson/src/container/object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/third_party/smartjson/src/container/object.hpp -------------------------------------------------------------------------------- /third_party/smartjson/src/container/reference.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/third_party/smartjson/src/container/reference.cpp -------------------------------------------------------------------------------- /third_party/smartjson/src/container/reference.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/third_party/smartjson/src/container/reference.hpp -------------------------------------------------------------------------------- /third_party/smartjson/src/container/reference.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/third_party/smartjson/src/container/reference.ipp -------------------------------------------------------------------------------- /third_party/smartjson/src/container/string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/third_party/smartjson/src/container/string.cpp -------------------------------------------------------------------------------- /third_party/smartjson/src/container/string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/third_party/smartjson/src/container/string.hpp -------------------------------------------------------------------------------- /third_party/smartjson/src/container/string.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/third_party/smartjson/src/container/string.ipp -------------------------------------------------------------------------------- /third_party/smartjson/src/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/third_party/smartjson/src/json.hpp -------------------------------------------------------------------------------- /third_party/smartjson/src/node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/third_party/smartjson/src/node.cpp -------------------------------------------------------------------------------- /third_party/smartjson/src/node.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/third_party/smartjson/src/node.hpp -------------------------------------------------------------------------------- /third_party/smartjson/src/node.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/third_party/smartjson/src/node.ipp -------------------------------------------------------------------------------- /third_party/smartjson/src/parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/third_party/smartjson/src/parser.cpp -------------------------------------------------------------------------------- /third_party/smartjson/src/parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/third_party/smartjson/src/parser.hpp -------------------------------------------------------------------------------- /third_party/smartjson/src/types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/third_party/smartjson/src/types.hpp -------------------------------------------------------------------------------- /third_party/smartjson/src/writer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/third_party/smartjson/src/writer.cpp -------------------------------------------------------------------------------- /third_party/smartjson/src/writer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/third_party/smartjson/src/writer.hpp -------------------------------------------------------------------------------- /third_party/smartjson/test/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/third_party/smartjson/test/main.cpp -------------------------------------------------------------------------------- /third_party/smartjson/test/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/third_party/smartjson/test/test.cpp -------------------------------------------------------------------------------- /third_party/third_party.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/third_party/third_party.pri -------------------------------------------------------------------------------- /tools/collect_lines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/tools/collect_lines.py -------------------------------------------------------------------------------- /tools/gen_pri.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/tools/gen_pri.py -------------------------------------------------------------------------------- /tools/make_package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/tools/make_package.py -------------------------------------------------------------------------------- /tools/renamefiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/tools/renamefiles.py -------------------------------------------------------------------------------- /tools/resolvelib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/tools/resolvelib.py -------------------------------------------------------------------------------- /tools/toutf8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/tools/toutf8.py -------------------------------------------------------------------------------- /ui/appicon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/ui/appicon.icns -------------------------------------------------------------------------------- /ui/appicon.iconset/icon_128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/ui/appicon.iconset/icon_128x128.png -------------------------------------------------------------------------------- /ui/appicon.iconset/icon_128x128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/ui/appicon.iconset/icon_128x128@2x.png -------------------------------------------------------------------------------- /ui/appicon.iconset/icon_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/ui/appicon.iconset/icon_16x16.png -------------------------------------------------------------------------------- /ui/appicon.iconset/icon_16x16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/ui/appicon.iconset/icon_16x16@2x.png -------------------------------------------------------------------------------- /ui/appicon.iconset/icon_256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/ui/appicon.iconset/icon_256x256.png -------------------------------------------------------------------------------- /ui/appicon.iconset/icon_256x256@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/ui/appicon.iconset/icon_256x256@2x.png -------------------------------------------------------------------------------- /ui/appicon.iconset/icon_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/ui/appicon.iconset/icon_32x32.png -------------------------------------------------------------------------------- /ui/appicon.iconset/icon_32x32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/ui/appicon.iconset/icon_32x32@2x.png -------------------------------------------------------------------------------- /ui/appicon.iconset/icon_512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/ui/appicon.iconset/icon_512x512.png -------------------------------------------------------------------------------- /ui/appicon.iconset/icon_512x512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/ui/appicon.iconset/icon_512x512@2x.png -------------------------------------------------------------------------------- /ui/editorsetting.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/ui/editorsetting.ui -------------------------------------------------------------------------------- /ui/icon/alignbottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/ui/icon/alignbottom.png -------------------------------------------------------------------------------- /ui/icon/alignhcenter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/ui/icon/alignhcenter.png -------------------------------------------------------------------------------- /ui/icon/alignleft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/ui/icon/alignleft.png -------------------------------------------------------------------------------- /ui/icon/alignright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/ui/icon/alignright.png -------------------------------------------------------------------------------- /ui/icon/aligntop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/ui/icon/aligntop.png -------------------------------------------------------------------------------- /ui/icon/alignvcenter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/ui/icon/alignvcenter.png -------------------------------------------------------------------------------- /ui/icon/am.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/ui/icon/am.png -------------------------------------------------------------------------------- /ui/icon/checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/ui/icon/checkbox.png -------------------------------------------------------------------------------- /ui/icon/down_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/ui/icon/down_arrow.png -------------------------------------------------------------------------------- /ui/icon/hand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/ui/icon/hand.png -------------------------------------------------------------------------------- /ui/icon/handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/ui/icon/handle.png -------------------------------------------------------------------------------- /ui/icon/icon.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/ui/icon/icon.qrc -------------------------------------------------------------------------------- /ui/icon/layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/ui/icon/layout.png -------------------------------------------------------------------------------- /ui/icon/move.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/ui/icon/move.png -------------------------------------------------------------------------------- /ui/icon/p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/ui/icon/p.png -------------------------------------------------------------------------------- /ui/icon/png.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/ui/icon/png.png -------------------------------------------------------------------------------- /ui/icon/rotate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/ui/icon/rotate.png -------------------------------------------------------------------------------- /ui/icon/run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/ui/icon/run.png -------------------------------------------------------------------------------- /ui/icon/sameheight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/ui/icon/sameheight.png -------------------------------------------------------------------------------- /ui/icon/samehgap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/ui/icon/samehgap.png -------------------------------------------------------------------------------- /ui/icon/samesize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/ui/icon/samesize.png -------------------------------------------------------------------------------- /ui/icon/samevgap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/ui/icon/samevgap.png -------------------------------------------------------------------------------- /ui/icon/samewidth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/ui/icon/samewidth.png -------------------------------------------------------------------------------- /ui/icon/scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/ui/icon/scale.png -------------------------------------------------------------------------------- /ui/icon/windows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/ui/icon/windows.png -------------------------------------------------------------------------------- /ui/launchwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/ui/launchwindow.ui -------------------------------------------------------------------------------- /ui/loadingdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/ui/loadingdialog.ui -------------------------------------------------------------------------------- /ui/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/ui/mainwindow.ui -------------------------------------------------------------------------------- /ui/newfiledialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/ui/newfiledialog.ui -------------------------------------------------------------------------------- /ui/newprojectdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youlanhai/qco-editor/HEAD/ui/newprojectdialog.ui --------------------------------------------------------------------------------