随笔分类 -  Qt

上一页 1 2 3 4 5 下一页

Qt platform mkspecs
摘要:https://gitorious.org/qt-platform-mkspecs A central collection of tested Qt mkspecs for a variety of hardware platforms 收集各个硬件平台的mkspecs 阅读全文

posted @ 2011-10-21 12:47 katago 阅读(750) 评论(0) 推荐(0) 编辑

Qt Creator and Clang
摘要:Qt Creator and Clang Posted by Erik Verbruggen on October 19, 2011 · 24 comments As... 阅读全文

posted @ 2011-10-21 09:34 katago 阅读(3358) 评论(0) 推荐(1) 编辑

qt delegate
摘要:http://devbean.blog.51cto.com/448512/271255 http://blog.csdn.net/tonylk/article/details/1315053 http://stackoverflow.com/questions/5457154/qstyleditemdelegate-how-does-updateeditorgeometry-works 阅读全文

posted @ 2011-10-13 18:29 katago 阅读(313) 评论(0) 推荐(0) 编辑

Qt Graphics and Performance – The Cost of Convenience
摘要:Qt Graphics and Performance – The Cost of Convenience Posted byGunnar SlettaonJanuary 11, 2010·25 comments Previous posts in this topic: Whats Hot and whats No... 阅读全文

posted @ 2011-10-04 21:39 katago 阅读(1350) 评论(0) 推荐(0) 编辑

Qt Graphics and Performance – Generating Content in Threads
摘要:Qt Graphics and Performance – Generating Content in Threads Posted byGunnar SlettaonJanuary 21, 2010·14 comments Previous posts in this topic: Whats Hot and wh... 阅读全文

posted @ 2011-10-04 19:55 katago 阅读(554) 评论(0) 推荐(0) 编辑

A Qt Scenegraph
摘要:A Qt Scenegraph Posted byGunnar SlettaonMay 18, 2010·21 comments Source code can be found here:http://qt.gitorious.org/qt-labs/scenegraph A few months ago, I wrote a... 阅读全文

posted @ 2011-10-04 19:38 katago 阅读(759) 评论(0) 推荐(0) 编辑

tree model例子
摘要:Foundations+of+Qt+Development.pdf 中objecttreemodel不错。 http://doc.qt.nokia.com/4.7-snapshot/itemviews-simpletreemodel.html C++ GUI Programming with Qt4, 2nd Edition http://www.informit.com... 阅读全文

posted @ 2011-10-02 23:20 katago 阅读(306) 评论(0) 推荐(0) 编辑

Text Rendering in the QML Scene Graph
摘要:http://labs.qt.nokia.com/2011/07/15/text-rendering-in-the-qml-scene-graph/ Some time ago, Gunnarpresented to youwhat the new QML Scene Graph is all about. As mentioned in that article, one of ... 阅读全文

posted @ 2011-09-29 14:56 katago 阅读(908) 评论(0) 推荐(0) 编辑

日期被修改
摘要:linguist 打开 qt-everywhere-opensource-src-4.7.0/translations/qt_zh_CN.ts ,查找相关 阅读全文

posted @ 2011-09-26 17:30 katago 阅读(145) 评论(0) 推荐(0) 编辑

QCalendarWidget 汉化
摘要:myCalendarWidget->setLocale(QLocale::Chinese); http://www.qtcentre.org/threads/24183-QCalendarWidget-and-dynamic-language-switching 阅读全文

posted @ 2011-09-26 11:29 katago 阅读(417) 评论(0) 推荐(0) 编辑

qwidget 透明窗体
摘要:1、设置窗体的背景色 在构造函数里添加代码,需要添加头文件qpalette或qgui QPalette pal = palette(); pal.setColor(QPalette::Background, QColor(0x00,0xff,0x00,0x00)); setPalette(pal); 通过设置窗体的背景色来实现,将背景色设置为全透。 效果: ... 阅读全文

posted @ 2011-09-19 16:03 katago 阅读(8643) 评论(0) 推荐(1) 编辑

