实例介绍
Qt项目实例,大量实战项目,供你参考,不要错过。
【实例截图】
【核心代码】
720486de-7fe9-49f8-9c8f-126c9e66a673
└── 应用项目
├── Chess
│ ├── Chess.pro
│ ├── chess.qrc
│ ├── ChessServer.cpp
│ ├── ChessServer.h
│ ├── ChessThread.cpp
│ ├── ChessThread.h
│ ├── chess_zn.cpp
│ ├── chess_zn.h
│ ├── chess_zn.ui
│ ├── commands.cpp
│ ├── commands.h
│ ├── database
│ │ ├── connection.cpp
│ │ ├── connection.h
│ │ ├── tableeditor.cpp
│ │ ├── tableeditor.h
│ │ ├── userlogin.cpp
│ │ └── userlogin.h
│ ├── debug
│ │ ├── Chess.exe
│ │ ├── ChessServer.o
│ │ ├── ChessThread.o
│ │ ├── chess_zn.o
│ │ ├── commands.o
│ │ ├── connection.o
│ │ ├── diagramitem.o
│ │ ├── diagramscene.o
│ │ ├── main.o
│ │ ├── mingwm10.dll
│ │ ├── moc_ChessServer.cpp
│ │ ├── moc_ChessServer.o
│ │ ├── moc_ChessThread.cpp
│ │ ├── moc_ChessThread.o
│ │ ├── moc_chess_zn.cpp
│ │ ├── moc_chess_zn.o
│ │ ├── moc_diagramscene.cpp
│ │ ├── moc_diagramscene.o
│ │ ├── moc_peermanager.cpp
│ │ ├── moc_peermanager.o
│ │ ├── moc_tableeditor.cpp
│ │ ├── moc_tableeditor.o
│ │ ├── moc_userlogin.cpp
│ │ ├── moc_userlogin.o
│ │ ├── peermanager.o
│ │ ├── qrc_chess.cpp
│ │ ├── qrc_chess.o
│ │ ├── QtCored4.dll
│ │ ├── QtGuid4.dll
│ │ ├── QtNetworkd4.dll
│ │ ├── QtSqld4.dll
│ │ ├── tableeditor.o
│ │ └── userlogin.o
│ ├── diagramitem.cpp
│ ├── diagramitem.h
│ ├── diagramscene.cpp
│ ├── diagramscene.h
│ ├── main.cpp
│ ├── main.o
│ ├── Makefile
│ ├── Makefile.Debug
│ ├── Makefile.Release
│ ├── moc_ChessServer.cpp
│ ├── moc_ChessServer.o
│ ├── moc_ChessThread.cpp
│ ├── moc_ChessThread.o
│ ├── moc_chess_zn.cpp
│ ├── moc_chess_zn.o
│ ├── moc_diagramscene.cpp
│ ├── moc_diagramscene.o
│ ├── moc_peermanager.cpp
│ ├── moc_peermanager.o
│ ├── moc_tableeditor.cpp
│ ├── moc_tableeditor.o
│ ├── moc_userlogin.cpp
│ ├── moc_userlogin.o
│ ├── object_script.Chess.Debug
│ ├── object_script.Chess.Release
│ ├── peermanager.cpp
│ ├── peermanager.h
│ ├── peermanager.o
│ ├── qrc_chess.cpp
│ ├── qrc_chess.o
│ ├── Resources
│ │ ├── B_C.png
│ │ ├── B_J.png
│ │ ├── B_M.png
│ │ ├── B_P.png
│ │ ├── B_S.png
│ │ ├── B_X.png
│ │ ├── B_Z.png
│ │ ├── chessbg.png
│ │ ├── cross.png
│ │ ├── qipan.jpg
│ │ ├── R_C.png
│ │ ├── R_J.png
│ │ ├── R_M.png
│ │ ├── R_P.png
│ │ ├── R_S.png
│ │ ├── R_X.png
│ │ ├── R_Z.png
│ │ └── Thumbs.db
│ ├── tableeditor.o
│ └── ui_chess_zn.h
├── gmchess-0.20
│ ├── aclocal.m4
│ ├── AUTHORS
│ ├── ChangeLog
│ ├── config.guess
│ ├── config.h.in
│ ├── config.sub
│ ├── configure
│ ├── configure.in
│ ├── COPYING
│ ├── data
│ │ ├── book.dat
│ │ ├── gmchess.desktop.in
│ │ ├── gmchess.glade
│ │ ├── gmchess.png
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── p1.png
│ │ ├── p2.png
│ │ ├── play.png
│ │ ├── sound
│ │ │ ├── check.wav
│ │ │ ├── choose.wav
│ │ │ ├── CountDown.wav
│ │ │ ├── eat.wav
│ │ │ ├── Makefile.am
│ │ │ ├── Makefile.in
│ │ │ └── move.wav
│ │ └── wood
│ │ ├── bg.png
│ │ ├── black_advisor.png
│ │ ├── black_bishop.png
│ │ ├── black_cannon.png
│ │ ├── black_king_die.png
│ │ ├── black_king.png
│ │ ├── black_knight.png
│ │ ├── black_pawn.png
│ │ ├── black_rook.png
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── null.png
│ │ ├── red_advisor.png
│ │ ├── red_bishop.png
│ │ ├── red_cannon.png
│ │ ├── red_king_die.png
│ │ ├── red_king.png
│ │ ├── red_knight.png
│ │ ├── red_pawn.png
│ │ ├── red_rook.png
│ │ └── select.png
│ ├── depcomp
│ ├── Doxyfile
│ ├── INSTALL
│ ├── install-sh
│ ├── intltool-extract.in
│ ├── intltool-merge.in
│ ├── intltool-update.in
│ ├── ltmain.sh
│ ├── Makefile.am
│ ├── Makefile.in
│ ├── missing
│ ├── mkinstalldirs
│ ├── NEWS
│ ├── po
│ │ ├── ChangeLog
│ │ ├── LINGUAS
│ │ ├── Makefile.in.in
│ │ ├── POTFILES.in
│ │ └── zh_CN.po
│ ├── README
│ └── src
│ ├── Board.cc
│ ├── Board.h
│ ├── BookView.cc
│ ├── BookView.h
│ ├── define.h
│ ├── ec_throw.cpp
│ ├── ec_throw.h
│ ├── engine
│ │ ├── base2.h
│ │ ├── base.h
│ │ ├── book.cpp
│ │ ├── book.h
│ │ ├── cchess.cpp
│ │ ├── cchess.h
│ │ ├── CodeConverter.h
│ │ ├── convert_pgn.cpp
│ │ ├── ecco.h
│ │ ├── eleeye.cpp
│ │ ├── evaluate.cpp
│ │ ├── genmoves.cpp
│ │ ├── hash.cpp
│ │ ├── hash.h
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── movesort.cpp
│ │ ├── movesort.h
│ │ ├── parse.h
│ │ ├── pgnfile.cpp
│ │ ├── pgnfile.h
│ │ ├── pipe.cpp
│ │ ├── pipe.h
│ │ ├── position.cpp
│ │ ├── position.h
│ │ ├── preeval.cpp
│ │ ├── preeval.h
│ │ ├── pregen.cpp
│ │ ├── pregen.h
│ │ ├── rc4prng.h
│ │ ├── search.cpp
│ │ ├── search.h
│ │ ├── ucci.cpp
│ │ ├── ucci.h
│ │ ├── x86asm.h
│ │ └── xqffile.h
│ ├── Engine.cc
│ ├── Engine.h
│ ├── gmchess.h
│ ├── main.cc
│ ├── MainWindow.cc
│ ├── MainWindow.h
│ ├── Makefile.am
│ ├── Makefile.in
│ ├── Pgnfile.cc
│ ├── Pgnfile.h
│ ├── robot.cc
│ ├── robot.h
│ ├── Sound.cc
│ └── Sound.h
├── imageviewer
│ ├── imagescreen.cpp
│ ├── imagescreen.h
│ ├── imageviewer.desktop
│ ├── infoscreen.cpp
│ ├── infoscreen.h
│ ├── inputdialog.cpp
│ ├── inputdialog.h
│ ├── iviewer.cpp
│ ├── iviewer.h
│ ├── listscreen.cpp
│ ├── listscreen.h
│ ├── main.cpp
│ └── qbuild.pro
├── OpenGL_SDK_v3.0
│ ├── glew v1.5.1
│ │ ├── bin
│ │ │ ├── glew32.dll
│ │ │ ├── glewinfo.exe
│ │ │ └── visualinfo.exe
│ │ ├── doc
│ │ │ ├── advanced.html
│ │ │ ├── basic.html
│ │ │ ├── credits.html
│ │ │ ├── glew.css
│ │ │ ├── glew.html
│ │ │ ├── glew.png
│ │ │ ├── glew.txt
│ │ │ ├── glxew.html
│ │ │ ├── gpl.txt
│ │ │ ├── index.html
│ │ │ ├── install.html
│ │ │ ├── khronos.txt
│ │ │ ├── log.html
│ │ │ ├── mesa.txt
│ │ │ ├── new.png
│ │ │ ├── ogl_sm.jpg
│ │ │ └── wglew.html
│ │ ├── include
│ │ │ └── GL
│ │ │ ├── glew.h
│ │ │ └── wglew.h
│ │ ├── lib
│ │ │ ├── glew32.lib
│ │ │ └── glew32s.lib
│ │ └── LICENSE.txt
│ ├── OpenGL SDK v3.0.txt
│ └── OpenGL v3.0
│ ├── bin
│ │ ├── glew32.dll
│ │ ├── glu32.dll
│ │ ├── glut32.dll
│ │ └── opengl32.dll
│ ├── include
│ │ ├── glaux.h
│ │ ├── glew.h
│ │ ├── gl.h
│ │ ├── glu.h
│ │ ├── glui.h
│ │ ├── glut.h
│ │ └── wglew.h
│ └── lib
│ ├── glaux.lib
│ ├── glew32.lib
│ ├── glew32s.lib
│ ├── glu32.lib
│ ├── glui32.lib
│ ├── glut32.lib
│ └── opengl32.lib
├── QMusic
│ ├── debug
│ │ ├── main.o
│ │ ├── moc_qplayer.cpp
│ │ ├── moc_qplayer.o
│ │ ├── myapp_res.o
│ │ ├── QMusic.exe
│ │ ├── qplayer.o
│ │ ├── qrc_SuourceFile.cpp
│ │ └── qrc_SuourceFile.o
│ ├── logo.ico
│ ├── main.cpp
│ ├── Makefile
│ ├── Makefile.Debug
│ ├── Makefile.Release
│ ├── myapp.rc
│ ├── QMusic.pro
│ ├── QMusic.pro.user
│ ├── qplayer.cpp
│ ├── qplayer.h
│ ├── qplayer.ui
│ ├── release
│ │ └── QMusic.exe
│ ├── style
│ │ ├── add.png
│ │ ├── bg.png
│ │ ├── logo.png
│ │ ├── mu.png
│ │ ├── next.png
│ │ ├── play.png
│ │ ├── prev.png
│ │ ├── push.png
│ │ ├── remove.png
│ │ ├── stop.png
│ │ └── style.png
│ ├── SuourceFile.qrc
│ └── ui_qplayer.h
├── QuickCalendarView
│ ├── QuickCalendarView
│ │ ├── bin
│ │ │ ├── clockicon.png
│ │ │ ├── leftarrow.png
│ │ │ ├── mingwm10.dll
│ │ │ ├── QtCore4.dll
│ │ │ ├── QtGui4.dll
│ │ │ ├── QtNetwork4.dll
│ │ │ ├── QuickCalendar.exe
│ │ │ └── rightarrow.png
│ │ ├── doc
│ │ │ └── screen.png
│ │ └── src
│ │ ├── appointment.cpp
│ │ ├── appointmentdetailsform.cpp
│ │ ├── appointmentdetailsform.h
│ │ ├── appointmentdetailsform.ui
│ │ ├── appointment.h
│ │ ├── appointmentitem.cpp
│ │ ├── appointmentitem.h
│ │ ├── calendar.cpp
│ │ ├── calendardetailsform.h
│ │ ├── calendardetailsform.ui
│ │ ├── calendar.h
│ │ ├── calendaritem.cpp
│ │ ├── calendaritem.h
│ │ ├── calendartablemodel.cpp
│ │ ├── calendartablemodel.h
│ │ ├── clockbar.cpp
│ │ ├── clockbar.h
│ │ ├── daycontentitem.cpp
│ │ ├── daycontentitem.h
│ │ ├── dayitem.cpp
│ │ ├── dayitem.h
│ │ ├── main.cpp
│ │ ├── QuickCalendar.pro
│ │ ├── quickcalendarstyle.cpp
│ │ ├── quickcalendarstyle.h
│ │ ├── quickcalendarview.cpp
│ │ ├── quickcalendarview.h
│ │ ├── quickcalendarwindow.cpp
│ │ ├── quickcalendarwindow.h
│ │ ├── quickcalendarwindow.ui
│ │ ├── scrollareaitem.cpp
│ │ ├── scrollareaitem.h
│ │ ├── scrollbar.cpp
│ │ ├── scrollbar.h
│ │ ├── selectorwidget.cpp
│ │ ├── selectorwidget.h
│ │ ├── ui_appointmentdetailsform.h
│ │ ├── ui_quickcalendarwindow.h
│ │ ├── weekdayheaderitem.cpp
│ │ ├── weekdayheaderitem.h
│ │ ├── weekheaderitem.h
│ │ ├── weekitem.cpp
│ │ └── weekitem.h
│ └── threads-2.0
│ └── threads-2.0
│ ├── acconfig.h
│ ├── acinclude.m4
│ ├── aclocal.m4
│ ├── AUTHORS
│ ├── autogen.sh
│ ├── ChangeLog
│ ├── config.guess
│ ├── config.h.in
│ ├── config.sub
│ ├── configure
│ ├── configure.in
│ ├── COPYING
│ ├── doc
│ │ ├── cond.html
│ │ ├── heir.html
│ │ ├── index.html
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── mutex.html
│ │ ├── pthread.html
│ │ └── semaphore.html
│ ├── examples
│ │ ├── buffer.C
│ │ ├── client.C
│ │ ├── consume.C
│ │ ├── consumer.C
│ │ ├── diner.C
│ │ ├── dining.C
│ │ ├── dining.h
│ │ ├── dining_main.C
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── philosopher.C
│ │ ├── philosopher.h
│ │ ├── produce.C
│ │ ├── sem1.C
│ │ └── sem2.C
│ ├── INSTALL
│ ├── install-sh
│ ├── ltconfig
│ ├── ltmain.sh
│ ├── Makefile.am
│ ├── Makefile.in
│ ├── man
│ │ ├── cond.3
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── mutex.3
│ │ ├── pthread.3
│ │ ├── semaphore.3
│ │ └── threads.7
│ ├── missing
│ ├── mkinstalldirs
│ ├── NEWS
│ ├── README
│ ├── src
│ │ ├── attributes.C
│ │ ├── cloning.c
│ │ ├── cloning.h
│ │ ├── cond.C
│ │ ├── Config.h
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── mutex.C
│ │ ├── semaphore.C
│ │ ├── shared.C
│ │ ├── shared.h
│ │ ├── spinlock.C
│ │ ├── thread_alloc.h
│ │ ├── thread_attributes.h
│ │ ├── thread.C
│ │ ├── thread_cond.h
│ │ ├── thread.h
│ │ ├── thread_list.h
│ │ ├── thread_lists.C
│ │ ├── thread_lists.h
│ │ ├── thread_mutex.h
│ │ ├── thread_semaphore.h
│ │ ├── thread_signal_num.h
│ │ ├── thread_spinlock.h
│ │ ├── wait_queue.C
│ │ └── wait_queue.h
│ ├── stamp-h.in
│ ├── threads.lsm
│ └── TODO
├── sem
│ ├── msgdequeue.h
│ └── tmutex.h
└── socket
├── fuwuqi
│ ├── bin
│ │ └── Debug
│ │ └── fuwuqi
│ ├── fuwuqi.cbp
│ ├── fuwuqi.depend
│ ├── fuwuqi.layout
│ ├── main.cpp
│ └── obj
│ └── Debug
│ └── main.o
└── kehuduan
├── bin
│ └── Debug
│ └── kehuduan
├── kehuduan.cbp
├── kehuduan.depend
├── kehuduan.layout
├── main.c
├── main.cpp
└── obj
└── Debug
└── main.o
51 directories, 460 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论