├── .gitattributes ├── .gitignore ├── DynamicList ├── DynamicList.pro ├── DynamicList.pro.user ├── deployment.pri ├── dynamicModel.cpp ├── dynamicModel.h ├── main.cpp ├── main.qml ├── main_bak.qml ├── qml.qrc └── screenshots │ ├── pc_flickdown.png │ ├── pc_flickup.png │ └── pc_init.png ├── FileViewer ├── FileViewer.pro ├── FileViewer.pro.user ├── deployment.pri ├── main.cpp ├── main.qml ├── qml.qrc ├── res │ ├── applicationWindow.png │ ├── applicationWindow.tsp │ ├── audioFile.png │ ├── backgroundColor.tsp │ ├── eye.png │ ├── eye.tsp │ ├── folder.png │ ├── fontSize.tsp │ ├── ic_bkgndcolor.png │ ├── ic_fontsize.png │ ├── ic_fontsize1.png │ ├── ic_fontsize2.png │ ├── ic_textcolor.png │ ├── imageFile.png │ ├── textColor.tsp │ ├── txtFile.png │ └── videoFile.png └── screenshots │ ├── application_win.png │ ├── pc_run_init.png │ ├── pc_run_init_menu.png │ ├── pc_run_init_widgets.png │ ├── pc_run_init_widgets_menu.png │ ├── pc_run_widgets_audio.png │ ├── pc_run_widgets_img.png │ ├── pc_run_widgets_txt.png │ ├── pc_run_widgets_video.png │ ├── qtquick_colordlg.PNG │ └── win7colordlg.PNG ├── HelloQtQuickApp ├── HelloQtQuickApp.pro ├── HelloQtQuickApp.pro.user ├── android │ └── AndroidManifest.xml ├── deployment.pri ├── main.cpp ├── main.qml └── qml.qrc ├── ImageViewer ├── FlatButton.qml ├── ImageDigger.qml ├── ImageViewer.pro ├── ImageViewer.pro.user ├── LocalViewer.qml ├── android │ └── AndroidManifest.xml ├── deployment.pri ├── directoryTraverse.cpp ├── directoryTraverse.h ├── icons │ ├── ic_archive.png │ ├── ic_back.png │ ├── ic_backward.png │ ├── ic_close_clear_cancel.png │ ├── ic_find.png │ ├── ic_forward.png │ ├── ic_info_details.png │ ├── ic_rotate_left.png │ ├── ic_rotate_right.png │ ├── ic_search.png │ ├── ic_zoomin.png │ ├── ic_zoomout.png │ └── zoomin.tsp ├── imageviewer_zh_CN.qm ├── imageviewer_zh_CN.ts ├── main.cpp ├── main.qml ├── networkImageModel.cpp ├── networkImageModel.h ├── networkImageModel_p.h ├── qml.qrc ├── readme.txt └── screenshots │ ├── home.png │ ├── image_show.PNG │ ├── pc_localviewer.PNG │ ├── pc_searchImage_2.PNG │ ├── pc_startup.PNG │ ├── searchImage.PNG │ ├── 豌豆荚截图20140825214147.png │ ├── 豌豆荚截图20140825214310.png │ ├── 豌豆荚截图20140825214403.png │ ├── 豌豆荚截图20140825214451.png │ └── 豌豆荚截图20141025015446.png ├── MadMath ├── ImageButton.qml ├── MadMath.pro ├── MadMath.pro.user ├── android │ ├── AndroidManifest.xml │ └── res │ │ ├── drawable-hdpi │ │ └── icon.png │ │ ├── drawable-ldpi │ │ └── icon.png │ │ ├── drawable-mdpi │ │ └── icon.png │ │ └── values-zh-rCN │ │ └── strings.xml ├── deployment.pri ├── madmath_zh_cn.qm ├── madmath_zh_cn.ts ├── main.cpp ├── main.qml ├── problem.cpp ├── problem.h ├── qml.qrc ├── res │ ├── madmath_36.png │ ├── madmath_48.png │ ├── madmath_72.png │ ├── right_normal.png │ ├── right_selected.png │ ├── wrong_normal.png │ └── wrong_selected.png ├── sizeUtil.cpp ├── sizeUtil.h ├── 豌豆荚截图20150109134838.png ├── 豌豆荚截图20150109134859.png └── 豌豆荚截图20150109135053.png ├── MultiTouchDemo ├── MultiTouchDemo.pro ├── MultiTouchDemo.pro.user ├── android │ └── AndroidManifest.xml ├── deployment.pri ├── ic_android.png ├── ic_android_usb.png ├── ic_qt.png ├── main.cpp ├── main.qml ├── qml.qrc ├── 豌豆荚截图20140826090046.png ├── 豌豆荚截图20140826090205.png ├── 豌豆荚截图20140826090324.png ├── 豌豆荚截图20140826090406.png └── 豌豆荚截图20140826090434.png ├── NearService ├── NearService.pro ├── NearService.pro.user ├── android │ └── AndroidManifest.xml ├── deployment.pri ├── main.cpp ├── main.qml ├── qml.qrc ├── 豌豆荚截图20140830111932.png ├── 豌豆荚截图20140830111952.png ├── 豌豆荚截图20140830112026.png ├── 豌豆荚截图20140831173816.png ├── 豌豆荚截图20140831174117.png ├── 豌豆荚截图20140831174411.png ├── 豌豆荚截图20140831174449.png └── 豌豆荚截图20140831174654.png ├── PaintedItem ├── ColorPicker.qml ├── PaintedItem.cpp ├── PaintedItem.h ├── PaintedItem.pro ├── PaintedItem.pro.user ├── deployment.pri ├── main.cpp ├── main.qml ├── qml.qrc └── screenshot.PNG ├── PickThumb ├── PickThumb.pro ├── PickThumb.pro.user ├── android │ └── AndroidManifest.xml ├── android_0.png ├── android_1.png ├── deployment.pri ├── main.cpp ├── main.qml ├── pc_run.PNG ├── project.PNG └── qml.qrc ├── SomeVideo ├── SomeVideo.pro ├── SomeVideo.pro.user ├── android │ └── AndroidManifest.xml ├── deployment.pri ├── main.cpp ├── main.qml ├── patharc_canvas.qml ├── probe.cpp ├── probe.h ├── probe_p.cpp ├── probe_p.h ├── qml.qrc ├── qt.conf ├── res │ ├── ic_media_pause.png │ ├── ic_media_play.png │ ├── ic_media_play_focus.png │ ├── ic_media_stop.png │ └── ic_search.png ├── videoListModel.cpp ├── videoListModel.h └── videos.xml ├── TopVideo └── res │ ├── ic_media_ff.png │ ├── ic_media_next.png │ ├── ic_media_pause.png │ ├── ic_media_play.png │ ├── ic_media_previous.png │ ├── ic_media_rew.png │ ├── ic_media_stop.png │ ├── ic_menu_delete.png │ ├── ic_menu_home.png │ ├── ic_menu_info_details.png │ ├── ic_menu_recent_history.png │ ├── ic_menu_refresh.png │ ├── ic_menu_star.png │ ├── ic_search.png │ └── ic_voice_search.png ├── android_screen ├── fullscreen.png ├── fullscreen_2.png ├── no_fullscreen.png ├── no_fullscreen_2.png ├── project.png └── 豌豆荚截图20140729113946.png ├── animatedSprite ├── animatedSprite.pro ├── animatedSprite.pro.user ├── deployment.pri ├── main.cpp ├── main.qml ├── numbers.png ├── qml.qrc └── screenshot.PNG ├── bubbles ├── bubble_1.png ├── bubbles.PNG ├── bubbles.pro ├── bubbles.pro.user ├── deployment.pri ├── main.cpp ├── main.qml └── qml.qrc ├── callQml ├── callQml.pro ├── callQml.pro.user ├── callQml64.png ├── callQml80.png ├── changeColor.cpp ├── changeColor.h ├── main.cpp ├── main.qml ├── qml.qrc └── ui.PNG ├── colorMaker ├── colorMaker.cpp ├── colorMaker.h ├── colorMaker.pro ├── colorMaker.pro.user ├── colorMaker64.png ├── colorMaker80.png ├── main.cpp ├── main.qml ├── main_bak.qml ├── qml.qrc └── ui.PNG ├── depoly ├── windeploy_init.PNG ├── windepoly_cmdrun.PNG └── windepoy_project.PNG ├── dev_env ├── HelloQtQuickApp │ ├── android_manifest_edit - 副本.PNG │ ├── android_manifest_edit.PNG │ ├── android_setting - 副本.PNG │ ├── android_setting.PNG │ ├── create_manifest_wizard.PNG │ ├── hello_location.PNG │ ├── kit_select.PNG │ ├── project_edit.PNG │ ├── project_manager.PNG │ ├── project_view_manifest - 副本.png │ ├── project_view_manifest.png │ ├── select_component.PNG │ ├── select_component_2.PNG │ ├── select_device.png │ └── type_import.PNG ├── android_setting.PNG ├── assistan_find.PNG ├── assistant_bookmark.PNG ├── assistant_directory.PNG ├── assistant_index - 副本.PNG ├── assistant_index.PNG ├── assistant_mode_select.png ├── debug - 副本.PNG ├── debug.PNG ├── getstarted.PNG ├── project_edit.PNG ├── project_setting_android_build.PNG ├── project_setting_pc_build - 副本.PNG ├── project_setting_pc_build.PNG ├── project_setting_pc_run - 副本.PNG ├── project_setting_pc_run.PNG ├── qt5.3.1_cmd_env.PNG ├── qt5.3.1_cmd_qmlscene_help.PNG ├── qt5.3.1_cmdline.png ├── qt_creator_welcome.PNG ├── qtcreator_welcome - 副本.PNG ├── qtcreator_welcome.PNG ├── qtquick_designer.png ├── setup_complete.PNG ├── setup_component.png ├── setup_license.png ├── setup_location.png ├── setup_location_2.png ├── setup_progress.png ├── setup_progress_2.png ├── setup_ready_go.png ├── setup_startmenu.png ├── setup_welcome.png ├── teacher.PNG ├── tutorial.PNG └── welcome.tsp ├── games ├── bubbleshot │ ├── 14.png │ ├── bubbleshot.qml │ ├── dao_1.png │ ├── dynamic_images.qml │ ├── launcher.png │ ├── res │ │ ├── bubble_1.png │ │ ├── bubble_2.png │ │ ├── bubble_3.png │ │ ├── bubble_4.png │ │ ├── bubble_5.png │ │ ├── bubble_6.png │ │ ├── bubble_7.png │ │ ├── bubble_8.png │ │ ├── failed.png │ │ ├── frozen_1.png │ │ ├── frozen_2.png │ │ ├── frozen_3.png │ │ ├── frozen_4.png │ │ ├── frozen_5.png │ │ ├── frozen_6.png │ │ ├── frozen_7.png │ │ ├── frozen_8.png │ │ ├── gun_bak.png │ │ ├── knife.png │ │ ├── passed.png │ │ ├── turret.png │ │ └── x.png │ ├── screenshots │ │ ├── failed.PNG │ │ ├── finished.PNG │ │ ├── shotting.png │ │ ├── start.PNG │ │ └── unshot.png │ └── 直线的倾斜角和斜率知识点例题.doc ├── drawable │ ├── background.png │ ├── bbb.png │ ├── bubble_1.png │ ├── bubble_2.png │ ├── bubble_3.png │ ├── bubble_4.png │ ├── bubble_5.png │ ├── bubble_6.png │ ├── bubble_7.png │ ├── bubble_8.png │ ├── bubble_blink.png │ ├── bubble_colourblind_1.gif │ ├── bubble_colourblind_2.gif │ ├── bubble_colourblind_3.gif │ ├── bubble_colourblind_4.gif │ ├── bubble_colourblind_5.gif │ ├── bubble_colourblind_6.gif │ ├── bubble_colourblind_7.gif │ ├── bubble_colourblind_8.gif │ ├── bubble_font.png │ ├── cim_aim_small.png │ ├── close_eyes.gif │ ├── compressor.png │ ├── compressor_body.png │ ├── fixed_1.png │ ├── fixed_2.png │ ├── fixed_3.png │ ├── fixed_4.png │ ├── fixed_5.png │ ├── fixed_6.png │ ├── frozen_1.png │ ├── frozen_2.png │ ├── frozen_3.png │ ├── frozen_4.png │ ├── frozen_5.png │ ├── frozen_6.png │ ├── frozen_7.png │ ├── frozen_8.png │ ├── hurry.png │ ├── icon.png │ ├── launcher.png │ ├── life.gif │ ├── lose_panel.png │ ├── penguins.png │ ├── splash.png │ ├── void_panel.png │ └── win_panel.png └── raw │ ├── applause.ogg │ ├── destroy_group.ogg │ ├── hurry.ogg │ ├── launch.ogg │ ├── lose.ogg │ ├── newroot_solo.ogg │ ├── noh.ogg │ ├── rebound.ogg │ └── stick.ogg ├── imageProcessor ├── android │ └── AndroidManifest.xml ├── gray.PNG ├── imageProcessor.cpp ├── imageProcessor.h ├── imageProcessor.pro ├── imageProcessor.pro.user ├── imageProcessor64.png ├── imageProcessor80.png ├── init.PNG ├── main.cpp ├── main.qml ├── negative.PNG ├── qml.qrc ├── screenshots │ ├── dipian.PNG │ ├── fudiao.PNG │ ├── heibai.PNG │ ├── huidu.PNG │ ├── init.PNG │ ├── rouhua.PNG │ └── ruihua.PNG └── sharpen.PNG ├── pinchArea ├── android │ └── AndroidManifest.xml ├── android_0.png ├── android_1.png ├── android_2.png ├── main.cpp ├── main.qml ├── pinchArea.pro ├── pinchArea.pro.user ├── pinchArea64.png ├── pinchArea80.png └── qml.qrc ├── qmls ├── ColorPicker.qml ├── anchors │ ├── anchors_0.PNG │ ├── anchors_0.qml │ ├── anchors_1.PNG │ └── anchors_1.qml ├── animations │ ├── behavior_animation.qml │ ├── behavior_animation2.qml │ ├── changescript_1.PNG │ ├── changescript_2.PNG │ ├── changescript_rect.qml │ ├── colorMaker.js │ ├── link_text.qml │ ├── parallelanimation.qml │ ├── parent_animation.qml │ ├── pathanimation.qml │ ├── pathanimation_0.PNG │ ├── pathanimation_1.png │ ├── pathanimation_1.qml │ ├── pathanimation_2.PNG │ ├── propertyanimation_onproperty.qml │ ├── propertyanimation_signalhandler.qml │ ├── propertyanimation_standalone.qml │ ├── propertyanimation_swap.qml │ ├── reanchor_rect.qml │ ├── reanchor_rect_0.PNG │ ├── reanchor_rect_1.PNG │ ├── reanchor_rect_animation.qml │ ├── red_to_green.qml │ ├── reparent_rect.qml │ ├── reparent_rect_0.PNG │ ├── reparent_rect_1.PNG │ ├── reparent_rect_animation.qml │ ├── rotation.qml │ ├── rotation_1.PNG │ ├── rotation_2.PNG │ ├── sequentialanimation.qml │ ├── smoothed_animation.qml │ ├── spring_animation.qml │ ├── square_to_circle.qml │ ├── square_to_circle_0.PNG │ ├── square_to_circle_1.PNG │ ├── square_to_circle_2.PNG │ ├── state_rect.qml │ ├── state_rect_explicit_false.PNG │ ├── state_rect_explict_true.PNG │ ├── state_rect_init.PNG │ ├── state_rect_pressed.PNG │ ├── state_text.png │ ├── state_text.qml │ ├── state_text_1.png │ ├── transition_rect.qml │ ├── transition_rect2.qml │ ├── transition_rect3.qml │ └── transition_rect4.qml ├── application_window.qml ├── array_modify.PNG ├── array_sub.PNG ├── blue_text_wrap.png ├── blue_text_wrap.qml ├── button_help.PNG ├── button_help_dir.PNG ├── button_help_signals.PNG ├── button_quit.PNG ├── button_quit.qml ├── button_style.png ├── button_style.qml ├── button_style_component.qml ├── c++_types.PNG ├── canvas │ ├── canvas_clip.PNG │ ├── canvas_clip.qml │ ├── canvas_composition.qml │ ├── canvas_path.qml │ ├── canvas_transform.PNG │ ├── canvas_transform.qml │ ├── dartlike_weapon.png │ ├── draw_complex_path.PNG │ ├── draw_complex_path.qml │ ├── draw_concentric_circles.png │ ├── draw_concentric_circles.qml │ ├── draw_image_data.png │ ├── draw_image_data.qml │ ├── draw_image_item.qml │ ├── draw_local_image.png │ ├── draw_local_image.qml │ ├── draw_multi_images.png │ ├── draw_multi_images.qml │ ├── draw_rect.png │ ├── draw_rect.qml │ ├── draw_rect_gradient.png │ ├── draw_rect_gradient.qml │ ├── draw_text.png │ ├── draw_text.qml │ ├── draw_triangle.png │ ├── draw_triangle.qml │ └── knife.png ├── comic_role.png ├── component_file.PNG ├── component_file.qml ├── connections.PNG ├── connections.qml ├── controls │ ├── call1.png │ ├── call2.png │ ├── call3.png │ ├── checkbox.qml │ ├── combobox_demo.png │ ├── combobox_demo.qml │ ├── combobox_demo2.png │ ├── preferred_mobile_os.png │ ├── preferred_mobile_os.qml │ ├── preferred_movies.png │ ├── preferred_movies.qml │ ├── preferred_movies_groupbox.png │ ├── preferred_movies_groupbox.qml │ ├── progressbar_demo.png │ ├── progressbar_demo.qml │ ├── slider.png │ ├── slider.tsp │ ├── slider_demo.png │ ├── slider_demo.qml │ ├── tabview_simple.png │ ├── tabview_simple.qml │ ├── tabview_style.png │ ├── tabview_style.qml │ ├── taskmanager.png │ └── textinput.qml ├── countdown.qml ├── countdown_0.PNG ├── countdown_1.PNG ├── countdown_2.PNG ├── cplusplus_types.png ├── cplusplus_types.qml ├── delete_dynamic_object.PNG ├── delete_dynamic_object.qml ├── delete_dynamic_object2.qml ├── draw_rect.qml ├── dynamic_component.qml ├── dynamic_loader.PNG ├── dynamic_loader_2.PNG ├── embedded_comp.qml ├── handle_key.qml ├── handle_key_0.PNG ├── handle_key_1.PNG ├── handle_mouse.qml ├── handle_mouse_0.PNG ├── handle_mouse_1.PNG ├── handle_multipoint.qml ├── hello_world.PNG ├── hello_world.qml ├── id_check.qml ├── json.qml ├── key_action.png ├── key_action.qml ├── layouts │ ├── ColorPicker.qml │ ├── anchors_layout.PNG │ ├── anchors_layout.qml │ ├── column.PNG │ ├── column.qml │ ├── column_layout.PNG │ ├── column_layout.qml │ ├── dpi.qml │ ├── flow.PNG │ ├── flow.qml │ ├── flow_layout_2.PNG │ ├── grid.PNG │ ├── grid.qml │ ├── grid_2.PNG │ ├── grid_layout.PNG │ ├── grid_layout.qml │ ├── nested_positioner.PNG │ ├── nested_positioner.qml │ ├── nested_positioner_2.PNG │ ├── row.PNG │ ├── row.qml │ ├── row_layout.PNG │ └── row_layout.qml ├── list_type.png ├── loader_component_file.qml ├── loader_focus.PNG ├── loader_focus.qml ├── loader_size.PNG ├── loader_test.qml ├── model-view │ ├── CPlusPlusListModel │ │ ├── CPlusPlusListModel.pro │ │ ├── CPlusPlusListModel.pro.user │ │ ├── CPlusPlusListModel64.png │ │ ├── CPlusPlusListModel80.png │ │ ├── cmodel.qrc │ │ ├── deployment.pri │ │ ├── main.cpp │ │ ├── main.qml │ │ ├── main_234.cpp │ │ ├── qml.qrc │ │ ├── res │ │ │ ├── main.qml │ │ │ └── videos.xml │ │ ├── screenshots │ │ │ ├── final_project.PNG │ │ │ ├── new_project.PNG │ │ │ ├── project.PNG │ │ │ └── run.PNG │ │ ├── videoListModel.cpp │ │ ├── videoListModel.h │ │ └── videos.xml │ ├── pathCubic_canvas.png │ ├── pathCubic_canvas.qml │ ├── pathCurve_canvas.png │ ├── pathCurve_canvas.qml │ ├── pathQuad_canvas.png │ ├── pathQuad_canvas.qml │ ├── patharc.PNG │ ├── pathview_simple.png │ ├── pathview_simple.qml │ ├── pathview_simple_percent.png │ ├── pathview_simple_percent2.png │ ├── phone_list_animation.qml │ ├── phone_list_change.qml │ ├── phone_list_change_1.PNG │ ├── phone_list_change_2.PNG │ ├── phone_list_footer.PNG │ ├── phone_list_footer.qml │ ├── phone_list_header.PNG │ ├── phone_list_header.qml │ ├── phone_list_section.PNG │ ├── phone_list_section.qml │ ├── phone_list_simple.PNG │ ├── phone_list_simple.qml │ ├── phone_table_delegate.png │ ├── phone_table_delegate.qml │ ├── phone_table_simple.PNG │ ├── phone_table_simple.qml │ ├── repeater_listmodel.png │ ├── repeater_listmodel.qml │ ├── repeater_number.png │ ├── repeater_number.qml │ ├── repeater_objects.png │ ├── repeater_objects.qml │ ├── repeater_stringlist.png │ ├── repeater_stringlist.qml │ ├── video_grid_xml.png │ ├── video_grid_xml.qml │ ├── video_list_xml.PNG │ ├── video_list_xml.qml │ ├── video_path_cards_xml.qml │ ├── video_path_detail.png │ ├── video_path_xml.png │ ├── video_path_xml.qml │ └── videos.xml ├── multimedia │ ├── FlatButton.qml │ ├── ic_ff.png │ ├── ic_pause.png │ ├── ic_play.png │ ├── ic_rew.png │ ├── ic_stop.png │ ├── simple_music.qml │ ├── simple_music_player.png │ ├── simple_music_player.qml │ ├── simple_video.png │ ├── simple_video.qml │ └── wangjie_game_and_dream.mp3 ├── my_signal.qml ├── my_signal_1.PNG ├── my_signal_2.PNG ├── network │ ├── remote.qml │ ├── videoresp.xml │ ├── xmlhttp.qml │ ├── xmlhttp_get.png │ ├── xmlhttp_get.qml │ └── xmlhttp_get_xml.png ├── network_image.qml ├── object_to_json.png ├── object_to_json.qml ├── parent_test.qml ├── property_signal.PNG ├── property_signal.qml ├── qt_create_component.qml ├── qt_create_component_0.PNG ├── qt_create_component_1.PNG ├── rich_blue_text.png ├── rich_blue_text.qml ├── selected.png ├── show_net_image.qml ├── show_net_image_0.png ├── show_net_image_1.png ├── show_type.PNG ├── show_type.qml ├── style_text.png ├── style_text.qml ├── type_date.PNG ├── typeof.qml ├── z_opacity.png └── z_opacity.qml ├── qt_quick_app_hello_0.PNG ├── qt_quick_app_hello_1-1.PNG ├── qt_quick_app_hello_1.PNG ├── qt_quick_app_hello_2.PNG ├── qt_quick_app_hello_3.PNG ├── qt_quick_app_hello_4.PNG └── simpleCamera ├── FlatButton.qml ├── android └── AndroidManifest.xml ├── deployment.pri ├── main.cpp ├── main.qml ├── pc_captured.png ├── pc_run.png ├── qml.qrc ├── res ├── control_bar.png ├── ic_cam_shutter.png ├── ic_camera.png ├── ic_launcher_camera.png ├── ic_menu_stat_action.png ├── ic_menu_stat_auto.png ├── ic_menu_stat_flash.png ├── ic_menu_stat_flash_auto.png ├── ic_menu_stat_flash_off.png ├── ic_menu_stat_landscape.png ├── ic_menu_stat_macro.png ├── ic_menu_stat_night.png ├── ic_menu_stat_portrait.png ├── ic_menu_stat_sunset.png ├── ic_zoom_in.png └── ic_zoom_out.png ├── screenshots ├── 豌豆荚截图20140905092434.png ├── 豌豆荚截图20140905092546.png ├── 豌豆荚截图20140905092602.png ├── 豌豆荚截图20140905093408.png ├── 豌豆荚截图20140905093431.png ├── 豌豆荚截图20140905095957.png └── 豌豆荚截图20140905100020.png ├── simpleCamera.pro └── simpleCamera.pro.user /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/.gitignore -------------------------------------------------------------------------------- /DynamicList/DynamicList.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/DynamicList/DynamicList.pro -------------------------------------------------------------------------------- /DynamicList/DynamicList.pro.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/DynamicList/DynamicList.pro.user -------------------------------------------------------------------------------- /DynamicList/deployment.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/DynamicList/deployment.pri -------------------------------------------------------------------------------- /DynamicList/dynamicModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/DynamicList/dynamicModel.cpp -------------------------------------------------------------------------------- /DynamicList/dynamicModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/DynamicList/dynamicModel.h -------------------------------------------------------------------------------- /DynamicList/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/DynamicList/main.cpp -------------------------------------------------------------------------------- /DynamicList/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/DynamicList/main.qml -------------------------------------------------------------------------------- /DynamicList/main_bak.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/DynamicList/main_bak.qml -------------------------------------------------------------------------------- /DynamicList/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/DynamicList/qml.qrc -------------------------------------------------------------------------------- /DynamicList/screenshots/pc_flickdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/DynamicList/screenshots/pc_flickdown.png -------------------------------------------------------------------------------- /DynamicList/screenshots/pc_flickup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/DynamicList/screenshots/pc_flickup.png -------------------------------------------------------------------------------- /DynamicList/screenshots/pc_init.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/DynamicList/screenshots/pc_init.png -------------------------------------------------------------------------------- /FileViewer/FileViewer.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/FileViewer/FileViewer.pro -------------------------------------------------------------------------------- /FileViewer/FileViewer.pro.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/FileViewer/FileViewer.pro.user -------------------------------------------------------------------------------- /FileViewer/deployment.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/FileViewer/deployment.pri -------------------------------------------------------------------------------- /FileViewer/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/FileViewer/main.cpp -------------------------------------------------------------------------------- /FileViewer/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/FileViewer/main.qml -------------------------------------------------------------------------------- /FileViewer/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/FileViewer/qml.qrc -------------------------------------------------------------------------------- /FileViewer/res/applicationWindow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/FileViewer/res/applicationWindow.png -------------------------------------------------------------------------------- /FileViewer/res/applicationWindow.tsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/FileViewer/res/applicationWindow.tsp -------------------------------------------------------------------------------- /FileViewer/res/audioFile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/FileViewer/res/audioFile.png -------------------------------------------------------------------------------- /FileViewer/res/backgroundColor.tsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/FileViewer/res/backgroundColor.tsp -------------------------------------------------------------------------------- /FileViewer/res/eye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/FileViewer/res/eye.png -------------------------------------------------------------------------------- /FileViewer/res/eye.tsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/FileViewer/res/eye.tsp -------------------------------------------------------------------------------- /FileViewer/res/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/FileViewer/res/folder.png -------------------------------------------------------------------------------- /FileViewer/res/fontSize.tsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/FileViewer/res/fontSize.tsp -------------------------------------------------------------------------------- /FileViewer/res/ic_bkgndcolor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/FileViewer/res/ic_bkgndcolor.png -------------------------------------------------------------------------------- /FileViewer/res/ic_fontsize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/FileViewer/res/ic_fontsize.png -------------------------------------------------------------------------------- /FileViewer/res/ic_fontsize1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/FileViewer/res/ic_fontsize1.png -------------------------------------------------------------------------------- /FileViewer/res/ic_fontsize2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/FileViewer/res/ic_fontsize2.png -------------------------------------------------------------------------------- /FileViewer/res/ic_textcolor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/FileViewer/res/ic_textcolor.png -------------------------------------------------------------------------------- /FileViewer/res/imageFile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/FileViewer/res/imageFile.png -------------------------------------------------------------------------------- /FileViewer/res/textColor.tsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/FileViewer/res/textColor.tsp -------------------------------------------------------------------------------- /FileViewer/res/txtFile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/FileViewer/res/txtFile.png -------------------------------------------------------------------------------- /FileViewer/res/videoFile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/FileViewer/res/videoFile.png -------------------------------------------------------------------------------- /FileViewer/screenshots/application_win.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/FileViewer/screenshots/application_win.png -------------------------------------------------------------------------------- /FileViewer/screenshots/pc_run_init.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/FileViewer/screenshots/pc_run_init.png -------------------------------------------------------------------------------- /FileViewer/screenshots/pc_run_init_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/FileViewer/screenshots/pc_run_init_menu.png -------------------------------------------------------------------------------- /FileViewer/screenshots/pc_run_init_widgets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/FileViewer/screenshots/pc_run_init_widgets.png -------------------------------------------------------------------------------- /FileViewer/screenshots/pc_run_init_widgets_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/FileViewer/screenshots/pc_run_init_widgets_menu.png -------------------------------------------------------------------------------- /FileViewer/screenshots/pc_run_widgets_audio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/FileViewer/screenshots/pc_run_widgets_audio.png -------------------------------------------------------------------------------- /FileViewer/screenshots/pc_run_widgets_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/FileViewer/screenshots/pc_run_widgets_img.png -------------------------------------------------------------------------------- /FileViewer/screenshots/pc_run_widgets_txt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/FileViewer/screenshots/pc_run_widgets_txt.png -------------------------------------------------------------------------------- /FileViewer/screenshots/pc_run_widgets_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/FileViewer/screenshots/pc_run_widgets_video.png -------------------------------------------------------------------------------- /FileViewer/screenshots/qtquick_colordlg.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/FileViewer/screenshots/qtquick_colordlg.PNG -------------------------------------------------------------------------------- /FileViewer/screenshots/win7colordlg.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/FileViewer/screenshots/win7colordlg.PNG -------------------------------------------------------------------------------- /HelloQtQuickApp/HelloQtQuickApp.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/HelloQtQuickApp/HelloQtQuickApp.pro -------------------------------------------------------------------------------- /HelloQtQuickApp/HelloQtQuickApp.pro.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/HelloQtQuickApp/HelloQtQuickApp.pro.user -------------------------------------------------------------------------------- /HelloQtQuickApp/android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/HelloQtQuickApp/android/AndroidManifest.xml -------------------------------------------------------------------------------- /HelloQtQuickApp/deployment.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/HelloQtQuickApp/deployment.pri -------------------------------------------------------------------------------- /HelloQtQuickApp/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/HelloQtQuickApp/main.cpp -------------------------------------------------------------------------------- /HelloQtQuickApp/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/HelloQtQuickApp/main.qml -------------------------------------------------------------------------------- /HelloQtQuickApp/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/HelloQtQuickApp/qml.qrc -------------------------------------------------------------------------------- /ImageViewer/FlatButton.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/ImageViewer/FlatButton.qml -------------------------------------------------------------------------------- /ImageViewer/ImageDigger.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/ImageViewer/ImageDigger.qml -------------------------------------------------------------------------------- /ImageViewer/ImageViewer.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/ImageViewer/ImageViewer.pro -------------------------------------------------------------------------------- /ImageViewer/ImageViewer.pro.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/ImageViewer/ImageViewer.pro.user -------------------------------------------------------------------------------- /ImageViewer/LocalViewer.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/ImageViewer/LocalViewer.qml -------------------------------------------------------------------------------- /ImageViewer/android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/ImageViewer/android/AndroidManifest.xml -------------------------------------------------------------------------------- /ImageViewer/deployment.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/ImageViewer/deployment.pri -------------------------------------------------------------------------------- /ImageViewer/directoryTraverse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/ImageViewer/directoryTraverse.cpp -------------------------------------------------------------------------------- /ImageViewer/directoryTraverse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/ImageViewer/directoryTraverse.h -------------------------------------------------------------------------------- /ImageViewer/icons/ic_archive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/ImageViewer/icons/ic_archive.png -------------------------------------------------------------------------------- /ImageViewer/icons/ic_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/ImageViewer/icons/ic_back.png -------------------------------------------------------------------------------- /ImageViewer/icons/ic_backward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/ImageViewer/icons/ic_backward.png -------------------------------------------------------------------------------- /ImageViewer/icons/ic_close_clear_cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/ImageViewer/icons/ic_close_clear_cancel.png -------------------------------------------------------------------------------- /ImageViewer/icons/ic_find.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/ImageViewer/icons/ic_find.png -------------------------------------------------------------------------------- /ImageViewer/icons/ic_forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/ImageViewer/icons/ic_forward.png -------------------------------------------------------------------------------- /ImageViewer/icons/ic_info_details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/ImageViewer/icons/ic_info_details.png -------------------------------------------------------------------------------- /ImageViewer/icons/ic_rotate_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/ImageViewer/icons/ic_rotate_left.png -------------------------------------------------------------------------------- /ImageViewer/icons/ic_rotate_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/ImageViewer/icons/ic_rotate_right.png -------------------------------------------------------------------------------- /ImageViewer/icons/ic_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/ImageViewer/icons/ic_search.png -------------------------------------------------------------------------------- /ImageViewer/icons/ic_zoomin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/ImageViewer/icons/ic_zoomin.png -------------------------------------------------------------------------------- /ImageViewer/icons/ic_zoomout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/ImageViewer/icons/ic_zoomout.png -------------------------------------------------------------------------------- /ImageViewer/icons/zoomin.tsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/ImageViewer/icons/zoomin.tsp -------------------------------------------------------------------------------- /ImageViewer/imageviewer_zh_CN.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/ImageViewer/imageviewer_zh_CN.qm -------------------------------------------------------------------------------- /ImageViewer/imageviewer_zh_CN.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/ImageViewer/imageviewer_zh_CN.ts -------------------------------------------------------------------------------- /ImageViewer/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/ImageViewer/main.cpp -------------------------------------------------------------------------------- /ImageViewer/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/ImageViewer/main.qml -------------------------------------------------------------------------------- /ImageViewer/networkImageModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/ImageViewer/networkImageModel.cpp -------------------------------------------------------------------------------- /ImageViewer/networkImageModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/ImageViewer/networkImageModel.h -------------------------------------------------------------------------------- /ImageViewer/networkImageModel_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/ImageViewer/networkImageModel_p.h -------------------------------------------------------------------------------- /ImageViewer/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/ImageViewer/qml.qrc -------------------------------------------------------------------------------- /ImageViewer/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/ImageViewer/readme.txt -------------------------------------------------------------------------------- /ImageViewer/screenshots/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/ImageViewer/screenshots/home.png -------------------------------------------------------------------------------- /ImageViewer/screenshots/image_show.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/ImageViewer/screenshots/image_show.PNG -------------------------------------------------------------------------------- /ImageViewer/screenshots/pc_localviewer.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/ImageViewer/screenshots/pc_localviewer.PNG -------------------------------------------------------------------------------- /ImageViewer/screenshots/pc_searchImage_2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/ImageViewer/screenshots/pc_searchImage_2.PNG -------------------------------------------------------------------------------- /ImageViewer/screenshots/pc_startup.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/ImageViewer/screenshots/pc_startup.PNG -------------------------------------------------------------------------------- /ImageViewer/screenshots/searchImage.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/ImageViewer/screenshots/searchImage.PNG -------------------------------------------------------------------------------- /ImageViewer/screenshots/豌豆荚截图20140825214147.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/ImageViewer/screenshots/豌豆荚截图20140825214147.png -------------------------------------------------------------------------------- /ImageViewer/screenshots/豌豆荚截图20140825214310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/ImageViewer/screenshots/豌豆荚截图20140825214310.png -------------------------------------------------------------------------------- /ImageViewer/screenshots/豌豆荚截图20140825214403.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/ImageViewer/screenshots/豌豆荚截图20140825214403.png -------------------------------------------------------------------------------- /ImageViewer/screenshots/豌豆荚截图20140825214451.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/ImageViewer/screenshots/豌豆荚截图20140825214451.png -------------------------------------------------------------------------------- /ImageViewer/screenshots/豌豆荚截图20141025015446.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/ImageViewer/screenshots/豌豆荚截图20141025015446.png -------------------------------------------------------------------------------- /MadMath/ImageButton.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/MadMath/ImageButton.qml -------------------------------------------------------------------------------- /MadMath/MadMath.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/MadMath/MadMath.pro -------------------------------------------------------------------------------- /MadMath/MadMath.pro.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/MadMath/MadMath.pro.user -------------------------------------------------------------------------------- /MadMath/android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/MadMath/android/AndroidManifest.xml -------------------------------------------------------------------------------- /MadMath/android/res/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/MadMath/android/res/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /MadMath/android/res/drawable-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/MadMath/android/res/drawable-ldpi/icon.png -------------------------------------------------------------------------------- /MadMath/android/res/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/MadMath/android/res/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /MadMath/android/res/values-zh-rCN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/MadMath/android/res/values-zh-rCN/strings.xml -------------------------------------------------------------------------------- /MadMath/deployment.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/MadMath/deployment.pri -------------------------------------------------------------------------------- /MadMath/madmath_zh_cn.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/MadMath/madmath_zh_cn.qm -------------------------------------------------------------------------------- /MadMath/madmath_zh_cn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/MadMath/madmath_zh_cn.ts -------------------------------------------------------------------------------- /MadMath/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/MadMath/main.cpp -------------------------------------------------------------------------------- /MadMath/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/MadMath/main.qml -------------------------------------------------------------------------------- /MadMath/problem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/MadMath/problem.cpp -------------------------------------------------------------------------------- /MadMath/problem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/MadMath/problem.h -------------------------------------------------------------------------------- /MadMath/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/MadMath/qml.qrc -------------------------------------------------------------------------------- /MadMath/res/madmath_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/MadMath/res/madmath_36.png -------------------------------------------------------------------------------- /MadMath/res/madmath_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/MadMath/res/madmath_48.png -------------------------------------------------------------------------------- /MadMath/res/madmath_72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/MadMath/res/madmath_72.png -------------------------------------------------------------------------------- /MadMath/res/right_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/MadMath/res/right_normal.png -------------------------------------------------------------------------------- /MadMath/res/right_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/MadMath/res/right_selected.png -------------------------------------------------------------------------------- /MadMath/res/wrong_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/MadMath/res/wrong_normal.png -------------------------------------------------------------------------------- /MadMath/res/wrong_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/MadMath/res/wrong_selected.png -------------------------------------------------------------------------------- /MadMath/sizeUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/MadMath/sizeUtil.cpp -------------------------------------------------------------------------------- /MadMath/sizeUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/MadMath/sizeUtil.h -------------------------------------------------------------------------------- /MadMath/豌豆荚截图20150109134838.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/MadMath/豌豆荚截图20150109134838.png -------------------------------------------------------------------------------- /MadMath/豌豆荚截图20150109134859.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/MadMath/豌豆荚截图20150109134859.png -------------------------------------------------------------------------------- /MadMath/豌豆荚截图20150109135053.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/MadMath/豌豆荚截图20150109135053.png -------------------------------------------------------------------------------- /MultiTouchDemo/MultiTouchDemo.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/MultiTouchDemo/MultiTouchDemo.pro -------------------------------------------------------------------------------- /MultiTouchDemo/MultiTouchDemo.pro.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/MultiTouchDemo/MultiTouchDemo.pro.user -------------------------------------------------------------------------------- /MultiTouchDemo/android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/MultiTouchDemo/android/AndroidManifest.xml -------------------------------------------------------------------------------- /MultiTouchDemo/deployment.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/MultiTouchDemo/deployment.pri -------------------------------------------------------------------------------- /MultiTouchDemo/ic_android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/MultiTouchDemo/ic_android.png -------------------------------------------------------------------------------- /MultiTouchDemo/ic_android_usb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/MultiTouchDemo/ic_android_usb.png -------------------------------------------------------------------------------- /MultiTouchDemo/ic_qt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/MultiTouchDemo/ic_qt.png -------------------------------------------------------------------------------- /MultiTouchDemo/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/MultiTouchDemo/main.cpp -------------------------------------------------------------------------------- /MultiTouchDemo/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/MultiTouchDemo/main.qml -------------------------------------------------------------------------------- /MultiTouchDemo/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/MultiTouchDemo/qml.qrc -------------------------------------------------------------------------------- /MultiTouchDemo/豌豆荚截图20140826090046.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/MultiTouchDemo/豌豆荚截图20140826090046.png -------------------------------------------------------------------------------- /MultiTouchDemo/豌豆荚截图20140826090205.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/MultiTouchDemo/豌豆荚截图20140826090205.png -------------------------------------------------------------------------------- /MultiTouchDemo/豌豆荚截图20140826090324.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/MultiTouchDemo/豌豆荚截图20140826090324.png -------------------------------------------------------------------------------- /MultiTouchDemo/豌豆荚截图20140826090406.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/MultiTouchDemo/豌豆荚截图20140826090406.png -------------------------------------------------------------------------------- /MultiTouchDemo/豌豆荚截图20140826090434.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/MultiTouchDemo/豌豆荚截图20140826090434.png -------------------------------------------------------------------------------- /NearService/NearService.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/NearService/NearService.pro -------------------------------------------------------------------------------- /NearService/NearService.pro.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/NearService/NearService.pro.user -------------------------------------------------------------------------------- /NearService/android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/NearService/android/AndroidManifest.xml -------------------------------------------------------------------------------- /NearService/deployment.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/NearService/deployment.pri -------------------------------------------------------------------------------- /NearService/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/NearService/main.cpp -------------------------------------------------------------------------------- /NearService/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/NearService/main.qml -------------------------------------------------------------------------------- /NearService/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/NearService/qml.qrc -------------------------------------------------------------------------------- /NearService/豌豆荚截图20140830111932.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/NearService/豌豆荚截图20140830111932.png -------------------------------------------------------------------------------- /NearService/豌豆荚截图20140830111952.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/NearService/豌豆荚截图20140830111952.png -------------------------------------------------------------------------------- /NearService/豌豆荚截图20140830112026.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/NearService/豌豆荚截图20140830112026.png -------------------------------------------------------------------------------- /NearService/豌豆荚截图20140831173816.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/NearService/豌豆荚截图20140831173816.png -------------------------------------------------------------------------------- /NearService/豌豆荚截图20140831174117.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/NearService/豌豆荚截图20140831174117.png -------------------------------------------------------------------------------- /NearService/豌豆荚截图20140831174411.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/NearService/豌豆荚截图20140831174411.png -------------------------------------------------------------------------------- /NearService/豌豆荚截图20140831174449.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/NearService/豌豆荚截图20140831174449.png -------------------------------------------------------------------------------- /NearService/豌豆荚截图20140831174654.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/NearService/豌豆荚截图20140831174654.png -------------------------------------------------------------------------------- /PaintedItem/ColorPicker.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/PaintedItem/ColorPicker.qml -------------------------------------------------------------------------------- /PaintedItem/PaintedItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/PaintedItem/PaintedItem.cpp -------------------------------------------------------------------------------- /PaintedItem/PaintedItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/PaintedItem/PaintedItem.h -------------------------------------------------------------------------------- /PaintedItem/PaintedItem.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/PaintedItem/PaintedItem.pro -------------------------------------------------------------------------------- /PaintedItem/PaintedItem.pro.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/PaintedItem/PaintedItem.pro.user -------------------------------------------------------------------------------- /PaintedItem/deployment.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/PaintedItem/deployment.pri -------------------------------------------------------------------------------- /PaintedItem/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/PaintedItem/main.cpp -------------------------------------------------------------------------------- /PaintedItem/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/PaintedItem/main.qml -------------------------------------------------------------------------------- /PaintedItem/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/PaintedItem/qml.qrc -------------------------------------------------------------------------------- /PaintedItem/screenshot.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/PaintedItem/screenshot.PNG -------------------------------------------------------------------------------- /PickThumb/PickThumb.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/PickThumb/PickThumb.pro -------------------------------------------------------------------------------- /PickThumb/PickThumb.pro.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/PickThumb/PickThumb.pro.user -------------------------------------------------------------------------------- /PickThumb/android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/PickThumb/android/AndroidManifest.xml -------------------------------------------------------------------------------- /PickThumb/android_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/PickThumb/android_0.png -------------------------------------------------------------------------------- /PickThumb/android_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/PickThumb/android_1.png -------------------------------------------------------------------------------- /PickThumb/deployment.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/PickThumb/deployment.pri -------------------------------------------------------------------------------- /PickThumb/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/PickThumb/main.cpp -------------------------------------------------------------------------------- /PickThumb/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/PickThumb/main.qml -------------------------------------------------------------------------------- /PickThumb/pc_run.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/PickThumb/pc_run.PNG -------------------------------------------------------------------------------- /PickThumb/project.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/PickThumb/project.PNG -------------------------------------------------------------------------------- /PickThumb/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/PickThumb/qml.qrc -------------------------------------------------------------------------------- /SomeVideo/SomeVideo.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/SomeVideo/SomeVideo.pro -------------------------------------------------------------------------------- /SomeVideo/SomeVideo.pro.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/SomeVideo/SomeVideo.pro.user -------------------------------------------------------------------------------- /SomeVideo/android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/SomeVideo/android/AndroidManifest.xml -------------------------------------------------------------------------------- /SomeVideo/deployment.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/SomeVideo/deployment.pri -------------------------------------------------------------------------------- /SomeVideo/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/SomeVideo/main.cpp -------------------------------------------------------------------------------- /SomeVideo/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/SomeVideo/main.qml -------------------------------------------------------------------------------- /SomeVideo/patharc_canvas.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/SomeVideo/patharc_canvas.qml -------------------------------------------------------------------------------- /SomeVideo/probe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/SomeVideo/probe.cpp -------------------------------------------------------------------------------- /SomeVideo/probe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/SomeVideo/probe.h -------------------------------------------------------------------------------- /SomeVideo/probe_p.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/SomeVideo/probe_p.cpp -------------------------------------------------------------------------------- /SomeVideo/probe_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/SomeVideo/probe_p.h -------------------------------------------------------------------------------- /SomeVideo/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/SomeVideo/qml.qrc -------------------------------------------------------------------------------- /SomeVideo/qt.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/SomeVideo/qt.conf -------------------------------------------------------------------------------- /SomeVideo/res/ic_media_pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/SomeVideo/res/ic_media_pause.png -------------------------------------------------------------------------------- /SomeVideo/res/ic_media_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/SomeVideo/res/ic_media_play.png -------------------------------------------------------------------------------- /SomeVideo/res/ic_media_play_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/SomeVideo/res/ic_media_play_focus.png -------------------------------------------------------------------------------- /SomeVideo/res/ic_media_stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/SomeVideo/res/ic_media_stop.png -------------------------------------------------------------------------------- /SomeVideo/res/ic_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/SomeVideo/res/ic_search.png -------------------------------------------------------------------------------- /SomeVideo/videoListModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/SomeVideo/videoListModel.cpp -------------------------------------------------------------------------------- /SomeVideo/videoListModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/SomeVideo/videoListModel.h -------------------------------------------------------------------------------- /SomeVideo/videos.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/SomeVideo/videos.xml -------------------------------------------------------------------------------- /TopVideo/res/ic_media_ff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/TopVideo/res/ic_media_ff.png -------------------------------------------------------------------------------- /TopVideo/res/ic_media_next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/TopVideo/res/ic_media_next.png -------------------------------------------------------------------------------- /TopVideo/res/ic_media_pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/TopVideo/res/ic_media_pause.png -------------------------------------------------------------------------------- /TopVideo/res/ic_media_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/TopVideo/res/ic_media_play.png -------------------------------------------------------------------------------- /TopVideo/res/ic_media_previous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/TopVideo/res/ic_media_previous.png -------------------------------------------------------------------------------- /TopVideo/res/ic_media_rew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/TopVideo/res/ic_media_rew.png -------------------------------------------------------------------------------- /TopVideo/res/ic_media_stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/TopVideo/res/ic_media_stop.png -------------------------------------------------------------------------------- /TopVideo/res/ic_menu_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/TopVideo/res/ic_menu_delete.png -------------------------------------------------------------------------------- /TopVideo/res/ic_menu_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/TopVideo/res/ic_menu_home.png -------------------------------------------------------------------------------- /TopVideo/res/ic_menu_info_details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/TopVideo/res/ic_menu_info_details.png -------------------------------------------------------------------------------- /TopVideo/res/ic_menu_recent_history.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/TopVideo/res/ic_menu_recent_history.png -------------------------------------------------------------------------------- /TopVideo/res/ic_menu_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/TopVideo/res/ic_menu_refresh.png -------------------------------------------------------------------------------- /TopVideo/res/ic_menu_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/TopVideo/res/ic_menu_star.png -------------------------------------------------------------------------------- /TopVideo/res/ic_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/TopVideo/res/ic_search.png -------------------------------------------------------------------------------- /TopVideo/res/ic_voice_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/TopVideo/res/ic_voice_search.png -------------------------------------------------------------------------------- /android_screen/fullscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/android_screen/fullscreen.png -------------------------------------------------------------------------------- /android_screen/fullscreen_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/android_screen/fullscreen_2.png -------------------------------------------------------------------------------- /android_screen/no_fullscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/android_screen/no_fullscreen.png -------------------------------------------------------------------------------- /android_screen/no_fullscreen_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/android_screen/no_fullscreen_2.png -------------------------------------------------------------------------------- /android_screen/project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/android_screen/project.png -------------------------------------------------------------------------------- /android_screen/豌豆荚截图20140729113946.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/android_screen/豌豆荚截图20140729113946.png -------------------------------------------------------------------------------- /animatedSprite/animatedSprite.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/animatedSprite/animatedSprite.pro -------------------------------------------------------------------------------- /animatedSprite/animatedSprite.pro.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/animatedSprite/animatedSprite.pro.user -------------------------------------------------------------------------------- /animatedSprite/deployment.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/animatedSprite/deployment.pri -------------------------------------------------------------------------------- /animatedSprite/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/animatedSprite/main.cpp -------------------------------------------------------------------------------- /animatedSprite/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/animatedSprite/main.qml -------------------------------------------------------------------------------- /animatedSprite/numbers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/animatedSprite/numbers.png -------------------------------------------------------------------------------- /animatedSprite/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/animatedSprite/qml.qrc -------------------------------------------------------------------------------- /animatedSprite/screenshot.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/animatedSprite/screenshot.PNG -------------------------------------------------------------------------------- /bubbles/bubble_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/bubbles/bubble_1.png -------------------------------------------------------------------------------- /bubbles/bubbles.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/bubbles/bubbles.PNG -------------------------------------------------------------------------------- /bubbles/bubbles.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/bubbles/bubbles.pro -------------------------------------------------------------------------------- /bubbles/bubbles.pro.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/bubbles/bubbles.pro.user -------------------------------------------------------------------------------- /bubbles/deployment.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/bubbles/deployment.pri -------------------------------------------------------------------------------- /bubbles/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/bubbles/main.cpp -------------------------------------------------------------------------------- /bubbles/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/bubbles/main.qml -------------------------------------------------------------------------------- /bubbles/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/bubbles/qml.qrc -------------------------------------------------------------------------------- /callQml/callQml.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/callQml/callQml.pro -------------------------------------------------------------------------------- /callQml/callQml.pro.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/callQml/callQml.pro.user -------------------------------------------------------------------------------- /callQml/callQml64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/callQml/callQml64.png -------------------------------------------------------------------------------- /callQml/callQml80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/callQml/callQml80.png -------------------------------------------------------------------------------- /callQml/changeColor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/callQml/changeColor.cpp -------------------------------------------------------------------------------- /callQml/changeColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/callQml/changeColor.h -------------------------------------------------------------------------------- /callQml/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/callQml/main.cpp -------------------------------------------------------------------------------- /callQml/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/callQml/main.qml -------------------------------------------------------------------------------- /callQml/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/callQml/qml.qrc -------------------------------------------------------------------------------- /callQml/ui.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/callQml/ui.PNG -------------------------------------------------------------------------------- /colorMaker/colorMaker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/colorMaker/colorMaker.cpp -------------------------------------------------------------------------------- /colorMaker/colorMaker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/colorMaker/colorMaker.h -------------------------------------------------------------------------------- /colorMaker/colorMaker.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/colorMaker/colorMaker.pro -------------------------------------------------------------------------------- /colorMaker/colorMaker.pro.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/colorMaker/colorMaker.pro.user -------------------------------------------------------------------------------- /colorMaker/colorMaker64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/colorMaker/colorMaker64.png -------------------------------------------------------------------------------- /colorMaker/colorMaker80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/colorMaker/colorMaker80.png -------------------------------------------------------------------------------- /colorMaker/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/colorMaker/main.cpp -------------------------------------------------------------------------------- /colorMaker/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/colorMaker/main.qml -------------------------------------------------------------------------------- /colorMaker/main_bak.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/colorMaker/main_bak.qml -------------------------------------------------------------------------------- /colorMaker/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/colorMaker/qml.qrc -------------------------------------------------------------------------------- /colorMaker/ui.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/colorMaker/ui.PNG -------------------------------------------------------------------------------- /depoly/windeploy_init.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/depoly/windeploy_init.PNG -------------------------------------------------------------------------------- /depoly/windepoly_cmdrun.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/depoly/windepoly_cmdrun.PNG -------------------------------------------------------------------------------- /depoly/windepoy_project.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/depoly/windepoy_project.PNG -------------------------------------------------------------------------------- /dev_env/HelloQtQuickApp/android_manifest_edit - 副本.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/dev_env/HelloQtQuickApp/android_manifest_edit - 副本.PNG -------------------------------------------------------------------------------- /dev_env/HelloQtQuickApp/android_manifest_edit.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/dev_env/HelloQtQuickApp/android_manifest_edit.PNG -------------------------------------------------------------------------------- /dev_env/HelloQtQuickApp/android_setting - 副本.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/dev_env/HelloQtQuickApp/android_setting - 副本.PNG -------------------------------------------------------------------------------- /dev_env/HelloQtQuickApp/android_setting.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/dev_env/HelloQtQuickApp/android_setting.PNG -------------------------------------------------------------------------------- /dev_env/HelloQtQuickApp/create_manifest_wizard.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/dev_env/HelloQtQuickApp/create_manifest_wizard.PNG -------------------------------------------------------------------------------- /dev_env/HelloQtQuickApp/hello_location.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/dev_env/HelloQtQuickApp/hello_location.PNG -------------------------------------------------------------------------------- /dev_env/HelloQtQuickApp/kit_select.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/dev_env/HelloQtQuickApp/kit_select.PNG -------------------------------------------------------------------------------- /dev_env/HelloQtQuickApp/project_edit.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/dev_env/HelloQtQuickApp/project_edit.PNG -------------------------------------------------------------------------------- /dev_env/HelloQtQuickApp/project_manager.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/dev_env/HelloQtQuickApp/project_manager.PNG -------------------------------------------------------------------------------- /dev_env/HelloQtQuickApp/project_view_manifest - 副本.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/dev_env/HelloQtQuickApp/project_view_manifest - 副本.png -------------------------------------------------------------------------------- /dev_env/HelloQtQuickApp/project_view_manifest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/dev_env/HelloQtQuickApp/project_view_manifest.png -------------------------------------------------------------------------------- /dev_env/HelloQtQuickApp/select_component.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/dev_env/HelloQtQuickApp/select_component.PNG -------------------------------------------------------------------------------- /dev_env/HelloQtQuickApp/select_component_2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/dev_env/HelloQtQuickApp/select_component_2.PNG -------------------------------------------------------------------------------- /dev_env/HelloQtQuickApp/select_device.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/dev_env/HelloQtQuickApp/select_device.png -------------------------------------------------------------------------------- /dev_env/HelloQtQuickApp/type_import.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/dev_env/HelloQtQuickApp/type_import.PNG -------------------------------------------------------------------------------- /dev_env/android_setting.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/dev_env/android_setting.PNG -------------------------------------------------------------------------------- /dev_env/assistan_find.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/dev_env/assistan_find.PNG -------------------------------------------------------------------------------- /dev_env/assistant_bookmark.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/dev_env/assistant_bookmark.PNG -------------------------------------------------------------------------------- /dev_env/assistant_directory.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/dev_env/assistant_directory.PNG -------------------------------------------------------------------------------- /dev_env/assistant_index - 副本.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/dev_env/assistant_index - 副本.PNG -------------------------------------------------------------------------------- /dev_env/assistant_index.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/dev_env/assistant_index.PNG -------------------------------------------------------------------------------- /dev_env/assistant_mode_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/dev_env/assistant_mode_select.png -------------------------------------------------------------------------------- /dev_env/debug - 副本.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/dev_env/debug - 副本.PNG -------------------------------------------------------------------------------- /dev_env/debug.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/dev_env/debug.PNG -------------------------------------------------------------------------------- /dev_env/getstarted.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/dev_env/getstarted.PNG -------------------------------------------------------------------------------- /dev_env/project_edit.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/dev_env/project_edit.PNG -------------------------------------------------------------------------------- /dev_env/project_setting_android_build.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/dev_env/project_setting_android_build.PNG -------------------------------------------------------------------------------- /dev_env/project_setting_pc_build - 副本.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/dev_env/project_setting_pc_build - 副本.PNG -------------------------------------------------------------------------------- /dev_env/project_setting_pc_build.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/dev_env/project_setting_pc_build.PNG -------------------------------------------------------------------------------- /dev_env/project_setting_pc_run - 副本.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/dev_env/project_setting_pc_run - 副本.PNG -------------------------------------------------------------------------------- /dev_env/project_setting_pc_run.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/dev_env/project_setting_pc_run.PNG -------------------------------------------------------------------------------- /dev_env/qt5.3.1_cmd_env.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/dev_env/qt5.3.1_cmd_env.PNG -------------------------------------------------------------------------------- /dev_env/qt5.3.1_cmd_qmlscene_help.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/dev_env/qt5.3.1_cmd_qmlscene_help.PNG -------------------------------------------------------------------------------- /dev_env/qt5.3.1_cmdline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/dev_env/qt5.3.1_cmdline.png -------------------------------------------------------------------------------- /dev_env/qt_creator_welcome.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/dev_env/qt_creator_welcome.PNG -------------------------------------------------------------------------------- /dev_env/qtcreator_welcome - 副本.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/dev_env/qtcreator_welcome - 副本.PNG -------------------------------------------------------------------------------- /dev_env/qtcreator_welcome.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/dev_env/qtcreator_welcome.PNG -------------------------------------------------------------------------------- /dev_env/qtquick_designer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/dev_env/qtquick_designer.png -------------------------------------------------------------------------------- /dev_env/setup_complete.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/dev_env/setup_complete.PNG -------------------------------------------------------------------------------- /dev_env/setup_component.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/dev_env/setup_component.png -------------------------------------------------------------------------------- /dev_env/setup_license.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/dev_env/setup_license.png -------------------------------------------------------------------------------- /dev_env/setup_location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/dev_env/setup_location.png -------------------------------------------------------------------------------- /dev_env/setup_location_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/dev_env/setup_location_2.png -------------------------------------------------------------------------------- /dev_env/setup_progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/dev_env/setup_progress.png -------------------------------------------------------------------------------- /dev_env/setup_progress_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/dev_env/setup_progress_2.png -------------------------------------------------------------------------------- /dev_env/setup_ready_go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/dev_env/setup_ready_go.png -------------------------------------------------------------------------------- /dev_env/setup_startmenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/dev_env/setup_startmenu.png -------------------------------------------------------------------------------- /dev_env/setup_welcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/dev_env/setup_welcome.png -------------------------------------------------------------------------------- /dev_env/teacher.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/dev_env/teacher.PNG -------------------------------------------------------------------------------- /dev_env/tutorial.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/dev_env/tutorial.PNG -------------------------------------------------------------------------------- /dev_env/welcome.tsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/dev_env/welcome.tsp -------------------------------------------------------------------------------- /games/bubbleshot/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/games/bubbleshot/14.png -------------------------------------------------------------------------------- /games/bubbleshot/bubbleshot.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/games/bubbleshot/bubbleshot.qml -------------------------------------------------------------------------------- /games/bubbleshot/dao_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/games/bubbleshot/dao_1.png -------------------------------------------------------------------------------- /games/bubbleshot/dynamic_images.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/games/bubbleshot/dynamic_images.qml -------------------------------------------------------------------------------- /games/bubbleshot/launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/games/bubbleshot/launcher.png -------------------------------------------------------------------------------- /games/bubbleshot/res/bubble_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/games/bubbleshot/res/bubble_1.png -------------------------------------------------------------------------------- /games/bubbleshot/res/bubble_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/games/bubbleshot/res/bubble_2.png -------------------------------------------------------------------------------- /games/bubbleshot/res/bubble_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/games/bubbleshot/res/bubble_3.png -------------------------------------------------------------------------------- /games/bubbleshot/res/bubble_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/games/bubbleshot/res/bubble_4.png -------------------------------------------------------------------------------- /games/bubbleshot/res/bubble_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/games/bubbleshot/res/bubble_5.png -------------------------------------------------------------------------------- /games/bubbleshot/res/bubble_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/games/bubbleshot/res/bubble_6.png -------------------------------------------------------------------------------- /games/bubbleshot/res/bubble_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/games/bubbleshot/res/bubble_7.png -------------------------------------------------------------------------------- /games/bubbleshot/res/bubble_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/games/bubbleshot/res/bubble_8.png -------------------------------------------------------------------------------- /games/bubbleshot/res/failed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/games/bubbleshot/res/failed.png -------------------------------------------------------------------------------- /games/bubbleshot/res/frozen_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/games/bubbleshot/res/frozen_1.png -------------------------------------------------------------------------------- /games/bubbleshot/res/frozen_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/games/bubbleshot/res/frozen_2.png -------------------------------------------------------------------------------- /games/bubbleshot/res/frozen_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/games/bubbleshot/res/frozen_3.png -------------------------------------------------------------------------------- /games/bubbleshot/res/frozen_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/games/bubbleshot/res/frozen_4.png -------------------------------------------------------------------------------- /games/bubbleshot/res/frozen_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/games/bubbleshot/res/frozen_5.png -------------------------------------------------------------------------------- /games/bubbleshot/res/frozen_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/games/bubbleshot/res/frozen_6.png -------------------------------------------------------------------------------- /games/bubbleshot/res/frozen_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/games/bubbleshot/res/frozen_7.png -------------------------------------------------------------------------------- /games/bubbleshot/res/frozen_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/games/bubbleshot/res/frozen_8.png -------------------------------------------------------------------------------- /games/bubbleshot/res/gun_bak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/games/bubbleshot/res/gun_bak.png -------------------------------------------------------------------------------- /games/bubbleshot/res/knife.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/games/bubbleshot/res/knife.png -------------------------------------------------------------------------------- /games/bubbleshot/res/passed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/games/bubbleshot/res/passed.png -------------------------------------------------------------------------------- /games/bubbleshot/res/turret.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/games/bubbleshot/res/turret.png -------------------------------------------------------------------------------- /games/bubbleshot/res/x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/games/bubbleshot/res/x.png -------------------------------------------------------------------------------- /games/bubbleshot/screenshots/failed.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/games/bubbleshot/screenshots/failed.PNG -------------------------------------------------------------------------------- /games/bubbleshot/screenshots/finished.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/games/bubbleshot/screenshots/finished.PNG -------------------------------------------------------------------------------- /games/bubbleshot/screenshots/shotting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/games/bubbleshot/screenshots/shotting.png -------------------------------------------------------------------------------- /games/bubbleshot/screenshots/start.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/games/bubbleshot/screenshots/start.PNG -------------------------------------------------------------------------------- /games/bubbleshot/screenshots/unshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/games/bubbleshot/screenshots/unshot.png -------------------------------------------------------------------------------- /games/bubbleshot/直线的倾斜角和斜率知识点例题.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/games/bubbleshot/直线的倾斜角和斜率知识点例题.doc -------------------------------------------------------------------------------- /games/drawable/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/games/drawable/background.png -------------------------------------------------------------------------------- /games/drawable/bbb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/games/drawable/bbb.png -------------------------------------------------------------------------------- /games/drawable/bubble_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/games/drawable/bubble_1.png -------------------------------------------------------------------------------- /games/drawable/bubble_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/games/drawable/bubble_2.png -------------------------------------------------------------------------------- /games/drawable/bubble_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/games/drawable/bubble_3.png -------------------------------------------------------------------------------- /games/drawable/bubble_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/games/drawable/bubble_4.png -------------------------------------------------------------------------------- /games/drawable/bubble_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/games/drawable/bubble_5.png -------------------------------------------------------------------------------- /games/drawable/bubble_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/games/drawable/bubble_6.png -------------------------------------------------------------------------------- /games/drawable/bubble_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/games/drawable/bubble_7.png -------------------------------------------------------------------------------- /games/drawable/bubble_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/games/drawable/bubble_8.png -------------------------------------------------------------------------------- /games/drawable/bubble_blink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/games/drawable/bubble_blink.png -------------------------------------------------------------------------------- /games/drawable/bubble_colourblind_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/games/drawable/bubble_colourblind_1.gif -------------------------------------------------------------------------------- /games/drawable/bubble_colourblind_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/games/drawable/bubble_colourblind_2.gif -------------------------------------------------------------------------------- /games/drawable/bubble_colourblind_3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/games/drawable/bubble_colourblind_3.gif -------------------------------------------------------------------------------- /games/drawable/bubble_colourblind_4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/games/drawable/bubble_colourblind_4.gif -------------------------------------------------------------------------------- /games/drawable/bubble_colourblind_5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/games/drawable/bubble_colourblind_5.gif -------------------------------------------------------------------------------- /games/drawable/bubble_colourblind_6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/games/drawable/bubble_colourblind_6.gif -------------------------------------------------------------------------------- /games/drawable/bubble_colourblind_7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/games/drawable/bubble_colourblind_7.gif -------------------------------------------------------------------------------- /games/drawable/bubble_colourblind_8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/games/drawable/bubble_colourblind_8.gif -------------------------------------------------------------------------------- /games/drawable/bubble_font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/games/drawable/bubble_font.png -------------------------------------------------------------------------------- /games/drawable/cim_aim_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/games/drawable/cim_aim_small.png -------------------------------------------------------------------------------- /games/drawable/close_eyes.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/games/drawable/close_eyes.gif -------------------------------------------------------------------------------- /games/drawable/compressor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/games/drawable/compressor.png -------------------------------------------------------------------------------- /games/drawable/compressor_body.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/games/drawable/compressor_body.png -------------------------------------------------------------------------------- /games/drawable/fixed_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/games/drawable/fixed_1.png -------------------------------------------------------------------------------- /games/drawable/fixed_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/games/drawable/fixed_2.png -------------------------------------------------------------------------------- /games/drawable/fixed_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/games/drawable/fixed_3.png -------------------------------------------------------------------------------- /games/drawable/fixed_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/games/drawable/fixed_4.png -------------------------------------------------------------------------------- /games/drawable/fixed_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/games/drawable/fixed_5.png -------------------------------------------------------------------------------- /games/drawable/fixed_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/games/drawable/fixed_6.png -------------------------------------------------------------------------------- /games/drawable/frozen_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/games/drawable/frozen_1.png -------------------------------------------------------------------------------- /games/drawable/frozen_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/games/drawable/frozen_2.png -------------------------------------------------------------------------------- /games/drawable/frozen_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/games/drawable/frozen_3.png -------------------------------------------------------------------------------- /games/drawable/frozen_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/games/drawable/frozen_4.png -------------------------------------------------------------------------------- /games/drawable/frozen_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/games/drawable/frozen_5.png -------------------------------------------------------------------------------- /games/drawable/frozen_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/games/drawable/frozen_6.png -------------------------------------------------------------------------------- /games/drawable/frozen_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/games/drawable/frozen_7.png -------------------------------------------------------------------------------- /games/drawable/frozen_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/games/drawable/frozen_8.png -------------------------------------------------------------------------------- /games/drawable/hurry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/games/drawable/hurry.png -------------------------------------------------------------------------------- /games/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/games/drawable/icon.png -------------------------------------------------------------------------------- /games/drawable/launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/games/drawable/launcher.png -------------------------------------------------------------------------------- /games/drawable/life.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/games/drawable/life.gif -------------------------------------------------------------------------------- /games/drawable/lose_panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/games/drawable/lose_panel.png -------------------------------------------------------------------------------- /games/drawable/penguins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/games/drawable/penguins.png -------------------------------------------------------------------------------- /games/drawable/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/games/drawable/splash.png -------------------------------------------------------------------------------- /games/drawable/void_panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/games/drawable/void_panel.png -------------------------------------------------------------------------------- /games/drawable/win_panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/games/drawable/win_panel.png -------------------------------------------------------------------------------- /games/raw/applause.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/games/raw/applause.ogg -------------------------------------------------------------------------------- /games/raw/destroy_group.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/games/raw/destroy_group.ogg -------------------------------------------------------------------------------- /games/raw/hurry.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/games/raw/hurry.ogg -------------------------------------------------------------------------------- /games/raw/launch.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/games/raw/launch.ogg -------------------------------------------------------------------------------- /games/raw/lose.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/games/raw/lose.ogg -------------------------------------------------------------------------------- /games/raw/newroot_solo.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/games/raw/newroot_solo.ogg -------------------------------------------------------------------------------- /games/raw/noh.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/games/raw/noh.ogg -------------------------------------------------------------------------------- /games/raw/rebound.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/games/raw/rebound.ogg -------------------------------------------------------------------------------- /games/raw/stick.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/games/raw/stick.ogg -------------------------------------------------------------------------------- /imageProcessor/android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/imageProcessor/android/AndroidManifest.xml -------------------------------------------------------------------------------- /imageProcessor/gray.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/imageProcessor/gray.PNG -------------------------------------------------------------------------------- /imageProcessor/imageProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/imageProcessor/imageProcessor.cpp -------------------------------------------------------------------------------- /imageProcessor/imageProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/imageProcessor/imageProcessor.h -------------------------------------------------------------------------------- /imageProcessor/imageProcessor.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/imageProcessor/imageProcessor.pro -------------------------------------------------------------------------------- /imageProcessor/imageProcessor.pro.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/imageProcessor/imageProcessor.pro.user -------------------------------------------------------------------------------- /imageProcessor/imageProcessor64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/imageProcessor/imageProcessor64.png -------------------------------------------------------------------------------- /imageProcessor/imageProcessor80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/imageProcessor/imageProcessor80.png -------------------------------------------------------------------------------- /imageProcessor/init.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/imageProcessor/init.PNG -------------------------------------------------------------------------------- /imageProcessor/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/imageProcessor/main.cpp -------------------------------------------------------------------------------- /imageProcessor/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/imageProcessor/main.qml -------------------------------------------------------------------------------- /imageProcessor/negative.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/imageProcessor/negative.PNG -------------------------------------------------------------------------------- /imageProcessor/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/imageProcessor/qml.qrc -------------------------------------------------------------------------------- /imageProcessor/screenshots/dipian.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/imageProcessor/screenshots/dipian.PNG -------------------------------------------------------------------------------- /imageProcessor/screenshots/fudiao.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/imageProcessor/screenshots/fudiao.PNG -------------------------------------------------------------------------------- /imageProcessor/screenshots/heibai.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/imageProcessor/screenshots/heibai.PNG -------------------------------------------------------------------------------- /imageProcessor/screenshots/huidu.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/imageProcessor/screenshots/huidu.PNG -------------------------------------------------------------------------------- /imageProcessor/screenshots/init.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/imageProcessor/screenshots/init.PNG -------------------------------------------------------------------------------- /imageProcessor/screenshots/rouhua.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/imageProcessor/screenshots/rouhua.PNG -------------------------------------------------------------------------------- /imageProcessor/screenshots/ruihua.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/imageProcessor/screenshots/ruihua.PNG -------------------------------------------------------------------------------- /imageProcessor/sharpen.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/imageProcessor/sharpen.PNG -------------------------------------------------------------------------------- /pinchArea/android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/pinchArea/android/AndroidManifest.xml -------------------------------------------------------------------------------- /pinchArea/android_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/pinchArea/android_0.png -------------------------------------------------------------------------------- /pinchArea/android_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/pinchArea/android_1.png -------------------------------------------------------------------------------- /pinchArea/android_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/pinchArea/android_2.png -------------------------------------------------------------------------------- /pinchArea/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/pinchArea/main.cpp -------------------------------------------------------------------------------- /pinchArea/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/pinchArea/main.qml -------------------------------------------------------------------------------- /pinchArea/pinchArea.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/pinchArea/pinchArea.pro -------------------------------------------------------------------------------- /pinchArea/pinchArea.pro.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/pinchArea/pinchArea.pro.user -------------------------------------------------------------------------------- /pinchArea/pinchArea64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/pinchArea/pinchArea64.png -------------------------------------------------------------------------------- /pinchArea/pinchArea80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/pinchArea/pinchArea80.png -------------------------------------------------------------------------------- /pinchArea/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/pinchArea/qml.qrc -------------------------------------------------------------------------------- /qmls/ColorPicker.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/ColorPicker.qml -------------------------------------------------------------------------------- /qmls/anchors/anchors_0.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/anchors/anchors_0.PNG -------------------------------------------------------------------------------- /qmls/anchors/anchors_0.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/anchors/anchors_0.qml -------------------------------------------------------------------------------- /qmls/anchors/anchors_1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/anchors/anchors_1.PNG -------------------------------------------------------------------------------- /qmls/anchors/anchors_1.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/anchors/anchors_1.qml -------------------------------------------------------------------------------- /qmls/animations/behavior_animation.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/animations/behavior_animation.qml -------------------------------------------------------------------------------- /qmls/animations/behavior_animation2.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/animations/behavior_animation2.qml -------------------------------------------------------------------------------- /qmls/animations/changescript_1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/animations/changescript_1.PNG -------------------------------------------------------------------------------- /qmls/animations/changescript_2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/animations/changescript_2.PNG -------------------------------------------------------------------------------- /qmls/animations/changescript_rect.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/animations/changescript_rect.qml -------------------------------------------------------------------------------- /qmls/animations/colorMaker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/animations/colorMaker.js -------------------------------------------------------------------------------- /qmls/animations/link_text.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/animations/link_text.qml -------------------------------------------------------------------------------- /qmls/animations/parallelanimation.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/animations/parallelanimation.qml -------------------------------------------------------------------------------- /qmls/animations/parent_animation.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/animations/parent_animation.qml -------------------------------------------------------------------------------- /qmls/animations/pathanimation.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/animations/pathanimation.qml -------------------------------------------------------------------------------- /qmls/animations/pathanimation_0.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/animations/pathanimation_0.PNG -------------------------------------------------------------------------------- /qmls/animations/pathanimation_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/animations/pathanimation_1.png -------------------------------------------------------------------------------- /qmls/animations/pathanimation_1.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/animations/pathanimation_1.qml -------------------------------------------------------------------------------- /qmls/animations/pathanimation_2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/animations/pathanimation_2.PNG -------------------------------------------------------------------------------- /qmls/animations/propertyanimation_onproperty.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/animations/propertyanimation_onproperty.qml -------------------------------------------------------------------------------- /qmls/animations/propertyanimation_signalhandler.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/animations/propertyanimation_signalhandler.qml -------------------------------------------------------------------------------- /qmls/animations/propertyanimation_standalone.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/animations/propertyanimation_standalone.qml -------------------------------------------------------------------------------- /qmls/animations/propertyanimation_swap.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/animations/propertyanimation_swap.qml -------------------------------------------------------------------------------- /qmls/animations/reanchor_rect.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/animations/reanchor_rect.qml -------------------------------------------------------------------------------- /qmls/animations/reanchor_rect_0.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/animations/reanchor_rect_0.PNG -------------------------------------------------------------------------------- /qmls/animations/reanchor_rect_1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/animations/reanchor_rect_1.PNG -------------------------------------------------------------------------------- /qmls/animations/reanchor_rect_animation.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/animations/reanchor_rect_animation.qml -------------------------------------------------------------------------------- /qmls/animations/red_to_green.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/animations/red_to_green.qml -------------------------------------------------------------------------------- /qmls/animations/reparent_rect.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/animations/reparent_rect.qml -------------------------------------------------------------------------------- /qmls/animations/reparent_rect_0.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/animations/reparent_rect_0.PNG -------------------------------------------------------------------------------- /qmls/animations/reparent_rect_1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/animations/reparent_rect_1.PNG -------------------------------------------------------------------------------- /qmls/animations/reparent_rect_animation.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/animations/reparent_rect_animation.qml -------------------------------------------------------------------------------- /qmls/animations/rotation.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/animations/rotation.qml -------------------------------------------------------------------------------- /qmls/animations/rotation_1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/animations/rotation_1.PNG -------------------------------------------------------------------------------- /qmls/animations/rotation_2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/animations/rotation_2.PNG -------------------------------------------------------------------------------- /qmls/animations/sequentialanimation.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/animations/sequentialanimation.qml -------------------------------------------------------------------------------- /qmls/animations/smoothed_animation.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/animations/smoothed_animation.qml -------------------------------------------------------------------------------- /qmls/animations/spring_animation.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/animations/spring_animation.qml -------------------------------------------------------------------------------- /qmls/animations/square_to_circle.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/animations/square_to_circle.qml -------------------------------------------------------------------------------- /qmls/animations/square_to_circle_0.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/animations/square_to_circle_0.PNG -------------------------------------------------------------------------------- /qmls/animations/square_to_circle_1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/animations/square_to_circle_1.PNG -------------------------------------------------------------------------------- /qmls/animations/square_to_circle_2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/animations/square_to_circle_2.PNG -------------------------------------------------------------------------------- /qmls/animations/state_rect.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/animations/state_rect.qml -------------------------------------------------------------------------------- /qmls/animations/state_rect_explicit_false.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/animations/state_rect_explicit_false.PNG -------------------------------------------------------------------------------- /qmls/animations/state_rect_explict_true.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/animations/state_rect_explict_true.PNG -------------------------------------------------------------------------------- /qmls/animations/state_rect_init.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/animations/state_rect_init.PNG -------------------------------------------------------------------------------- /qmls/animations/state_rect_pressed.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/animations/state_rect_pressed.PNG -------------------------------------------------------------------------------- /qmls/animations/state_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/animations/state_text.png -------------------------------------------------------------------------------- /qmls/animations/state_text.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/animations/state_text.qml -------------------------------------------------------------------------------- /qmls/animations/state_text_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/animations/state_text_1.png -------------------------------------------------------------------------------- /qmls/animations/transition_rect.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/animations/transition_rect.qml -------------------------------------------------------------------------------- /qmls/animations/transition_rect2.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/animations/transition_rect2.qml -------------------------------------------------------------------------------- /qmls/animations/transition_rect3.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/animations/transition_rect3.qml -------------------------------------------------------------------------------- /qmls/animations/transition_rect4.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/animations/transition_rect4.qml -------------------------------------------------------------------------------- /qmls/application_window.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/application_window.qml -------------------------------------------------------------------------------- /qmls/array_modify.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/array_modify.PNG -------------------------------------------------------------------------------- /qmls/array_sub.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/array_sub.PNG -------------------------------------------------------------------------------- /qmls/blue_text_wrap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/blue_text_wrap.png -------------------------------------------------------------------------------- /qmls/blue_text_wrap.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/blue_text_wrap.qml -------------------------------------------------------------------------------- /qmls/button_help.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/button_help.PNG -------------------------------------------------------------------------------- /qmls/button_help_dir.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/button_help_dir.PNG -------------------------------------------------------------------------------- /qmls/button_help_signals.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/button_help_signals.PNG -------------------------------------------------------------------------------- /qmls/button_quit.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/button_quit.PNG -------------------------------------------------------------------------------- /qmls/button_quit.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/button_quit.qml -------------------------------------------------------------------------------- /qmls/button_style.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/button_style.png -------------------------------------------------------------------------------- /qmls/button_style.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/button_style.qml -------------------------------------------------------------------------------- /qmls/button_style_component.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/button_style_component.qml -------------------------------------------------------------------------------- /qmls/c++_types.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/c++_types.PNG -------------------------------------------------------------------------------- /qmls/canvas/canvas_clip.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/canvas/canvas_clip.PNG -------------------------------------------------------------------------------- /qmls/canvas/canvas_clip.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/canvas/canvas_clip.qml -------------------------------------------------------------------------------- /qmls/canvas/canvas_composition.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/canvas/canvas_composition.qml -------------------------------------------------------------------------------- /qmls/canvas/canvas_path.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/canvas/canvas_path.qml -------------------------------------------------------------------------------- /qmls/canvas/canvas_transform.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/canvas/canvas_transform.PNG -------------------------------------------------------------------------------- /qmls/canvas/canvas_transform.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/canvas/canvas_transform.qml -------------------------------------------------------------------------------- /qmls/canvas/dartlike_weapon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/canvas/dartlike_weapon.png -------------------------------------------------------------------------------- /qmls/canvas/draw_complex_path.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/canvas/draw_complex_path.PNG -------------------------------------------------------------------------------- /qmls/canvas/draw_complex_path.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/canvas/draw_complex_path.qml -------------------------------------------------------------------------------- /qmls/canvas/draw_concentric_circles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/canvas/draw_concentric_circles.png -------------------------------------------------------------------------------- /qmls/canvas/draw_concentric_circles.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/canvas/draw_concentric_circles.qml -------------------------------------------------------------------------------- /qmls/canvas/draw_image_data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/canvas/draw_image_data.png -------------------------------------------------------------------------------- /qmls/canvas/draw_image_data.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/canvas/draw_image_data.qml -------------------------------------------------------------------------------- /qmls/canvas/draw_image_item.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/canvas/draw_image_item.qml -------------------------------------------------------------------------------- /qmls/canvas/draw_local_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/canvas/draw_local_image.png -------------------------------------------------------------------------------- /qmls/canvas/draw_local_image.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/canvas/draw_local_image.qml -------------------------------------------------------------------------------- /qmls/canvas/draw_multi_images.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/canvas/draw_multi_images.png -------------------------------------------------------------------------------- /qmls/canvas/draw_multi_images.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/canvas/draw_multi_images.qml -------------------------------------------------------------------------------- /qmls/canvas/draw_rect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/canvas/draw_rect.png -------------------------------------------------------------------------------- /qmls/canvas/draw_rect.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/canvas/draw_rect.qml -------------------------------------------------------------------------------- /qmls/canvas/draw_rect_gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/canvas/draw_rect_gradient.png -------------------------------------------------------------------------------- /qmls/canvas/draw_rect_gradient.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/canvas/draw_rect_gradient.qml -------------------------------------------------------------------------------- /qmls/canvas/draw_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/canvas/draw_text.png -------------------------------------------------------------------------------- /qmls/canvas/draw_text.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/canvas/draw_text.qml -------------------------------------------------------------------------------- /qmls/canvas/draw_triangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/canvas/draw_triangle.png -------------------------------------------------------------------------------- /qmls/canvas/draw_triangle.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/canvas/draw_triangle.qml -------------------------------------------------------------------------------- /qmls/canvas/knife.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/canvas/knife.png -------------------------------------------------------------------------------- /qmls/comic_role.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/comic_role.png -------------------------------------------------------------------------------- /qmls/component_file.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/component_file.PNG -------------------------------------------------------------------------------- /qmls/component_file.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/component_file.qml -------------------------------------------------------------------------------- /qmls/connections.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/connections.PNG -------------------------------------------------------------------------------- /qmls/connections.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/connections.qml -------------------------------------------------------------------------------- /qmls/controls/call1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/controls/call1.png -------------------------------------------------------------------------------- /qmls/controls/call2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/controls/call2.png -------------------------------------------------------------------------------- /qmls/controls/call3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/controls/call3.png -------------------------------------------------------------------------------- /qmls/controls/checkbox.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/controls/checkbox.qml -------------------------------------------------------------------------------- /qmls/controls/combobox_demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/controls/combobox_demo.png -------------------------------------------------------------------------------- /qmls/controls/combobox_demo.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/controls/combobox_demo.qml -------------------------------------------------------------------------------- /qmls/controls/combobox_demo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/controls/combobox_demo2.png -------------------------------------------------------------------------------- /qmls/controls/preferred_mobile_os.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/controls/preferred_mobile_os.png -------------------------------------------------------------------------------- /qmls/controls/preferred_mobile_os.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/controls/preferred_mobile_os.qml -------------------------------------------------------------------------------- /qmls/controls/preferred_movies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/controls/preferred_movies.png -------------------------------------------------------------------------------- /qmls/controls/preferred_movies.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/controls/preferred_movies.qml -------------------------------------------------------------------------------- /qmls/controls/preferred_movies_groupbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/controls/preferred_movies_groupbox.png -------------------------------------------------------------------------------- /qmls/controls/preferred_movies_groupbox.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/controls/preferred_movies_groupbox.qml -------------------------------------------------------------------------------- /qmls/controls/progressbar_demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/controls/progressbar_demo.png -------------------------------------------------------------------------------- /qmls/controls/progressbar_demo.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/controls/progressbar_demo.qml -------------------------------------------------------------------------------- /qmls/controls/slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/controls/slider.png -------------------------------------------------------------------------------- /qmls/controls/slider.tsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/controls/slider.tsp -------------------------------------------------------------------------------- /qmls/controls/slider_demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/controls/slider_demo.png -------------------------------------------------------------------------------- /qmls/controls/slider_demo.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/controls/slider_demo.qml -------------------------------------------------------------------------------- /qmls/controls/tabview_simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/controls/tabview_simple.png -------------------------------------------------------------------------------- /qmls/controls/tabview_simple.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/controls/tabview_simple.qml -------------------------------------------------------------------------------- /qmls/controls/tabview_style.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/controls/tabview_style.png -------------------------------------------------------------------------------- /qmls/controls/tabview_style.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/controls/tabview_style.qml -------------------------------------------------------------------------------- /qmls/controls/taskmanager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/controls/taskmanager.png -------------------------------------------------------------------------------- /qmls/controls/textinput.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/controls/textinput.qml -------------------------------------------------------------------------------- /qmls/countdown.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/countdown.qml -------------------------------------------------------------------------------- /qmls/countdown_0.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/countdown_0.PNG -------------------------------------------------------------------------------- /qmls/countdown_1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/countdown_1.PNG -------------------------------------------------------------------------------- /qmls/countdown_2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/countdown_2.PNG -------------------------------------------------------------------------------- /qmls/cplusplus_types.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/cplusplus_types.png -------------------------------------------------------------------------------- /qmls/cplusplus_types.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/cplusplus_types.qml -------------------------------------------------------------------------------- /qmls/delete_dynamic_object.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/delete_dynamic_object.PNG -------------------------------------------------------------------------------- /qmls/delete_dynamic_object.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/delete_dynamic_object.qml -------------------------------------------------------------------------------- /qmls/delete_dynamic_object2.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/delete_dynamic_object2.qml -------------------------------------------------------------------------------- /qmls/draw_rect.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/draw_rect.qml -------------------------------------------------------------------------------- /qmls/dynamic_component.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/dynamic_component.qml -------------------------------------------------------------------------------- /qmls/dynamic_loader.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/dynamic_loader.PNG -------------------------------------------------------------------------------- /qmls/dynamic_loader_2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/dynamic_loader_2.PNG -------------------------------------------------------------------------------- /qmls/embedded_comp.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/embedded_comp.qml -------------------------------------------------------------------------------- /qmls/handle_key.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/handle_key.qml -------------------------------------------------------------------------------- /qmls/handle_key_0.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/handle_key_0.PNG -------------------------------------------------------------------------------- /qmls/handle_key_1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/handle_key_1.PNG -------------------------------------------------------------------------------- /qmls/handle_mouse.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/handle_mouse.qml -------------------------------------------------------------------------------- /qmls/handle_mouse_0.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/handle_mouse_0.PNG -------------------------------------------------------------------------------- /qmls/handle_mouse_1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/handle_mouse_1.PNG -------------------------------------------------------------------------------- /qmls/handle_multipoint.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/handle_multipoint.qml -------------------------------------------------------------------------------- /qmls/hello_world.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/hello_world.PNG -------------------------------------------------------------------------------- /qmls/hello_world.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/hello_world.qml -------------------------------------------------------------------------------- /qmls/id_check.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/id_check.qml -------------------------------------------------------------------------------- /qmls/json.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/json.qml -------------------------------------------------------------------------------- /qmls/key_action.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/key_action.png -------------------------------------------------------------------------------- /qmls/key_action.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/key_action.qml -------------------------------------------------------------------------------- /qmls/layouts/ColorPicker.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/layouts/ColorPicker.qml -------------------------------------------------------------------------------- /qmls/layouts/anchors_layout.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/layouts/anchors_layout.PNG -------------------------------------------------------------------------------- /qmls/layouts/anchors_layout.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/layouts/anchors_layout.qml -------------------------------------------------------------------------------- /qmls/layouts/column.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/layouts/column.PNG -------------------------------------------------------------------------------- /qmls/layouts/column.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/layouts/column.qml -------------------------------------------------------------------------------- /qmls/layouts/column_layout.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/layouts/column_layout.PNG -------------------------------------------------------------------------------- /qmls/layouts/column_layout.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/layouts/column_layout.qml -------------------------------------------------------------------------------- /qmls/layouts/dpi.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/layouts/dpi.qml -------------------------------------------------------------------------------- /qmls/layouts/flow.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/layouts/flow.PNG -------------------------------------------------------------------------------- /qmls/layouts/flow.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/layouts/flow.qml -------------------------------------------------------------------------------- /qmls/layouts/flow_layout_2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/layouts/flow_layout_2.PNG -------------------------------------------------------------------------------- /qmls/layouts/grid.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/layouts/grid.PNG -------------------------------------------------------------------------------- /qmls/layouts/grid.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/layouts/grid.qml -------------------------------------------------------------------------------- /qmls/layouts/grid_2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/layouts/grid_2.PNG -------------------------------------------------------------------------------- /qmls/layouts/grid_layout.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/layouts/grid_layout.PNG -------------------------------------------------------------------------------- /qmls/layouts/grid_layout.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/layouts/grid_layout.qml -------------------------------------------------------------------------------- /qmls/layouts/nested_positioner.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/layouts/nested_positioner.PNG -------------------------------------------------------------------------------- /qmls/layouts/nested_positioner.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/layouts/nested_positioner.qml -------------------------------------------------------------------------------- /qmls/layouts/nested_positioner_2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/layouts/nested_positioner_2.PNG -------------------------------------------------------------------------------- /qmls/layouts/row.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/layouts/row.PNG -------------------------------------------------------------------------------- /qmls/layouts/row.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/layouts/row.qml -------------------------------------------------------------------------------- /qmls/layouts/row_layout.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/layouts/row_layout.PNG -------------------------------------------------------------------------------- /qmls/layouts/row_layout.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/layouts/row_layout.qml -------------------------------------------------------------------------------- /qmls/list_type.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/list_type.png -------------------------------------------------------------------------------- /qmls/loader_component_file.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/loader_component_file.qml -------------------------------------------------------------------------------- /qmls/loader_focus.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/loader_focus.PNG -------------------------------------------------------------------------------- /qmls/loader_focus.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/loader_focus.qml -------------------------------------------------------------------------------- /qmls/loader_size.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/loader_size.PNG -------------------------------------------------------------------------------- /qmls/loader_test.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/loader_test.qml -------------------------------------------------------------------------------- /qmls/model-view/CPlusPlusListModel/CPlusPlusListModel.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/model-view/CPlusPlusListModel/CPlusPlusListModel.pro -------------------------------------------------------------------------------- /qmls/model-view/CPlusPlusListModel/CPlusPlusListModel.pro.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/model-view/CPlusPlusListModel/CPlusPlusListModel.pro.user -------------------------------------------------------------------------------- /qmls/model-view/CPlusPlusListModel/CPlusPlusListModel64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/model-view/CPlusPlusListModel/CPlusPlusListModel64.png -------------------------------------------------------------------------------- /qmls/model-view/CPlusPlusListModel/CPlusPlusListModel80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/model-view/CPlusPlusListModel/CPlusPlusListModel80.png -------------------------------------------------------------------------------- /qmls/model-view/CPlusPlusListModel/cmodel.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/model-view/CPlusPlusListModel/cmodel.qrc -------------------------------------------------------------------------------- /qmls/model-view/CPlusPlusListModel/deployment.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/model-view/CPlusPlusListModel/deployment.pri -------------------------------------------------------------------------------- /qmls/model-view/CPlusPlusListModel/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/model-view/CPlusPlusListModel/main.cpp -------------------------------------------------------------------------------- /qmls/model-view/CPlusPlusListModel/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/model-view/CPlusPlusListModel/main.qml -------------------------------------------------------------------------------- /qmls/model-view/CPlusPlusListModel/main_234.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/model-view/CPlusPlusListModel/main_234.cpp -------------------------------------------------------------------------------- /qmls/model-view/CPlusPlusListModel/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/model-view/CPlusPlusListModel/qml.qrc -------------------------------------------------------------------------------- /qmls/model-view/CPlusPlusListModel/res/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/model-view/CPlusPlusListModel/res/main.qml -------------------------------------------------------------------------------- /qmls/model-view/CPlusPlusListModel/res/videos.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/model-view/CPlusPlusListModel/res/videos.xml -------------------------------------------------------------------------------- /qmls/model-view/CPlusPlusListModel/screenshots/final_project.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/model-view/CPlusPlusListModel/screenshots/final_project.PNG -------------------------------------------------------------------------------- /qmls/model-view/CPlusPlusListModel/screenshots/new_project.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/model-view/CPlusPlusListModel/screenshots/new_project.PNG -------------------------------------------------------------------------------- /qmls/model-view/CPlusPlusListModel/screenshots/project.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/model-view/CPlusPlusListModel/screenshots/project.PNG -------------------------------------------------------------------------------- /qmls/model-view/CPlusPlusListModel/screenshots/run.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/model-view/CPlusPlusListModel/screenshots/run.PNG -------------------------------------------------------------------------------- /qmls/model-view/CPlusPlusListModel/videoListModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/model-view/CPlusPlusListModel/videoListModel.cpp -------------------------------------------------------------------------------- /qmls/model-view/CPlusPlusListModel/videoListModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/model-view/CPlusPlusListModel/videoListModel.h -------------------------------------------------------------------------------- /qmls/model-view/CPlusPlusListModel/videos.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/model-view/CPlusPlusListModel/videos.xml -------------------------------------------------------------------------------- /qmls/model-view/pathCubic_canvas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/model-view/pathCubic_canvas.png -------------------------------------------------------------------------------- /qmls/model-view/pathCubic_canvas.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/model-view/pathCubic_canvas.qml -------------------------------------------------------------------------------- /qmls/model-view/pathCurve_canvas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/model-view/pathCurve_canvas.png -------------------------------------------------------------------------------- /qmls/model-view/pathCurve_canvas.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/model-view/pathCurve_canvas.qml -------------------------------------------------------------------------------- /qmls/model-view/pathQuad_canvas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/model-view/pathQuad_canvas.png -------------------------------------------------------------------------------- /qmls/model-view/pathQuad_canvas.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/model-view/pathQuad_canvas.qml -------------------------------------------------------------------------------- /qmls/model-view/patharc.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/model-view/patharc.PNG -------------------------------------------------------------------------------- /qmls/model-view/pathview_simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/model-view/pathview_simple.png -------------------------------------------------------------------------------- /qmls/model-view/pathview_simple.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/model-view/pathview_simple.qml -------------------------------------------------------------------------------- /qmls/model-view/pathview_simple_percent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/model-view/pathview_simple_percent.png -------------------------------------------------------------------------------- /qmls/model-view/pathview_simple_percent2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/model-view/pathview_simple_percent2.png -------------------------------------------------------------------------------- /qmls/model-view/phone_list_animation.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/model-view/phone_list_animation.qml -------------------------------------------------------------------------------- /qmls/model-view/phone_list_change.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/model-view/phone_list_change.qml -------------------------------------------------------------------------------- /qmls/model-view/phone_list_change_1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/model-view/phone_list_change_1.PNG -------------------------------------------------------------------------------- /qmls/model-view/phone_list_change_2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/model-view/phone_list_change_2.PNG -------------------------------------------------------------------------------- /qmls/model-view/phone_list_footer.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/model-view/phone_list_footer.PNG -------------------------------------------------------------------------------- /qmls/model-view/phone_list_footer.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/model-view/phone_list_footer.qml -------------------------------------------------------------------------------- /qmls/model-view/phone_list_header.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/model-view/phone_list_header.PNG -------------------------------------------------------------------------------- /qmls/model-view/phone_list_header.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/model-view/phone_list_header.qml -------------------------------------------------------------------------------- /qmls/model-view/phone_list_section.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/model-view/phone_list_section.PNG -------------------------------------------------------------------------------- /qmls/model-view/phone_list_section.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/model-view/phone_list_section.qml -------------------------------------------------------------------------------- /qmls/model-view/phone_list_simple.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/model-view/phone_list_simple.PNG -------------------------------------------------------------------------------- /qmls/model-view/phone_list_simple.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/model-view/phone_list_simple.qml -------------------------------------------------------------------------------- /qmls/model-view/phone_table_delegate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/model-view/phone_table_delegate.png -------------------------------------------------------------------------------- /qmls/model-view/phone_table_delegate.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/model-view/phone_table_delegate.qml -------------------------------------------------------------------------------- /qmls/model-view/phone_table_simple.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/model-view/phone_table_simple.PNG -------------------------------------------------------------------------------- /qmls/model-view/phone_table_simple.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/model-view/phone_table_simple.qml -------------------------------------------------------------------------------- /qmls/model-view/repeater_listmodel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/model-view/repeater_listmodel.png -------------------------------------------------------------------------------- /qmls/model-view/repeater_listmodel.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/model-view/repeater_listmodel.qml -------------------------------------------------------------------------------- /qmls/model-view/repeater_number.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/model-view/repeater_number.png -------------------------------------------------------------------------------- /qmls/model-view/repeater_number.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/model-view/repeater_number.qml -------------------------------------------------------------------------------- /qmls/model-view/repeater_objects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/model-view/repeater_objects.png -------------------------------------------------------------------------------- /qmls/model-view/repeater_objects.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/model-view/repeater_objects.qml -------------------------------------------------------------------------------- /qmls/model-view/repeater_stringlist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/model-view/repeater_stringlist.png -------------------------------------------------------------------------------- /qmls/model-view/repeater_stringlist.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/model-view/repeater_stringlist.qml -------------------------------------------------------------------------------- /qmls/model-view/video_grid_xml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/model-view/video_grid_xml.png -------------------------------------------------------------------------------- /qmls/model-view/video_grid_xml.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/model-view/video_grid_xml.qml -------------------------------------------------------------------------------- /qmls/model-view/video_list_xml.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/model-view/video_list_xml.PNG -------------------------------------------------------------------------------- /qmls/model-view/video_list_xml.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/model-view/video_list_xml.qml -------------------------------------------------------------------------------- /qmls/model-view/video_path_cards_xml.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/model-view/video_path_cards_xml.qml -------------------------------------------------------------------------------- /qmls/model-view/video_path_detail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/model-view/video_path_detail.png -------------------------------------------------------------------------------- /qmls/model-view/video_path_xml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/model-view/video_path_xml.png -------------------------------------------------------------------------------- /qmls/model-view/video_path_xml.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/model-view/video_path_xml.qml -------------------------------------------------------------------------------- /qmls/model-view/videos.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/model-view/videos.xml -------------------------------------------------------------------------------- /qmls/multimedia/FlatButton.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/multimedia/FlatButton.qml -------------------------------------------------------------------------------- /qmls/multimedia/ic_ff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/multimedia/ic_ff.png -------------------------------------------------------------------------------- /qmls/multimedia/ic_pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/multimedia/ic_pause.png -------------------------------------------------------------------------------- /qmls/multimedia/ic_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/multimedia/ic_play.png -------------------------------------------------------------------------------- /qmls/multimedia/ic_rew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/multimedia/ic_rew.png -------------------------------------------------------------------------------- /qmls/multimedia/ic_stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/multimedia/ic_stop.png -------------------------------------------------------------------------------- /qmls/multimedia/simple_music.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/multimedia/simple_music.qml -------------------------------------------------------------------------------- /qmls/multimedia/simple_music_player.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/multimedia/simple_music_player.png -------------------------------------------------------------------------------- /qmls/multimedia/simple_music_player.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/multimedia/simple_music_player.qml -------------------------------------------------------------------------------- /qmls/multimedia/simple_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/multimedia/simple_video.png -------------------------------------------------------------------------------- /qmls/multimedia/simple_video.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/multimedia/simple_video.qml -------------------------------------------------------------------------------- /qmls/multimedia/wangjie_game_and_dream.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/multimedia/wangjie_game_and_dream.mp3 -------------------------------------------------------------------------------- /qmls/my_signal.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/my_signal.qml -------------------------------------------------------------------------------- /qmls/my_signal_1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/my_signal_1.PNG -------------------------------------------------------------------------------- /qmls/my_signal_2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/my_signal_2.PNG -------------------------------------------------------------------------------- /qmls/network/remote.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/network/remote.qml -------------------------------------------------------------------------------- /qmls/network/videoresp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/network/videoresp.xml -------------------------------------------------------------------------------- /qmls/network/xmlhttp.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/network/xmlhttp.qml -------------------------------------------------------------------------------- /qmls/network/xmlhttp_get.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/network/xmlhttp_get.png -------------------------------------------------------------------------------- /qmls/network/xmlhttp_get.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/network/xmlhttp_get.qml -------------------------------------------------------------------------------- /qmls/network/xmlhttp_get_xml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/network/xmlhttp_get_xml.png -------------------------------------------------------------------------------- /qmls/network_image.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/network_image.qml -------------------------------------------------------------------------------- /qmls/object_to_json.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/object_to_json.png -------------------------------------------------------------------------------- /qmls/object_to_json.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/object_to_json.qml -------------------------------------------------------------------------------- /qmls/parent_test.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/parent_test.qml -------------------------------------------------------------------------------- /qmls/property_signal.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/property_signal.PNG -------------------------------------------------------------------------------- /qmls/property_signal.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/property_signal.qml -------------------------------------------------------------------------------- /qmls/qt_create_component.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/qt_create_component.qml -------------------------------------------------------------------------------- /qmls/qt_create_component_0.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/qt_create_component_0.PNG -------------------------------------------------------------------------------- /qmls/qt_create_component_1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/qt_create_component_1.PNG -------------------------------------------------------------------------------- /qmls/rich_blue_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/rich_blue_text.png -------------------------------------------------------------------------------- /qmls/rich_blue_text.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/rich_blue_text.qml -------------------------------------------------------------------------------- /qmls/selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/selected.png -------------------------------------------------------------------------------- /qmls/show_net_image.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/show_net_image.qml -------------------------------------------------------------------------------- /qmls/show_net_image_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/show_net_image_0.png -------------------------------------------------------------------------------- /qmls/show_net_image_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/show_net_image_1.png -------------------------------------------------------------------------------- /qmls/show_type.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/show_type.PNG -------------------------------------------------------------------------------- /qmls/show_type.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/show_type.qml -------------------------------------------------------------------------------- /qmls/style_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/style_text.png -------------------------------------------------------------------------------- /qmls/style_text.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/style_text.qml -------------------------------------------------------------------------------- /qmls/type_date.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/type_date.PNG -------------------------------------------------------------------------------- /qmls/typeof.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/typeof.qml -------------------------------------------------------------------------------- /qmls/z_opacity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/z_opacity.png -------------------------------------------------------------------------------- /qmls/z_opacity.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qmls/z_opacity.qml -------------------------------------------------------------------------------- /qt_quick_app_hello_0.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qt_quick_app_hello_0.PNG -------------------------------------------------------------------------------- /qt_quick_app_hello_1-1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qt_quick_app_hello_1-1.PNG -------------------------------------------------------------------------------- /qt_quick_app_hello_1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qt_quick_app_hello_1.PNG -------------------------------------------------------------------------------- /qt_quick_app_hello_2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qt_quick_app_hello_2.PNG -------------------------------------------------------------------------------- /qt_quick_app_hello_3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qt_quick_app_hello_3.PNG -------------------------------------------------------------------------------- /qt_quick_app_hello_4.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/qt_quick_app_hello_4.PNG -------------------------------------------------------------------------------- /simpleCamera/FlatButton.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/simpleCamera/FlatButton.qml -------------------------------------------------------------------------------- /simpleCamera/android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/simpleCamera/android/AndroidManifest.xml -------------------------------------------------------------------------------- /simpleCamera/deployment.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/simpleCamera/deployment.pri -------------------------------------------------------------------------------- /simpleCamera/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/simpleCamera/main.cpp -------------------------------------------------------------------------------- /simpleCamera/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/simpleCamera/main.qml -------------------------------------------------------------------------------- /simpleCamera/pc_captured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/simpleCamera/pc_captured.png -------------------------------------------------------------------------------- /simpleCamera/pc_run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/simpleCamera/pc_run.png -------------------------------------------------------------------------------- /simpleCamera/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/simpleCamera/qml.qrc -------------------------------------------------------------------------------- /simpleCamera/res/control_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/simpleCamera/res/control_bar.png -------------------------------------------------------------------------------- /simpleCamera/res/ic_cam_shutter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/simpleCamera/res/ic_cam_shutter.png -------------------------------------------------------------------------------- /simpleCamera/res/ic_camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/simpleCamera/res/ic_camera.png -------------------------------------------------------------------------------- /simpleCamera/res/ic_launcher_camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/simpleCamera/res/ic_launcher_camera.png -------------------------------------------------------------------------------- /simpleCamera/res/ic_menu_stat_action.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/simpleCamera/res/ic_menu_stat_action.png -------------------------------------------------------------------------------- /simpleCamera/res/ic_menu_stat_auto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/simpleCamera/res/ic_menu_stat_auto.png -------------------------------------------------------------------------------- /simpleCamera/res/ic_menu_stat_flash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/simpleCamera/res/ic_menu_stat_flash.png -------------------------------------------------------------------------------- /simpleCamera/res/ic_menu_stat_flash_auto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/simpleCamera/res/ic_menu_stat_flash_auto.png -------------------------------------------------------------------------------- /simpleCamera/res/ic_menu_stat_flash_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/simpleCamera/res/ic_menu_stat_flash_off.png -------------------------------------------------------------------------------- /simpleCamera/res/ic_menu_stat_landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/simpleCamera/res/ic_menu_stat_landscape.png -------------------------------------------------------------------------------- /simpleCamera/res/ic_menu_stat_macro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/simpleCamera/res/ic_menu_stat_macro.png -------------------------------------------------------------------------------- /simpleCamera/res/ic_menu_stat_night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/simpleCamera/res/ic_menu_stat_night.png -------------------------------------------------------------------------------- /simpleCamera/res/ic_menu_stat_portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/simpleCamera/res/ic_menu_stat_portrait.png -------------------------------------------------------------------------------- /simpleCamera/res/ic_menu_stat_sunset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/simpleCamera/res/ic_menu_stat_sunset.png -------------------------------------------------------------------------------- /simpleCamera/res/ic_zoom_in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/simpleCamera/res/ic_zoom_in.png -------------------------------------------------------------------------------- /simpleCamera/res/ic_zoom_out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/simpleCamera/res/ic_zoom_out.png -------------------------------------------------------------------------------- /simpleCamera/screenshots/豌豆荚截图20140905092434.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/simpleCamera/screenshots/豌豆荚截图20140905092434.png -------------------------------------------------------------------------------- /simpleCamera/screenshots/豌豆荚截图20140905092546.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/simpleCamera/screenshots/豌豆荚截图20140905092546.png -------------------------------------------------------------------------------- /simpleCamera/screenshots/豌豆荚截图20140905092602.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/simpleCamera/screenshots/豌豆荚截图20140905092602.png -------------------------------------------------------------------------------- /simpleCamera/screenshots/豌豆荚截图20140905093408.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/simpleCamera/screenshots/豌豆荚截图20140905093408.png -------------------------------------------------------------------------------- /simpleCamera/screenshots/豌豆荚截图20140905093431.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/simpleCamera/screenshots/豌豆荚截图20140905093431.png -------------------------------------------------------------------------------- /simpleCamera/screenshots/豌豆荚截图20140905095957.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/simpleCamera/screenshots/豌豆荚截图20140905095957.png -------------------------------------------------------------------------------- /simpleCamera/screenshots/豌豆荚截图20140905100020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/simpleCamera/screenshots/豌豆荚截图20140905100020.png -------------------------------------------------------------------------------- /simpleCamera/simpleCamera.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/simpleCamera/simpleCamera.pro -------------------------------------------------------------------------------- /simpleCamera/simpleCamera.pro.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foruok/qtquick/HEAD/simpleCamera/simpleCamera.pro.user --------------------------------------------------------------------------------