Qt中不规则窗体和部件的实现
摘要:Qt中不规则窗体和部件的实现 描述:a.png 窗口背景图 图片: 描述:mask.png 窗口掩码图 图片: 描述:toolbutton.png 按钮背景图 图片: 描述:toolbutton_mask.png 按钮掩码图 图片: 描述:runtime.png 示例运行时图 图片: Qt中不规则窗体和部件的实现,不... 阅读全文

posted @ 2011-09-01 18:23 katago 阅读(902) 评论(0) 推荐(0) 编辑

qt 线程
摘要:http://doc.qt.nokia.com/master-snapshot/thread-basics.html 阅读全文

posted @ 2011-08-23 19:02 katago 阅读(169) 评论(0) 推荐(0) 编辑

qt 键盘插件(mine)
摘要:http://download.csdn.net/source/3532863 http://doc.qt.nokia.com/qtopia4.3/tut-index.html 阅读全文

posted @ 2011-08-19 17:15 katago 阅读(309) 评论(0) 推荐(0) 编辑

qt 键盘 插件
摘要:http://www.cuteqt.com/bbs/viewthread.php?tid=509 插件实现________________________________ #ifndef KBLIBPLUGIN_H #define KBLIBPLUGIN_H #include <QKbdDriverPlugin> class kblibPlugin : public QKbdDriverPlugi... 阅读全文

posted @ 2011-08-19 17:00 katago 阅读(1740) 评论(0) 推荐(0) 编辑

qt 私有实现导致plugin 加载 提示 undefined symbol
摘要:原因:Q_OBJECT不在头文件中,导致qt没产生moc文件 解决方法: 1、在cpp文件中加入相应的 #include "qmykbdlinuxinput_qws.moc" 或者2、把私有实现放入头文件中 http://www.qtcentre.org/threads/27975-QtPlugin-and-undefined-symbol 阅读全文

posted @ 2011-08-19 16:22 katago 阅读(805) 评论(0) 推荐(0) 编辑

qt 键盘驱动分析
摘要:http://www.cuteqt.com/blog/?p=322 qkbdlinuxinput.cpp QWSKeyboardHandler::KeycodeAction ka; ka = m_handler->processKeycode(code, value != 0, value == 2); qkbd_qws.cpp // simple builtin US keymap //包含了... 阅读全文

posted @ 2011-08-17 19:08 katago 阅读(1802) 评论(0) 推荐(0) 编辑

QtEmbedded鼠标驱动流程分析(下)
摘要:本站所有文章由本站和原作者保留一切权力,仅在保留本版权信息、原文链接、原文作者的情况下允许转载,转载请勿删改原文内容, 并不得用于商业用途。 谢谢合作。 原文链接:QtEmbedded鼠标驱动流程分析(下) Qt代码版本:qt-embedded-linux-opensource-src-4.5.2 在上篇中,我们提到了 src/gui/embedded/qmousedriverfactory_qw... 阅读全文

posted @ 2011-07-22 18:03 katago 阅读(765) 评论(0) 推荐(0) 编辑

QtEmbedded鼠标驱动流程分析(上)
摘要:QtEmbedded鼠标驱动流程分析(上) 本站所有文章由本站和原作者保留一切权力,仅在保留本版权信息、原文链接、原文作者的情况下允许转载,转载请勿删改原文内容, 并不得用于商业用途。 谢谢合作。 原文链接:QtEmbedded鼠标驱动流程分析(上) 注:此驱动对应英文handler和内核的驱动(driver)不是一回事 如果认真看过shiroki写的QtEmbedded键盘驱动分析(上篇,下篇)... 阅读全文

posted @ 2011-07-22 18:02 katago 阅读(476) 评论(0) 推荐(0) 编辑

QT下USB鼠标键盘热插拔的处理
摘要:http://ryanyee.blog.163.com/blog/static/1020542720106151184594/ 阅读全文

posted @ 2011-07-22 17:29 katago 阅读(1824) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 下一页