├── .gitattributes ├── .gitignore ├── LICENSE ├── PictureMatching3 ├── PictureMatching3.pro ├── ThreeDog │ ├── tdabstractbutton.cpp │ ├── tdabstractbutton.h │ ├── tdcheckbox.cpp │ ├── tdcheckbox.h │ ├── tdfadeoutwidget.cpp │ ├── tdfadeoutwidget.h │ ├── tdlistwidget.cpp │ ├── tdlistwidget.h │ ├── tdmenubutton.cpp │ ├── tdmenubutton.h │ ├── tdpushbutton.cpp │ ├── tdpushbutton.h │ ├── tdradiobutton.cpp │ ├── tdradiobutton.h │ ├── tdradiobuttongroup.cpp │ ├── tdradiobuttongroup.h │ ├── tdscrollarea.cpp │ ├── tdscrollarea.h │ ├── tdslider.cpp │ ├── tdslider.h │ ├── tdstackbutton.cpp │ ├── tdstackbutton.h │ ├── tdtoolbar.cpp │ ├── tdtoolbar.h │ ├── tdwidget.cpp │ └── tdwidget.h ├── gamemain.cpp ├── gamemain.h ├── img.qrc ├── img │ ├── 10_hover.png │ ├── 10_normal.png │ ├── 10_selected.png │ ├── 11_hover.png │ ├── 11_normal.png │ ├── 11_selected.png │ ├── 12_hover.png │ ├── 12_normal.png │ ├── 12_selected.png │ ├── 13_hover.png │ ├── 13_normal.png │ ├── 13_selected.png │ ├── 14_hover.png │ ├── 14_normal.png │ ├── 14_selected.png │ ├── 1_hover.png │ ├── 1_normal.png │ ├── 1_selected.png │ ├── 2_hover.png │ ├── 2_normal.png │ ├── 2_selected.png │ ├── 3_hover.png │ ├── 3_normal.png │ ├── 3_selected.png │ ├── 4_hover.png │ ├── 4_normal.png │ ├── 4_selected.png │ ├── 5_hover.png │ ├── 5_normal.png │ ├── 5_selected.png │ ├── 6_hover.png │ ├── 6_normal.png │ ├── 6_selected.png │ ├── 7_hover.png │ ├── 7_normal.png │ ├── 7_selected.png │ ├── 8_hover.png │ ├── 8_normal.png │ ├── 8_selected.png │ ├── 9_hover.png │ ├── 9_normal.png │ ├── 9_selected.png │ ├── begin_hover.png │ ├── begin_normal.png │ ├── begin_press.png │ ├── daohang.png │ ├── defeat.png │ ├── exit_hover.png │ ├── exit_normal.png │ ├── exit_press.png │ ├── game_main.png │ ├── game_main_with_logo.png │ ├── logo.png │ ├── prompt_hover.png │ ├── prompt_normal.png │ ├── prompt_press.png │ ├── reorder_hover.png │ ├── reorder_normal.png │ ├── reorder_press.png │ ├── restart_hover.png │ ├── restart_normal.png │ ├── restart_press.png │ ├── victory.png │ └── welcome.png ├── main.cpp ├── myitem.cpp ├── myitem.h ├── widget.cpp └── widget.h ├── README.md └── show ├── show_1.jpg ├── show_2.jpg ├── show_3.jpg └── show_4.jpg /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThreeDog/PictureMatching/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThreeDog/PictureMatching/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThreeDog/PictureMatching/HEAD/LICENSE -------------------------------------------------------------------------------- /PictureMatching3/PictureMatching3.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThreeDog/PictureMatching/HEAD/PictureMatching3/PictureMatching3.pro -------------------------------------------------------------------------------- /PictureMatching3/ThreeDog/tdabstractbutton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThreeDog/PictureMatching/HEAD/PictureMatching3/ThreeDog/tdabstractbutton.cpp -------------------------------------------------------------------------------- /PictureMatching3/ThreeDog/tdabstractbutton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThreeDog/PictureMatching/HEAD/PictureMatching3/ThreeDog/tdabstractbutton.h -------------------------------------------------------------------------------- /PictureMatching3/ThreeDog/tdcheckbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThreeDog/PictureMatching/HEAD/PictureMatching3/ThreeDog/tdcheckbox.cpp -------------------------------------------------------------------------------- /PictureMatching3/ThreeDog/tdcheckbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThreeDog/PictureMatching/HEAD/PictureMatching3/ThreeDog/tdcheckbox.h -------------------------------------------------------------------------------- /PictureMatching3/ThreeDog/tdfadeoutwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThreeDog/PictureMatching/HEAD/PictureMatching3/ThreeDog/tdfadeoutwidget.cpp -------------------------------------------------------------------------------- /PictureMatching3/ThreeDog/tdfadeoutwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThreeDog/PictureMatching/HEAD/PictureMatching3/ThreeDog/tdfadeoutwidget.h -------------------------------------------------------------------------------- /PictureMatching3/ThreeDog/tdlistwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThreeDog/PictureMatching/HEAD/PictureMatching3/ThreeDog/tdlistwidget.cpp -------------------------------------------------------------------------------- /PictureMatching3/ThreeDog/tdlistwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThreeDog/PictureMatching/HEAD/PictureMatching3/ThreeDog/tdlistwidget.h -------------------------------------------------------------------------------- /PictureMatching3/ThreeDog/tdmenubutton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThreeDog/PictureMatching/HEAD/PictureMatching3/ThreeDog/tdmenubutton.cpp -------------------------------------------------------------------------------- /PictureMatching3/ThreeDog/tdmenubutton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThreeDog/PictureMatching/HEAD/PictureMatching3/ThreeDog/tdmenubutton.h -------------------------------------------------------------------------------- /PictureMatching3/ThreeDog/tdpushbutton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThreeDog/PictureMatching/HEAD/PictureMatching3/ThreeDog/tdpushbutton.cpp -------------------------------------------------------------------------------- /PictureMatching3/ThreeDog/tdpushbutton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThreeDog/PictureMatching/HEAD/PictureMatching3/ThreeDog/tdpushbutton.h -------------------------------------------------------------------------------- /PictureMatching3/ThreeDog/tdradiobutton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThreeDog/PictureMatching/HEAD/PictureMatching3/ThreeDog/tdradiobutton.cpp -------------------------------------------------------------------------------- /PictureMatching3/ThreeDog/tdradiobutton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThreeDog/PictureMatching/HEAD/PictureMatching3/ThreeDog/tdradiobutton.h -------------------------------------------------------------------------------- /PictureMatching3/ThreeDog/tdradiobuttongroup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThreeDog/PictureMatching/HEAD/PictureMatching3/ThreeDog/tdradiobuttongroup.cpp -------------------------------------------------------------------------------- /PictureMatching3/ThreeDog/tdradiobuttongroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThreeDog/PictureMatching/HEAD/PictureMatching3/ThreeDog/tdradiobuttongroup.h -------------------------------------------------------------------------------- /PictureMatching3/ThreeDog/tdscrollarea.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThreeDog/PictureMatching/HEAD/PictureMatching3/ThreeDog/tdscrollarea.cpp -------------------------------------------------------------------------------- /PictureMatching3/ThreeDog/tdscrollarea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThreeDog/PictureMatching/HEAD/PictureMatching3/ThreeDog/tdscrollarea.h -------------------------------------------------------------------------------- /PictureMatching3/ThreeDog/tdslider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThreeDog/PictureMatching/HEAD/PictureMatching3/ThreeDog/tdslider.cpp -------------------------------------------------------------------------------- /PictureMatching3/ThreeDog/tdslider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThreeDog/PictureMatching/HEAD/PictureMatching3/ThreeDog/tdslider.h -------------------------------------------------------------------------------- /PictureMatching3/ThreeDog/tdstackbutton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThreeDog/PictureMatching/HEAD/PictureMatching3/ThreeDog/tdstackbutton.cpp -------------------------------------------------------------------------------- /PictureMatching3/ThreeDog/tdstackbutton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThreeDog/PictureMatching/HEAD/PictureMatching3/ThreeDog/tdstackbutton.h -------------------------------------------------------------------------------- /PictureMatching3/ThreeDog/tdtoolbar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThreeDog/PictureMatching/HEAD/PictureMatching3/ThreeDog/tdtoolbar.cpp -------------------------------------------------------------------------------- /PictureMatching3/ThreeDog/tdtoolbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThreeDog/PictureMatching/HEAD/PictureMatching3/ThreeDog/tdtoolbar.h -------------------------------------------------------------------------------- /PictureMatching3/ThreeDog/tdwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThreeDog/PictureMatching/HEAD/PictureMatching3/ThreeDog/tdwidget.cpp -------------------------------------------------------------------------------- /PictureMatching3/ThreeDog/tdwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThreeDog/PictureMatching/HEAD/PictureMatching3/ThreeDog/tdwidget.h -------------------------------------------------------------------------------- /PictureMatching3/gamemain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThreeDog/PictureMatching/HEAD/PictureMatching3/gamemain.cpp -------------------------------------------------------------------------------- /PictureMatching3/gamemain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThreeDog/PictureMatching/HEAD/PictureMatching3/gamemain.h -------------------------------------------------------------------------------- /PictureMatching3/img.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThreeDog/PictureMatching/HEAD/PictureMatching3/img.qrc -------------------------------------------------------------------------------- /PictureMatching3/img/10_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThreeDog/PictureMatching/HEAD/PictureMatching3/img/10_hover.png -------------------------------------------------------------------------------- /PictureMatching3/img/10_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThreeDog/PictureMatching/HEAD/PictureMatching3/img/10_normal.png -------------------------------------------------------------------------------- /PictureMatching3/img/10_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThreeDog/PictureMatching/HEAD/PictureMatching3/img/10_selected.png -------------------------------------------------------------------------------- /PictureMatching3/img/11_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThreeDog/PictureMatching/HEAD/PictureMatching3/img/11_hover.png -------------------------------------------------------------------------------- /PictureMatching3/img/11_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThreeDog/PictureMatching/HEAD/PictureMatching3/img/11_normal.png -------------------------------------------------------------------------------- /PictureMatching3/img/11_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThreeDog/PictureMatching/HEAD/PictureMatching3/img/11_selected.png -------------------------------------------------------------------------------- /PictureMatching3/img/12_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThreeDog/PictureMatching/HEAD/PictureMatching3/img/12_hover.png -------------------------------------------------------------------------------- /PictureMatching3/img/12_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThreeDog/PictureMatching/HEAD/PictureMatching3/img/12_normal.png -------------------------------------------------------------------------------- /PictureMatching3/img/12_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThreeDog/PictureMatching/HEAD/PictureMatching3/img/12_selected.png -------------------------------------------------------------------------------- /PictureMatching3/img/13_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThreeDog/PictureMatching/HEAD/PictureMatching3/img/13_hover.png -------------------------------------------------------------------------------- /PictureMatching3/img/13_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThreeDog/PictureMatching/HEAD/PictureMatching3/img/13_normal.png -------------------------------------------------------------------------------- /PictureMatching3/img/13_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThreeDog/PictureMatching/HEAD/PictureMatching3/img/13_selected.png -------------------------------------------------------------------------------- /PictureMatching3/img/14_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThreeDog/PictureMatching/HEAD/PictureMatching3/img/14_hover.png -------------------------------------------------------------------------------- /PictureMatching3/img/14_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThreeDog/PictureMatching/HEAD/PictureMatching3/img/14_normal.png -------------------------------------------------------------------------------- /PictureMatching3/img/14_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThreeDog/PictureMatching/HEAD/PictureMatching3/img/14_selected.png -------------------------------------------------------------------------------- /PictureMatching3/img/1_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThreeDog/PictureMatching/HEAD/PictureMatching3/img/1_hover.png -------------------------------------------------------------------------------- /PictureMatching3/img/1_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThreeDog/PictureMatching/HEAD/PictureMatching3/img/1_normal.png -------------------------------------------------------------------------------- /PictureMatching3/img/1_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThreeDog/PictureMatching/HEAD/PictureMatching3/img/1_selected.png -------------------------------------------------------------------------------- /PictureMatching3/img/2_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThreeDog/PictureMatching/HEAD/PictureMatching3/img/2_hover.png -------------------------------------------------------------------------------- /PictureMatching3/img/2_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThreeDog/PictureMatching/HEAD/PictureMatching3/img/2_normal.png -------------------------------------------------------------------------------- /PictureMatching3/img/2_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThreeDog/PictureMatching/HEAD/PictureMatching3/img/2_selected.png -------------------------------------------------------------------------------- /PictureMatching3/img/3_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThreeDog/PictureMatching/HEAD/PictureMatching3/img/3_hover.png -------------------------------------------------------------------------------- /PictureMatching3/img/3_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThreeDog/PictureMatching/HEAD/PictureMatching3/img/3_normal.png -------------------------------------------------------------------------------- /PictureMatching3/img/3_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThreeDog/PictureMatching/HEAD/PictureMatching3/img/3_selected.png -------------------------------------------------------------------------------- /PictureMatching3/img/4_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThreeDog/PictureMatching/HEAD/PictureMatching3/img/4_hover.png -------------------------------------------------------------------------------- /PictureMatching3/img/4_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThreeDog/PictureMatching/HEAD/PictureMatching3/img/4_normal.png -------------------------------------------------------------------------------- /PictureMatching3/img/4_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThreeDog/PictureMatching/HEAD/PictureMatching3/img/4_selected.png -------------------------------------------------------------------------------- /PictureMatching3/img/5_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThreeDog/PictureMatching/HEAD/PictureMatching3/img/5_hover.png -------------------------------------------------------------------------------- /PictureMatching3/img/5_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThreeDog/PictureMatching/HEAD/PictureMatching3/img/5_normal.png -------------------------------------------------------------------------------- /PictureMatching3/img/5_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThreeDog/PictureMatching/HEAD/PictureMatching3/img/5_selected.png -------------------------------------------------------------------------------- /PictureMatching3/img/6_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThreeDog/PictureMatching/HEAD/PictureMatching3/img/6_hover.png -------------------------------------------------------------------------------- /PictureMatching3/img/6_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThreeDog/PictureMatching/HEAD/PictureMatching3/img/6_normal.png -------------------------------------------------------------------------------- /PictureMatching3/img/6_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThreeDog/PictureMatching/HEAD/PictureMatching3/img/6_selected.png -------------------------------------------------------------------------------- /PictureMatching3/img/7_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThreeDog/PictureMatching/HEAD/PictureMatching3/img/7_hover.png -------------------------------------------------------------------------------- /PictureMatching3/img/7_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThreeDog/PictureMatching/HEAD/PictureMatching3/img/7_normal.png -------------------------------------------------------------------------------- /PictureMatching3/img/7_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThreeDog/PictureMatching/HEAD/PictureMatching3/img/7_selected.png -------------------------------------------------------------------------------- /PictureMatching3/img/8_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThreeDog/PictureMatching/HEAD/PictureMatching3/img/8_hover.png -------------------------------------------------------------------------------- /PictureMatching3/img/8_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThreeDog/PictureMatching/HEAD/PictureMatching3/img/8_normal.png -------------------------------------------------------------------------------- /PictureMatching3/img/8_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThreeDog/PictureMatching/HEAD/PictureMatching3/img/8_selected.png -------------------------------------------------------------------------------- /PictureMatching3/img/9_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThreeDog/PictureMatching/HEAD/PictureMatching3/img/9_hover.png -------------------------------------------------------------------------------- /PictureMatching3/img/9_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThreeDog/PictureMatching/HEAD/PictureMatching3/img/9_normal.png -------------------------------------------------------------------------------- /PictureMatching3/img/9_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThreeDog/PictureMatching/HEAD/PictureMatching3/img/9_selected.png -------------------------------------------------------------------------------- /PictureMatching3/img/begin_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThreeDog/PictureMatching/HEAD/PictureMatching3/img/begin_hover.png -------------------------------------------------------------------------------- /PictureMatching3/img/begin_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThreeDog/PictureMatching/HEAD/PictureMatching3/img/begin_normal.png -------------------------------------------------------------------------------- /PictureMatching3/img/begin_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThreeDog/PictureMatching/HEAD/PictureMatching3/img/begin_press.png -------------------------------------------------------------------------------- /PictureMatching3/img/daohang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThreeDog/PictureMatching/HEAD/PictureMatching3/img/daohang.png -------------------------------------------------------------------------------- /PictureMatching3/img/defeat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThreeDog/PictureMatching/HEAD/PictureMatching3/img/defeat.png -------------------------------------------------------------------------------- /PictureMatching3/img/exit_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThreeDog/PictureMatching/HEAD/PictureMatching3/img/exit_hover.png -------------------------------------------------------------------------------- /PictureMatching3/img/exit_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThreeDog/PictureMatching/HEAD/PictureMatching3/img/exit_normal.png -------------------------------------------------------------------------------- /PictureMatching3/img/exit_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThreeDog/PictureMatching/HEAD/PictureMatching3/img/exit_press.png -------------------------------------------------------------------------------- /PictureMatching3/img/game_main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThreeDog/PictureMatching/HEAD/PictureMatching3/img/game_main.png -------------------------------------------------------------------------------- /PictureMatching3/img/game_main_with_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThreeDog/PictureMatching/HEAD/PictureMatching3/img/game_main_with_logo.png -------------------------------------------------------------------------------- /PictureMatching3/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThreeDog/PictureMatching/HEAD/PictureMatching3/img/logo.png -------------------------------------------------------------------------------- /PictureMatching3/img/prompt_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThreeDog/PictureMatching/HEAD/PictureMatching3/img/prompt_hover.png -------------------------------------------------------------------------------- /PictureMatching3/img/prompt_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThreeDog/PictureMatching/HEAD/PictureMatching3/img/prompt_normal.png -------------------------------------------------------------------------------- /PictureMatching3/img/prompt_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThreeDog/PictureMatching/HEAD/PictureMatching3/img/prompt_press.png -------------------------------------------------------------------------------- /PictureMatching3/img/reorder_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThreeDog/PictureMatching/HEAD/PictureMatching3/img/reorder_hover.png -------------------------------------------------------------------------------- /PictureMatching3/img/reorder_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThreeDog/PictureMatching/HEAD/PictureMatching3/img/reorder_normal.png -------------------------------------------------------------------------------- /PictureMatching3/img/reorder_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThreeDog/PictureMatching/HEAD/PictureMatching3/img/reorder_press.png -------------------------------------------------------------------------------- /PictureMatching3/img/restart_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThreeDog/PictureMatching/HEAD/PictureMatching3/img/restart_hover.png -------------------------------------------------------------------------------- /PictureMatching3/img/restart_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThreeDog/PictureMatching/HEAD/PictureMatching3/img/restart_normal.png -------------------------------------------------------------------------------- /PictureMatching3/img/restart_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThreeDog/PictureMatching/HEAD/PictureMatching3/img/restart_press.png -------------------------------------------------------------------------------- /PictureMatching3/img/victory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThreeDog/PictureMatching/HEAD/PictureMatching3/img/victory.png -------------------------------------------------------------------------------- /PictureMatching3/img/welcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThreeDog/PictureMatching/HEAD/PictureMatching3/img/welcome.png -------------------------------------------------------------------------------- /PictureMatching3/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThreeDog/PictureMatching/HEAD/PictureMatching3/main.cpp -------------------------------------------------------------------------------- /PictureMatching3/myitem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThreeDog/PictureMatching/HEAD/PictureMatching3/myitem.cpp -------------------------------------------------------------------------------- /PictureMatching3/myitem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThreeDog/PictureMatching/HEAD/PictureMatching3/myitem.h -------------------------------------------------------------------------------- /PictureMatching3/widget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThreeDog/PictureMatching/HEAD/PictureMatching3/widget.cpp -------------------------------------------------------------------------------- /PictureMatching3/widget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThreeDog/PictureMatching/HEAD/PictureMatching3/widget.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThreeDog/PictureMatching/HEAD/README.md -------------------------------------------------------------------------------- /show/show_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThreeDog/PictureMatching/HEAD/show/show_1.jpg -------------------------------------------------------------------------------- /show/show_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThreeDog/PictureMatching/HEAD/show/show_2.jpg -------------------------------------------------------------------------------- /show/show_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThreeDog/PictureMatching/HEAD/show/show_3.jpg -------------------------------------------------------------------------------- /show/show_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThreeDog/PictureMatching/HEAD/show/show_4.jpg --------------------------------------------------------------------------------