找回密码
 立即注册
收起左侧
楼主: yafeilinux

Qt快速入门系列教程目录

271
回复
832312
查看
    [复制链接]
累计签到:5 天
连续签到:1 天
2013-9-13 09:17:54 显示全部楼层
亚飞老师,什么时候写QML的教程呢。还有QML 1和2有很大区别吗
回复 支持 反对

使用道具 举报

累计签到:1 天
连续签到:1 天
2013-9-15 00:46:52 显示全部楼层
很帮的教程~           .
回复 支持 反对

使用道具 举报

累计签到:36 天
连续签到:1 天
2013-9-26 02:16:32 显示全部楼层
yafeilinux 发表于 2013-5-31 10:57
其实,很多童鞋是先看教程再买书的,这个教程已经三年了。这次更新后,再看书会有一种似曾相识的感觉。 ...

我是先买了书,结果没看几页跑来看教程来了^
回复 支持 反对

使用道具 举报

累计签到:11 天
连续签到:1 天
2013-9-30 23:53:37 显示全部楼层
刚买了书,遇问题上网找。结果让我找到这个宝库了
先跟亚飞老师您说声感谢
回复 支持 反对

使用道具 举报

累计签到:1564 天
连续签到:1 天
2013-10-1 08:59:56 显示全部楼层
7t0Rw 发表于 2013-9-30 23:53
刚买了书,遇问题上网找。结果让我找到这个宝库了
先跟亚飞老师您说声感谢 ...

嗯。有问题在 有问必答 里面发帖就行!除了节假日会晚点,其他时候很快就会有人回复的!
回复 支持 反对

使用道具 举报

累计签到:7 天
连续签到:1 天
2013-10-11 22:50:19 显示全部楼层
就像沙漠里的水,给生命带来希望!
回复 支持 反对

使用道具 举报

累计签到:56 天
连续签到:1 天
2013-11-5 18:42:57 显示全部楼层
好帖,以后好好学锡qt。

顺便问一句,看这个帖子跟看Qt Creator有啥区别么?
回复 支持 反对

使用道具 举报

累计签到:4 天
连续签到:1 天
2013-11-5 20:00:24 显示全部楼层
在哪里下载这个啊
回复 支持 反对

使用道具 举报

累计签到:1564 天
连续签到:1 天
2013-11-6 18:28:35 显示全部楼层
xinkexue 发表于 2013-11-5 18:42
好帖,以后好好学锡qt。

顺便问一句,看这个帖子跟看Qt Creator有啥区别么? ...

呵,网上教程图片很多,讲的比较细,而且更新比较及时;

《入门》是根据网上教程整理得来的,思路更加调理,内容更丰富,如果没有学过Qt,建议看书系统的学习。如果有Qt知识,只想看某一块的一个应用,直接查找相应网上教程即可。
回复 支持 反对

使用道具 举报

累计签到:1564 天
连续签到:1 天
2013-11-6 18:29:48 显示全部楼层
lengyuegg 发表于 2013-11-5 20:00
在哪里下载这个啊

最新版本的教程没有提供下载,如果只想离线看,那么直接复制粘贴到word上即可。或者直接保存网页为图片。
回复 支持 反对

使用道具 举报

累计签到:56 天
连续签到:1 天
2013-11-12 19:27:10 显示全部楼层
楼主,这个教程用的版本跟Qt快速入门的版本不同啊,程序通用么?
回复 支持 反对

使用道具 举报

累计签到:1564 天
连续签到:1 天
2013-11-13 09:27:38 显示全部楼层
xinkexue 发表于 2013-11-12 19:27
楼主,这个教程用的版本跟Qt快速入门的版本不同啊,程序通用么?

通用的。
回复 支持 反对

使用道具 举报

累计签到:29 天
连续签到:1 天
2013-11-13 11:17:42 显示全部楼层
我想问下,有没有讲解Qt开发ActiveX控件的(就是微软的COM组件),用于网页调用的。下面的我不理解,我从没接触过 ActiveQt framework,哪位能给点指点,非常感谢!!
The QAxServer module is part of the ActiveQt framework. It consists of three classes:

QAxFactory defines a factory for the creation of COM objects.
QAxBindable provides an interface between the Qt widget and the COM object.
QAxAggregated can be subclassed to implement additional COM interfaces.
Some example implementations of ActiveX controls and COM objects are provided.

Topics:

Using the Library

To turn a standard Qt application into a COM server using the QAxServer library you must add axserver to the QT variable in your .pro file.

An out-of-process executable server is generated from a .pro file like this:

TEMPLATE = app
QT  += axserver

RC_FILE  = qaxserver.rc
...
To build an in-process server, use a .pro file like this:

TEMPLATE = lib
QT += axserver
CONFIG  += dll

DEF_FILE = qaxserver.def
RC_FILE  = qaxserver.rc
...
The files qaxserver.rc and qaxserver.def are part of the framework and can be used from their usual location (specify a path in the .pro file), or copied into the project directory. You can modify these files as long as it includes any file as the type library entry, ie. you can add version information or specify a different toolbox icon.

Using the axserver module will cause the qmake tool to add the required build steps to the build system:

Link the binary against qaxserver.lib instead of qtmain.lib
Call the idc tool to generate an IDL file for the COM server
Compile the IDL into a type library using the MIDL tool (part of the compiler installation)
Attach the resulting type library as a binary resource to the server binary (again using the idc tool)
Register the server
To skip the post-processing step, also set the qaxserver_no_postlink configuration.

Additionally you can specify a version number using the VERSION variable, e.g.

TEMPLATE = lib
VERSION = 2.5
...
The version number specified will be used as the version of the type library and of the server when registering.
回复 支持 反对

使用道具 举报

累计签到:55 天
连续签到:1 天
2013-11-16 10:33:33 显示全部楼层
非常不错,对我很有用,支持下
回复 支持 反对

使用道具 举报

尚未签到

2013-11-22 17:52:17 显示全部楼层
学习中,感谢!怒赞!大爱
回复 支持 反对

使用道具 举报

累计签到:94 天
连续签到:1 天
2013-11-23 23:31:19 显示全部楼层
学习了~~~谢谢楼主分享
回复 支持 反对

使用道具 举报

累计签到:1 天
连续签到:1 天
2013-11-28 21:43:02 显示全部楼层
我今天才发现这个网站,对应我初学者来说就像发现新大陆一样
回复 支持 反对

使用道具 举报

累计签到:2 天
连续签到:1 天
2013-12-8 01:20:18 显示全部楼层
非常不错!赞一个!
回复 支持 反对

使用道具 举报

累计签到:55 天
连续签到:1 天
2013-12-16 15:42:48 显示全部楼层
咋不继续更新啊 ?、
回复 支持 反对

使用道具 举报

累计签到:1564 天
连续签到:1 天
2013-12-17 15:58:11 显示全部楼层
fangchangqing 发表于 2013-12-16 15:42
咋不继续更新啊 ?、

哦。很快要更新了。
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

公告
可以关注我们的微信公众号yafeilinux_friends获取最新动态,或者加入QQ会员群进行交流:190741849、186601429(已满) 我知道了