09 2024 档案

摘要:QColorDialog cdg; int windowWidth = cdg.geometry().width(); int windowHeight = cdg.geometry().height(); cdg.move((screenWidth-windowWidth)/2+150 ,(scr 阅读全文
posted @ 2024-09-13 08:44 *^VV^* 阅读(3) 评论(0) 推荐(0) 编辑
摘要:Mplayer常用命令 loadfile name //加载媒体文件namevolume 100 1 //设置音量,中间位音量的大小0-100mute 1/0 //静音开关pause //播放/暂停get_time_length //获取播放文件的长度,以秒为单位seek value //定位,va 阅读全文
posted @ 2024-09-13 08:33 *^VV^* 阅读(28) 评论(0) 推荐(0) 编辑
摘要:#include "widget.h" #include <QHBoxLayout> #include <QListWidgetItem> Widget::Widget(QWidget *parent) : QWidget(parent) { resize(600,400); p_ListWidge 阅读全文
posted @ 2024-09-12 10:07 *^VV^* 阅读(8) 评论(0) 推荐(0) 编辑
摘要:#include "widget.h" #include <QListWidgetItem> #include <QAction> #include <QDebug> Widget::Widget(QWidget *parent) : QWidget(parent) { resize(300,400 阅读全文
posted @ 2024-09-12 09:46 *^VV^* 阅读(2) 评论(0) 推荐(0) 编辑
摘要:#include "widget.h" #include <QDebug> #include <QTabBar> Widget::Widget(QWidget *parent) : QWidget(parent) { p_TabWidget = new QTabWidget; p_TabWidget 阅读全文
posted @ 2024-09-12 08:50 *^VV^* 阅读(10) 评论(0) 推荐(0) 编辑
摘要:widget.h #ifndef WIDGET_H #define WIDGET_H #include <QWidget> #include <QMenu> class Widget : public QWidget { Q_OBJECT public: Widget(QWidget *parent 阅读全文
posted @ 2024-09-10 11:27 *^VV^* 阅读(2) 评论(0) 推荐(0) 编辑