码迷,mamicode.com
首页 >  
搜索关键字:qwidget    ( 603个结果
SDL结合QWidget的简单使用说明(2)
上篇主要讲了针对yv12流数据的渲染,但有时候我们显示视频还要求加一些信息,比如头像,昵称等等。一般的想法是在渲染窗口之上做一个小控件来负责; 但是很遗憾,你会发现你的控件被SDL的渲染完全遮住了,渲染的原理并非是在本窗口的刷新做,而是另外有一层负责,这也是为什么上篇强调一定要setUpdateEn ...
分类:其他好文   时间:2018-10-07 10:33:18    阅读次数:213
PyQt5-绝对定位+QLabel的创建-8
1 import sys 2 from PyQt5.QtWidgets import QWidget,QLabel,QApplication 3 #demo_8: 绝对定位 4 5 class Example(QWidget): 6 def __init__(self): 7 super().__i... ...
分类:其他好文   时间:2018-09-30 18:19:37    阅读次数:218
PyQt5-网格布局(QGridLayout)-11
1 #demo_12:网格布局 2 import sys 3 from PyQt5.QtWidgets import QApplication,QWidget,QGridLayout,QPushButton,QLineEdit,QTextEdit,QLabel 4 5 class Example(Q... ...
分类:其他好文   时间:2018-09-30 18:15:01    阅读次数:165
PyQt5-网格布局(QGridLayout)-10
1 #demo_11:网格布局 2 import sys 3 from PyQt5.QtWidgets import QApplication,QWidget,QGridLayout,QPushButton 4 5 class Example(QWidget): 6 def __init__(sel... ...
分类:其他好文   时间:2018-09-30 18:11:59    阅读次数:858
PyQt5-关闭窗体显示提示框(窗口界面显示器上居中)-5
1 import sys 2 from PyQt5.QtWidgets import QApplication, QWidget,QToolTip,QPushButton,QMessageBox,QDesktopWidget 3 from PyQt5.QtGui import QIcon,QFont... ...
分类:Windows程序   时间:2018-09-30 18:10:27    阅读次数:380
vs2015 + opencv3.4.0 + qt msvc2015_64-5.7.1 视屏显示
1、qt application 2、qtvideoread.cpp中代码为: #include "qtvideoread.h"#include <opencv2/core/core.hpp>#include <opencv2/highgui/highgui.hpp>#include "opencv ...
分类:其他好文   时间:2018-09-20 18:02:14    阅读次数:373
2.QT-窗口组件(QWidget),QT坐标系统,初探消息处理(信号与槽)
本章主要内容如下: 1) 窗口组件(QWidget) 2) QT坐标系统 3) 消息处理(信号与槽) 介绍 Qt以组件对象的方式构建图形用户界面 Qt中没有父组件的顶级组件,则被叫做窗口 组件的类型分为: 容器类(父组件) : 用于包含功能的界面组件 功能类(子组件) : 用于实现特定的交互功能 如 ...
分类:其他好文   时间:2018-09-19 12:51:17    阅读次数:199
除了信号触发线程与接收者线程相同的情况能直接调用到slot,其它情况都依赖事件机制(解决上面代码收不到信号的问题其实很简单,在线程的run();函数中添加一个事件循环就可以了,即加入一句exec();)
MainWindow::MainWindow(QWidget *parent) : MainWindow::MainWindow(QWidget *parent) : QMainWindow(parent) QMainWindow(parent) { { pThreadCon = new CSeri ...
分类:编程语言   时间:2018-08-28 21:59:36    阅读次数:222
qt--QVBoxLayout
1 QWidget *window = new QWidget(); 2 //创建按键,暂无配置slot 3 QPushButton *button1 = new QPushButton(tr("one")); 4 QPushButton *button2 = new QPushButton(tr(... ...
分类:其他好文   时间:2018-08-24 11:46:44    阅读次数:167
继承QWidget的派生类控件不能设置QSS问题解决(style()->drawPrimitive(QStyle::PE_Widget)
自定义控件时基类用了QWidget,发现qss设置不起作用,需要重载其paintEvent函数即可; 如下代码: void CCustomWidget::paintEvent(QPaintEvent*) ...
分类:其他好文   时间:2018-08-23 17:40:14    阅读次数:797
603条   上一页 1 ... 13 14 15 16 17 ... 61 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!