qt程序设计
hahapro
这个作者很懒,什么都没留下…
展开
-
qt4 designer今天有重新复习了一下~
其中一共是三种方式,也没有感觉比以前简单,但是其中多重继承中的自动推导的方式还是挺有意思的,不错。感觉Uisetup这个函数是很关键的。并且DESIGNER可以很好的处理中文,这点很不错,我要好好的看看生成的ui_*.h看看其中的原理原创 2007-06-22 16:34:00 · 1018 阅读 · 0 评论 -
examples
有时间的时候看看QT的examples 如果有啥需要的就写下来:在大炮的例子中重绘大炮的时候update(rect())其中rect 这样得到感觉应该可以提高速度:p, li { white-space: pre-wrap; } QRect CannonField::cannonRect() const { QRect result(0, 0, 50, 50);原创 2008-11-27 18:17:00 · 625 阅读 · 0 评论 -
plasma 中遇到的问题
constraintsEvent:限制plasmoid在panel和桌面中的事件。是出现图标还是出现别的东西Qgrpaphicsproxywidget:用来把不是qgraphicsItem的东西放到qgraphicsscene中,就是一个容器吧原创 2008-11-14 13:00:00 · 889 阅读 · 0 评论 -
qt国际化
怎么在qt4中显示中文: 在代码中用可以用英文命名各个元件,但是main.cpp中加入以下语句: QTranslator translator; translator.load("hellotr_la"); app.installTranslator(&translator); 然后运行qmake -project转载 2008-11-13 13:05:00 · 720 阅读 · 0 评论 -
Qt4 的ui还真是不错
再安装上一个程序的界面以后可以自动的建立一些slot很方便 比如一个button,你可以定义一个SLOTS叫on_buttonname_clicked()这样就自动的关联了原创 2008-11-12 10:46:00 · 679 阅读 · 0 评论 -
plasma PIG
Category Names The following are acceptable known entries for plasmoids andapplets. If your applet does not fall within one of the followingcategories, leave the category field empty (it will be原创 2008-10-14 21:04:00 · 582 阅读 · 0 评论 -
Private implementation slots
Private implementation slotsDisclaimer: this article descrbes techiques that are not part of thepublic Qt API, using them may result in non-portable or versionspecific code. The example转载 2008-12-04 14:55:00 · 2131 阅读 · 0 评论