
QT
seamanj
这个作者很懒,什么都没留下…
展开
-
qt UI design tips
当一个控件不能居中时, 尝试将其放入qwidget中去居中设计页面时, 先建立一个qFrame, 然后将所有控件放入qFrame中, 这样方便以后调整尺寸原创 2020-06-20 21:01:44 · 238 阅读 · 0 评论 -
QTextEdit 不允许输入文字
禁用keyPressEventvoid ImageEdit::keyPressEvent(QKeyEvent *event){// qDebug() << "keypressed"; if ((event->modifiers() & Qt::ControlModifier) && (event->key()==Qt::Ke...原创 2020-03-28 07:52:02 · 4560 阅读 · 2 评论 -
关于vertical layout不能水平居中对齐的原因
vertical layout只管垂直分布, 所以如果其中某个widget不能水平对齐, 则创建一个qWidget, 然后在qWidget里面把widget水平对齐,原创 2020-03-25 10:56:53 · 650 阅读 · 0 评论 -
change qtcreator3.6.0 backbround color on ubuntu 14.04
most of steps have been listed on: https://github.com/mervick/Qt-Creator-Darcula1. download the theme file from the website2. there are 2 files and 1 folder we need, namely, darcula.css, darcu原创 2016-05-31 22:40:22 · 1017 阅读 · 0 评论 -
QT30 how to use QcheckBox and QRadioButton in qt
mainwindow.cpp#include "mainwindow.h"#include "ui_mainwindow.h"#include MainWindow::MainWindow(QWidget *parent) : QMainWindow(parent), ui(new Ui::MainWindow){ ui->setupUi(this);原创 2016-03-31 04:01:31 · 552 阅读 · 0 评论 -
QT29 how to use QWebView and open web page in QWebView
for qt 5 or above1. modify pro file#-------------------------------------------------## Project created by QtCreator 2016-03-30T20:04:00##-------------------------------------------------QT原创 2016-03-31 03:53:19 · 545 阅读 · 0 评论 -
QT28 how to display a splash screen in qt
modify main.cpp#include "mainwindow.h"#include #include #include int main(int argc, char *argv[]){ QApplication a(argc, argv); QSplashScreen *splash = new QSplashScreen(); sp原创 2016-03-31 03:44:49 · 419 阅读 · 0 评论 -
QT27 how to read text file and display file to a textbrowser or textedit
#include "mainwindow.h"#include "ui_mainwindow.h"#include #include #include MainWindow::MainWindow(QWidget *parent) : QMainWindow(parent), ui(new Ui::MainWindow){ ui->setupUi(this);原创 2016-03-31 03:36:50 · 466 阅读 · 0 评论 -
QT24&25 how to run exe file by clicking a button in Qt
#include "mainwindow.h"#include "ui_mainwindow.h"#include #include MainWindow::MainWindow(QWidget *parent) : QMainWindow(parent), ui(new Ui::MainWindow){ ui->setupUi(this);}MainWin原创 2016-03-31 03:16:41 · 564 阅读 · 0 评论 -
QT23 how to open a website in a default user browser
#include "mainwindow.h"#include "ui_mainwindow.h"#include #include MainWindow::MainWindow(QWidget *parent) : QMainWindow(parent), ui(new Ui::MainWindow){ ui->setupUi(this);}MainWi原创 2016-03-31 03:08:25 · 718 阅读 · 0 评论 -
QT22 database values in QLineEdit or textbox if select QListView
1.modify the employeeinfo.cpp#include "employeeinfo.h"#include "ui_employeeinfo.h"#include "login.h"#include EmployeeInfo::EmployeeInfo(QWidget *parent) : QDialog(parent), ui(new Ui::Emp原创 2016-03-31 02:59:53 · 545 阅读 · 0 评论 -
QT21 Display selected row from QTableView to QlineEdit
1. modify employeeinfo.cpp #include "employeeinfo.h"#include "ui_employeeinfo.h"#include "login.h"#include EmployeeInfo::EmployeeInfo(QWidget *parent) : QDialog(parent), ui(new Ui::Emplo原创 2016-03-31 02:53:51 · 862 阅读 · 0 评论 -
QT20 database values in QLineEdit or textbox if select combobox
1.modify employeeinfo window2. modify employee.cpp #include "employeeinfo.h"#include "ui_employeeinfo.h"#include "login.h"#include EmployeeInfo::EmployeeInfo(QWidget *parent) : QDialog原创 2016-03-31 02:28:05 · 600 阅读 · 0 评论 -
QT19 How to link QComboBox with sqlite Database values
1.modify employeeinfo window2.modify employeeinfo.cpp#include "employeeinfo.h"#include "ui_employeeinfo.h"#include "login.h"#include EmployeeInfo::EmployeeInfo(QWidget *parent) : QDial原创 2016-03-31 02:12:51 · 617 阅读 · 0 评论 -
QT18 how to link QListView with sqlite Database values
1. modify employeeinfo window2. modify employeeinfo.cpp#include "employeeinfo.h"#include "ui_employeeinfo.h"#include "login.h"#include EmployeeInfo::EmployeeInfo(QWidget *parent) : QDi原创 2016-03-31 02:02:27 · 561 阅读 · 0 评论 -
Qt17 load sqlite table data to qtableview
1. reedit employeeinfo window2. modify employeeinfo.cpp#include "employeeinfo.h"#include "ui_employeeinfo.h"#include "login.h"#include EmployeeInfo::EmployeeInfo(QWidget *parent) : QDi原创 2016-03-31 01:52:49 · 961 阅读 · 0 评论 -
some notice about slot funtions
when you want to use slot functions technique, you need to define classes like follows:class Scene : public QObject{ Q_OBJECTIn order to let qt know those changes, it is very necessary to qma原创 2016-02-18 20:03:09 · 425 阅读 · 0 评论 -
QSqlDatabase: QMYSQL driver not loaded problem under qt5.5 in ubuntu14
the error looks like:QSqlDatabase: QMYSQL driver not loadedQSqlDatabase: available drivers: QSQLITE QMYSQL QMYSQL3 QPSQL QPSQL7let's find out the solution step by step:1. open terminal, t原创 2016-05-16 23:49:39 · 1777 阅读 · 0 评论 -
qtcreator 用cmake找不到userPath的解决方法
在写CUDA程序的时候,即使在cmake用了include_directories, 然后ctrl+shift+F12一查看还没有UserPath, 尽管可以编译成功, 但是错误的提示找不到头文件让程序写起来十分头痛. 总结一下原因, 有可能是qtCreator的bug, 但是我看了一下,大概是因为只有.h 和 .cu文件 没有.cpp文件造成的, 解决方法 就是加一个空的同名的.cpp就可以了...原创 2019-05-17 04:17:12 · 864 阅读 · 0 评论 -
解决Ubuntu下Qt Creator无法输入中文
环境:ubuntu16.04fcitx的输入法Qt Creator 5.10.1首先需要安装sudo apt-get install fcitx-frontend-qt5然后将:/usr/lib/x86_64-linux-gnu/qt5/plugins/platforminputcontexts/libfcitxplatforminputcontextplugin.so拷贝到:~...转载 2019-05-21 17:18:32 · 343 阅读 · 0 评论 -
CHECK opengl version
TEMPLATE = appCONFIG += console c++11CONFIG -= app_bundleCONFIG -= qtSOURCES += \ main.cppLIBS += -lGLEW -lGLU -lglut -lGL#include <GL/glew.h> // the opengl library wrap...原创 2018-09-10 04:12:27 · 665 阅读 · 0 评论 -
using doxygen plugin in qtcreator 4.5.0 on mac
download creator source code http://www.mirrorservice.org/sites/download.qt-project.org/official_releases/qtcreator/4.5/4.5.0/qt-creator-opensource-src-4.5.0.zip compile by existing qtcreator or qmak原创 2018-01-02 04:08:30 · 1091 阅读 · 0 评论 -
QTCreator快捷键
F2 跳转到函数定义(和Ctrl+鼠标左键一样的效果)Shift+F2 声明和定义之间切换F4 头文件和源文件之间切换 Ctrl+鼠标滚轮的使用方法:按住Ctrl,使鼠标滚轮旋转,可调整字体的大小 Ctrl+F使用方法:(作用:查找当前文档)选中你想选的内容之后,按下Ctrl+F,会列出所有和你选的内容一样的语句 F3作用:查转载 2015-06-02 15:15:12 · 686 阅读 · 0 评论 -
how to install qt on ubuntu
1. go to link : www.qt.io/downloadto get a download link: http://download.qt.io/official_releases/online_installers/qt-unified-linux-x64-online.run2.go to the directory where the above program原创 2016-02-02 01:55:53 · 783 阅读 · 0 评论 -
qtcreator4.4.1中cmake 与cmake3.5.1本身generate出来的setting是有区别的解决方法
虽然他们都是用的同一个程序,但是生成出来的结果却不一样,设置也不一样,解决方法1. 要么人为手动加每一个setting 2. 先自己用cmake编一次,建立一个build文件夹 然后用qtcreatorProjects->build & run-> right click -> import Existing Build ... 选择刚才的build文件夹3原创 2017-10-24 23:39:26 · 1244 阅读 · 0 评论 -
watch the fixed address in qt
locals and expressesright clickadd express evaluator for xxxxxxxxthen change xxxxxxxxx to xxxxxxxxx@10or open memory edit原创 2017-10-31 04:12:08 · 271 阅读 · 0 评论 -
QT中文乱码深度剖析
为了彻底弄清QT以及MSVC的工作原理, 下面用两个例子来实战1. QString string1("笔"); qDebug() << string1; qDebug() << string1.toUtf8() ; qDebug() 笔的UTF-8的表示为\XE7 \XAC \X94,GB2312的表示为\XB1 \XCA原创 2017-04-17 21:45:42 · 713 阅读 · 0 评论 -
关于QT中奇数个汉字出现newline in constant的错误
前面写了一篇关于QT中使用汉字的博客以为对汉字的使用了如指掌, 没想到今天把字符串一换, 换成偶数个没问题, 换成奇数个汉字, 哇擦, 报一个错误newline in constant, 瞬间意识到自己还是太年轻.好了, 开始正题先说下 在QT Creator可能出现的乱码的情况:1. 打开文件时, 汉字就是乱码, 这种情况是因为你向文件写汉字的时候,文件是一套原创 2017-04-14 01:36:46 · 7220 阅读 · 0 评论 -
QTCreator中字符编码问题以及WINDOWS API A/W两种版本的说明
首先说明下windows中API有两种结尾的一种以A结尾一种以W结尾, A代表ANSI编码,W代表UTF-16编码, 这里承清下unicode不是编码方式, 而是字符集.ANSI编码对于不同的国家和地区制定了不同的编码方式,GB2312(简体中文),BIG5(繁体中文),JIS(日文),在简体中文系统下,ansi 编码代表 GB2312 编码,在日文操作系统下,ansi 编码代表 J原创 2017-03-25 08:59:07 · 4471 阅读 · 1 评论 -
config libigl in qt through cmake under ubuntu
1. download libiglopen terminal, turn to the directory where you want libigl download, then type:git clone --recursive https://github.com/libigl/libigl.git 2. open qtcreator, File原创 2016-05-17 21:51:40 · 1897 阅读 · 0 评论 -
QT16 delete data from sqlite database with pushbutton
1. modify the employeeinfo window2. modify the employeeinfo.cpp#include "employeeinfo.h"#include "ui_employeeinfo.h"#include "login.h"#include EmployeeInfo::EmployeeInfo(QWidget *parent) :原创 2016-03-31 01:31:31 · 540 阅读 · 0 评论 -
Qt15 Update a data from Sqlite database with pushbutton
1. reedit the employeeinfo window as2. modify the employeeinfo.cpp#include "employeeinfo.h"#include "ui_employeeinfo.h"#include "login.h"#include EmployeeInfo::EmployeeInfo(QWidget *parent原创 2016-03-31 01:19:40 · 636 阅读 · 0 评论 -
槽函数的好处
比如类A里面包含类a1,a2,这时a1要与a2通信的话,如果用槽函数则不需要它们之间相互知道,只需要在类A中把它们关联起来即可.原创 2016-01-22 23:16:38 · 1373 阅读 · 0 评论 -
qt pro 里面变量的引用
VAR = foobar => Assign value to variable when qmake is run$$VAR => QMake variable's value at the time qmake is run$${VAR} => QMake variable's value at the time qmake is run (identical but enclosed to原创 2015-12-03 03:44:45 · 2431 阅读 · 0 评论 -
QT+CUDA7.5+UBUNTU14.04
接着前面有篇文章介绍在windows上面对他们进行合成,这篇文章我们介绍下在ubuntu上面对其合成。程序用的是brown大学里面snow-master,该project包括了几个项目,其中有个CUDA_helloworld刚好可以拿来练手CUDA在ubuntu上面的安装我就不多介绍,攻略帖一大堆下面开始介绍下这个项目main.cpp内容如下:#原创 2015-12-03 04:24:19 · 2508 阅读 · 2 评论 -
lesson 4 Show Messages in Messagebox
1. 拖动一个pushbutton,改名为show message2.增加一个clicked()的slot3.在增加的函数里面写入如下语句void MainWindow::on_pushButton_2_clicked(){ QMessageBox::information(this, tr("The Title"),tr("This is a message "));}原创 2015-12-12 10:16:48 · 435 阅读 · 0 评论 -
Lesson 2 Create First Qt Program
1.file->new file or project2.template 选择 applications 中的 qt widgets application3.然后我们打开mainwindow.ui文件在设计窗口里面我们拖入一个pushbutton 和 一个label,并把pushbutton的text改成ok4.接下来我们右击ok pushbutton,选择go to原创 2015-12-12 01:33:33 · 420 阅读 · 0 评论 -
Lesson6 how to use HTML QT Widgets
1.拖动一个label2.然后双击修改label的text为:Seamanj's blog3.然后记得把QLabel里面的OpenExternalLinks的勾check上运行,点击就可以打开了原创 2015-12-12 13:05:27 · 379 阅读 · 0 评论 -
Lesson5 How to open a new window from a pushbutton
1. 右击项目,选择add new->QT->QT Designer Form class,然后template选择Dialog without buttons,将类命名为SecDialog2.然后在主窗口里面拖一个pushbutton,双击修改它的标题为Open Second Win,右击添加clicked slot3.由于要在Mainwindow.cpp里面引用它,所以原创 2015-12-12 11:50:10 · 381 阅读 · 0 评论 -
lesson3 Qt Signal and slots (QSlider and QProgressBar)
1. 打开设计窗口,拖动一个滑动条和进度条在窗口里面2.select both,然后选择layout vertically,调整大小3.选择,edit signals/slogs,然后从滑动条拖到进度条,在弹出的窗口中滑动条选择valueChanged,进度条选择setValue4.运行,拖动滑动条,进度条也会变5.如果想要删除signal/slot的话,右原创 2015-12-12 02:03:25 · 665 阅读 · 0 评论