摘要: 1、SC选中整条line 2、SN选中整个net 3、SL鼠标左键拖动选择经过的线和器件 阅读全文
posted @ 2024-10-24 14:58 *^VV^* 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 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^* 阅读(7) 评论(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^* 阅读(1) 评论(0) 推荐(0) 编辑
摘要: /etc/init.d/S99QTDesktop #!/bin/sh## Start/stop QTdesktop# export XDG_RUNTIME_DIR=/usr/qt-armhf/lib #配置tslib export TSLIB_TSDEVICE=/dev/input/event1ex 阅读全文
posted @ 2024-08-31 21:07 *^VV^* 阅读(29) 评论(0) 推荐(0) 编辑
摘要: 1、配置/etc/udhcpd.conf start 192.168.1.20end 192.168.1.50interface wlan0max_leases 30 option subnet 255.255.255.0option router 192.168.1.1option dns 8.8 阅读全文
posted @ 2024-07-03 19:43 *^VV^* 阅读(36) 评论(0) 推荐(0) 编辑
摘要: 1、新建 /etc/init.d/S88autowifi 内容如下: #!/bin/sh## Start the wifi....# # Debian ifupdown needs the /run/wifi lock directorymkdir -p /run/wifi #自定义变量interf 阅读全文
posted @ 2024-07-01 15:09 *^VV^* 阅读(77) 评论(0) 推荐(0) 编辑