有QT GUI 的外文文献数据库吗。能发给我吗。

是一个创建GUI应用程序的工具包。它是Python编程语言和Qt库的成功融合。Qt库是目前最强大的库之一。PyQt是由 Phil Thompson 开发。 PyQt实现了一个Python模块集。它有超过300类,将近6000个函数和方法。它是一个多平台的工具包,可以运行在所有主要操作系统上,包括UNIX,Windows和Mac。 PyQt采用双许可证,开发人员可以选择GPL和商业许可。
PyQt 是一个吸引人和快速的接口,它将 Qt 工具箱和 Python 编程语言集成在一起。除了该工具箱提供的种类繁多的窗口构件外,Qt 所用的信号/插槽编程风格在生产能力和可维护性方面都要优于大多数其它 GUI 工具箱所用的回调风格。
版本说明:此版本增加了Python与QML和Quick2的集成支持。温馨提示!由于新浪微博认证机制调整,您的新浪微博帐号绑定已过期,请重新绑定!&&|&&
LOFTER精选
阅读(685)|
用微信&&“扫一扫”
将文章分享到朋友圈。
用易信&&“扫一扫”
将文章分享到朋友圈。
历史上的今天
loftPermalink:'',
id:'fks_',
blogTitle:'Qt Creator的配置没有gui应用……',
blogAbstract:'自己看的……
1、配两个变量& 一个是库,一个是mingw的
2、打开Qt Creator后工具选项,中的构建套件,先配Qt的版本,手动配置C:\\Qt\\4.8.4\\bin\\qmake.exe&& 吧qmake搞上去,再回到构建套件,
编译器选mingw&&& 调试器的Qt 版本就可以有的选了。',
blogTag:'',
blogUrl:'blog/static/',
isPublished:1,
istop:false,
modifyTime:8,
publishTime:1,
permalink:'blog/static/',
commentCount:0,
mainCommentCount:0,
recommendCount:0,
bsrk:-100,
publisherId:0,
recomBlogHome:false,
currentRecomBlog:false,
attachmentsFileIds:[],
groupInfo:{},
friendstatus:'none',
followstatus:'unFollow',
pubSucc:'',
visitorProvince:'',
visitorCity:'',
visitorNewUser:false,
postAddInfo:{},
mset:'000',
remindgoodnightblog:false,
isBlackVisitor:false,
isShowYodaoAd:false,
hostIntro:'',
hmcon:'0',
selfRecomBlogCount:'0',
lofter_single:''
{list a as x}
{if x.moveFrom=='wap'}
{elseif x.moveFrom=='iphone'}
{elseif x.moveFrom=='android'}
{elseif x.moveFrom=='mobile'}
${a.selfIntro|escape}{if great260}${suplement}{/if}
{list a as x}
推荐过这篇日志的人:
{list a as x}
{if !!b&&b.length>0}
他们还推荐了:
{list b as y}
转载记录:
{list d as x}
{list a as x}
{list a as x}
{list a as x}
{list a as x}
{if x_index>4}{break}{/if}
${fn2(x.publishTime,'yyyy-MM-dd HH:mm:ss')}
{list a as x}
{if !!(blogDetail.preBlogPermalink)}
{if !!(blogDetail.nextBlogPermalink)}
{list a as x}
{if defined('newslist')&&newslist.length>0}
{list newslist as x}
{if x_index>7}{break}{/if}
{list a as x}
{var first_option =}
{list x.voteDetailList as voteToOption}
{if voteToOption==1}
{if first_option==false},{/if}&&“${b[voteToOption_index]}”&&
{if (x.role!="-1") },“我是${c[x.role]}”&&{/if}
&&&&&&&&${fn1(x.voteTime)}
{if x.userName==''}{/if}
网易公司版权所有&&
{list x.l as y}
{if defined('wl')}
{list wl as x}{/list}【重庆达内】我们的框架还是使用Qt Creator创建一个Gui Applica_it技术吧_百度贴吧
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&签到排名:今日本吧第个签到,本吧因你更精彩,明天继续来努力!
本吧签到人数:0成为超级会员,使用一键签到本月漏签0次!成为超级会员,赠送8张补签卡连续签到:天&&累计签到:天超级会员单次开通12个月以上,赠送连续签到卡3张
关注:375贴子:
【重庆达内】我们的框架还是使用Qt Creator创建一个Gui Applica收藏
【重庆达内】创建一个Gui Application工程MainWindow的代码简单的main()函数就不再赘述了,首先先来看看最终的运行结果:MainWindow的代码mainwindow.h#ifndef MAINWINDOW_H#define MAINWINDOW_H#include &QtGui&#include "shape.h"#include "paintwidget.h"class MainWindow : public QMainWindow{Q_OBJECTpublic:MainWindow(QWidget *parent = 0);signals:void changeCurrentShape(Shape::Code newShape);private slots:void drawLineActionTriggered();void drawRectActionTriggered();};#endif // MAINWINDOW_Hmainwindow.cpp#include "mainwindow.h"MainWindow::MainWindow(QWidget *parent): QMainWindow(parent){
QToolBar *bar = this-&addToolBar("Tools");
QActionGroup *group = new QActionGroup(bar);
QAction *drawLineAction = new QAction("Line", bar);
drawLineAction-&setIcon(QIcon(":/line.png"));
drawLineAction-&setToolTip(tr("Draw a line."));
drawLineAction-&setStatusTip(tr("Draw a line."));
drawLineAction-&setCheckable(true);
drawLineAction-&setChecked(true);
group-&addAction(drawLineAction);
bar-&addAction(drawLineAction);
QAction *drawRectAction = new QAction("Rectangle", bar);
drawRectAction-&setIcon(QIcon(":/rect.png"));
drawRectAction-&setToolTip(tr("Draw a rectangle."));
drawRectAction-&setStatusTip(tr("Draw a rectangle."));
drawRectAction-&setCheckable(true);
group-&addAction(drawRectAction);
bar-&addAction(drawRectAction);
QLabel *statusMsg = new QL
statusBar()-&addWidget(statusMsg);
PaintWidget *paintWidget = new PaintWidget(this);
setCentralWidget(paintWidget);
connect(drawLineAction, SIGNAL(triggered()),
this, SLOT(drawLineActionTriggered()));
connect(drawRectAction, SIGNAL(triggered()),
this, SLOT(drawRectActionTriggered()));
connect(this, SIGNAL(changeCurrentShape(Shape::Code)),
paintWidget, SLOT(setCurrentShape(Shape::Code)));
void MainWindow::drawLineActionTriggered()
emit changeCurrentShape(Shape::Line);
void MainWindow::drawRectActionTriggered()
emit changeCurrentShape(Shape::Rect);
应该说,从以往的学习中可以看出,这里的代码没有什么奇怪的了。我们在MainWindow类里面声明了一个信号,changeCurrentShape(Shape::Code),用于按钮按下后通知画图板。注意,QActio的triggered()信号是没有参数的,因此,我们需要在QAction的槽函数中重新emit我们自己定义的信号。构造函数里面创建了两个QAction,一个是 drawLineAction,一个是drawRectAction,分别用于绘制直线和矩形。MainWindow的中心组件是PainWidget,也就是我们的画图板。QQ:
登录百度帐号我的游戏推荐游戏
后查看最近玩过的游戏
为兴趣而生,贴吧更懂你。或新手求助!安装Qt5.2.0怎么没有Qt Gui Application了?下面的错误又是什么回事?_百度知道
按默认排序
没有找到QLabel这个头文件,你看看pro里有没有加QT += gui
其他类似问题
application的相关知识
等待您来回答
下载知道APP
随时随地咨询
出门在外也不愁我用QT Creator打开gui qt4编程(第二版)的代码hello.pro,我发现调试和运行都不能使用.按钮都是禁用的_百度知道
我用QT Creator打开gui qt4编程(第二版)的代码hello.pro,我发现调试和运行都不能使用.按钮都是禁用的
在学习qt,发现下的代码,直接用creator打开pro文件,不能用。按钮式禁用状态
creator没有配置编译套件kit吧。也就是没有设置编译qt的编译程序。这个需要手动设置一下的。
其他类似问题
等待您来回答
下载知道APP
随时随地咨询
出门在外也不愁

我要回帖

更多关于 外文文献 的文章

 

随机推荐