实例介绍
本人为公司编写的基于hi3531方案下,minigui3.0的界面编写样例,属于公司内部绝密资料,里面包含了矢量字体,滚动字幕等等的实现,对刚接触minigui编程的有很大的提升作用。不管是做ipc,nvr,会议系统等的界面的设计,都可能要用到本代码。
【实例截图】
【核心代码】
HTMain.tar
├── address.c
├── address.h
├── common_def.c
├── common_def.h
├── detect.c
├── detect.h
├── displayfont.c
├── gdb
├── gloable.c
├── gloable.h
├── guiinclude
│ ├── libpng
│ │ ├── pngconf.h
│ │ └── png.h
│ ├── minigui
│ │ ├── common.h
│ │ ├── control.h
│ │ ├── ctrl
│ │ │ ├── animation.h
│ │ │ ├── button.h
│ │ │ ├── combobox.h
│ │ │ ├── coolbar.h
│ │ │ ├── ctrlhelper.h
│ │ │ ├── edit.h
│ │ │ ├── gridview.h
│ │ │ ├── iconview.h
│ │ │ ├── listbox.h
│ │ │ ├── listview.h
│ │ │ ├── menubutton.h
│ │ │ ├── monthcal.h
│ │ │ ├── newtoolbar.h
│ │ │ ├── progressbar.h
│ │ │ ├── propsheet.h
│ │ │ ├── scrollbar.h
│ │ │ ├── scrollview.h
│ │ │ ├── spinbox.h
│ │ │ ├── static.h
│ │ │ ├── textedit.h
│ │ │ ├── trackbar.h
│ │ │ ├── treeview.h
│ │ │ └── videoview.h
│ │ ├── customial.h
│ │ ├── dti.c
│ │ ├── endianrw.h
│ │ ├── fixedmath.h
│ │ ├── gdi.h
│ │ ├── mgconfig.h
│ │ ├── minigui.h
│ │ ├── nucleus_pthread.h
│ │ ├── nucleus_semaphore.h
│ │ ├── ose_semaphore.h
│ │ ├── own_malloc.h
│ │ ├── own_stdio.h
│ │ ├── psos_pthread.h
│ │ ├── psos_semaphore.h
│ │ ├── threadx_pthread.h
│ │ ├── threadx_semaphore.h
│ │ ├── ucos2_pthread.h
│ │ ├── ucos2_semaphore.h
│ │ ├── vxworks_pthread.h
│ │ ├── vxworks_semaphore.h
│ │ ├── win32_dirent.h
│ │ ├── win32_pthread.h
│ │ ├── win32_sched.h
│ │ ├── win32_semaphore.h
│ │ ├── window.h
│ │ └── xvfb.h
│ ├── pngconf.h
│ ├── png.h
│ ├── zconf.h
│ └── zlib.h
├── guilib
│ ├── libfreetype.a
│ ├── libfreetype.la
│ ├── libfreetype.so.6.3.20
│ ├── libjpeg.a
│ ├── libjpeg.la
│ ├── libjpeg.so.7.0.0
│ ├── libminigui_ths-3.0.so.12.0.0
│ ├── libminigui_ths.a
│ ├── libminigui_ths.la
│ ├── libpng12.a
│ ├── libpng12.so.0.1.2.37
│ ├── libpng.so.3.1.2.37
│ ├── libvdecoder.so
│ ├── libvecore.so
│ ├── libz.so.1.2.2
│ └── pkgconfig
│ ├── freetype2.pc
│ ├── libpng12.pc
│ └── minigui.pc
├── hiir.h
├── ht_main.c
├── ht_main.h
├── ir_control.c
├── ir_control.h
├── main
├── Makefile
├── Makefile.bak
├── meetctrl.c
├── meetctrl.h
├── MiniGUI.cfg
├── pro
│ ├── HTMain.IAB
│ ├── HTMain.IAD
│ ├── HTMain.IMB
│ ├── HTMain.IMD
│ ├── HTMain.PFI
│ ├── HTMain.PO
│ ├── HTMain.PR
│ ├── HTMain.PRI
│ ├── HTMain.PS
│ ├── HTMain.SearchResults
│ └── HTMain.WK3
├── readbmp.c
├── readpng.c
├── res
│ ├── addrbooks.txt
│ ├── address.bmp
│ ├── address.png
│ ├── alarm.bmp
│ ├── alarm.png
│ ├── audiodetect.png
│ ├── audioset.bmp
│ ├── audioset.png
│ ├── basicinfo.txt
│ ├── basicinfo.txt.bak
│ ├── basicsetting.txt
│ ├── BasicString.txt
│ ├── BasicString.txt.bak
│ ├── basic.txt
│ ├── bg1.png
│ ├── bg.png
│ ├── big.png
│ ├── callcount.png
│ ├── callin.txt
│ ├── callout.txt
│ ├── camera_down.png
│ ├── camera_left.png
│ ├── camera_right.png
│ ├── camera_up.png
│ ├── conferenceset.bmp
│ ├── conferenceset.png
│ ├── coordinate720p.txt
│ ├── coordinate720p.txt.bak
│ ├── down.png
│ ├── farend.png
│ ├── far.png
│ ├── general.png
│ ├── GK.png
│ ├── IP.png
│ ├── leftdown.png
│ ├── left.png
│ ├── leftup.png
│ ├── loop1.png
│ ├── loop2.png
│ ├── loop3.png
│ ├── meetctrl.png
│ ├── meeting.png
│ ├── mic.bmp
│ ├── mic.png
│ ├── mute.bmp
│ ├── mute.png
│ ├── nearend.png
│ ├── near.png
│ ├── netdetect.png
│ ├── netstate.png
│ ├── network.bmp
│ ├── networkdetect.png
│ ├── networkset.bmp
│ ├── networkset.png
│ ├── others.png
│ ├── password.bmp
│ ├── password.png
│ ├── ping.png
│ ├── recordfile.txt
│ ├── return.bmp
│ ├── rightdown.png
│ ├── right.png
│ ├── rightup.png
│ ├── seniorcount.png
│ ├── server.bmp
│ ├── server.png
│ ├── setchinese.txt
│ ├── setenglish.txt
│ ├── setting.png
│ ├── setup.png
│ ├── sitename.txt
│ ├── sitename.txt.bak
│ ├── small.png
│ ├── sound1.png
│ ├── sound2.png
│ ├── sound3.png
│ ├── sound4.png
│ ├── streamingset.bmp
│ ├── streamingset.png
│ ├── system_1.png
│ ├── systeminfo.png
│ ├── system.png
│ ├── text.txt
│ ├── up.png
│ ├── videocall.png
│ ├── videoset.bmp
│ ├── videoset.png
│ ├── wanset.bmp
│ ├── wanset.png
│ ├── watchdog.bmp
│ ├── watchdog.png
│ ├── zoomin.png
│ └── zoomout.png
├── setting.c
└── setting.h
8 directories, 204 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论