
QT
lost7788
usb
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
QT 开源授权情况
最近一直在学习 Qt。Qt 有两个许可证:LGPL 和商业协议。这两个协议在现在的 Qt 版本中的代码是完全一致的(潜在含义是,Qt 的早期版本,商业版的 Qt 通常包含有一些开源版本所没有的库,比如 QtSingleApplication 这个库)。所以现在对于普通开发人员和部分商业公司来说,使用 LGPL 版本的 Qt 可以节省很大的开销。这两个版本最大的区别在于,前者是免费的,后者是收费的。转载 2013-06-24 10:38:52 · 1982 阅读 · 0 评论 -
QT blog
http://blog.youkuaiyun.com/dbzhang800/article/category/759342/5转载 2013-08-19 10:55:17 · 578 阅读 · 0 评论 -
QT-painting-paintengine
The QPaintEngine class provides an abstract definition of how QPainter draws to a given device on a given platform.Qt 4.0 provides several premade implementations of QPaintEngine for the differe翻译 2013-08-12 23:13:27 · 1234 阅读 · 0 评论 -
QT-painting-paintdevice
The QPaintDevice class is the base class of objects that can be painted.A paint device is an abstraction of a two-dimensional space that can be drawn using a QPainter. Its default coordinate sys翻译 2013-08-12 23:15:23 · 1486 阅读 · 0 评论 -
Qt for Embedded Linux (嵌入式linuxQT)
Qt for Embedded Linux is a C++ framework for GUI and application development for embedded devices. It runs on a variety of processors, usually with Embedded Linux. Qt for Embedded Linux provides the s翻译 2013-08-13 23:27:38 · 3028 阅读 · 0 评论 -
Qt for Embedded Linux Architecture-嵌入式linuxQT架构
A Qt for Embedded Linux application requires a server application to be running, or to be the server application itself. Any Qt for Embedded Linux application can act as the server. When more than one翻译 2013-08-14 00:03:58 · 983 阅读 · 0 评论 -
Qt插件机制的学习
Mesh Deformer的架 构若想参照OpenFlipper来实现,首先需要了解Qt plugin system的结构以及如何编写qt plugins.以下摘抄了Qt文档中的部分内容(只与自己想要实现的功能相关的内容)The Lower-Level API: Extending Qt ApplicationsNot only Qt itself but also Qt转载 2013-08-14 00:22:50 · 1253 阅读 · 0 评论 -
QT中的元对象系统 简介
QT中的元对象系统 (2007-11-24 21:53:37)转载▼标签: 学习公社 qt 元对象 Qt中的元对象系统是用来处理对象间通讯的信号/槽机制、运行时的类型信息和 动态属性系统。它基于下列三类:QObject类;类声明中的私有段中的Q_OBJECT宏;元转载 2013-08-16 13:58:01 · 819 阅读 · 0 评论