- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试在 QtTreeView 小部件中实现上下文菜单。使用中的建议 Why mouseMoveEvent does nothing in PyQt5我创建了 QTreeView 的子类:
class TreeView(QTreeView):
def mousePressEvent(self, event):
if event.type() == QEvent.MouseButtonPress:
if event.button() == Qt.LeftButton:
print( "Left click")
elif event.button() == Qt.RightButton:
print( "Right click")
elif event.button() == Qt.MiddleButton:
print( "Middle click")
super(TreeView, self).mousePressEvent(event)
我将覆盖 QtTreeView(我在 Qt Designer 中设计的),如下所示:
self.dockWidget.treeView = TreeView(self.dockWidget.treeView)
这可以工作并允许在 TreeView 中捕获 mousePressEvents,但它会更改 TreeView 中内容的大小:
当它应该看起来像:
我尝试设置 SizePolicy:
self.dockWidget.treeView.setSizePolicy(QSizePolicy.Expanding,QSizePolicy.Expanding)
但这并没有什么区别。我正在寻找一种方法来防止它改变大小或在改变后将其恢复到原始大小。
Reprex - 3 个文件:
main.py
from PyQt5.QtWidgets import QApplication, QMainWindow, QDockWidget,
QListWidget,QTextEdit,QTreeView, QSizePolicy
from PyQt5.QtGui import QIcon, QStandardItemModel
from PyQt5.QtCore import Qt, QEvent
import sys
from utility_core_dockwidget import UtilityDockWidget
class Window(QMainWindow):
def __init__(self):
super().__init__()
title= "Dockable Application"
top=400
left=400
width=600
height= 500
icon = "icon.png"
self.setWindowTitle(title)
self.setGeometry(top,left,width,height)
self.setWindowIcon(QIcon("icon.png"))
self.textEdit = QTextEdit()
self.setCentralWidget(self.textEdit)
self.dockAble()
self.populateTreeView()
def dockAble(self):
self.dock = UtilityDockWidget()
self.dock.treeView= TreeView(self.dock.treeView) #overwriting the treeview with the custom class causes the display issues
self.addDockWidget(Qt.RightDockWidgetArea,self.dock)
self.dock.treeView.setSizePolicy(QSizePolicy.Expanding,QSizePolicy.Expanding)
def populateTreeView(self):
print("here")
model = self.createTreeViewLayerModel(self.dock.treeView)
self.dock.treeView.setModel(model)
for i in range (1,10):
layerName= f"LayerName {i}"
visibility = "Visible"
layerId = i
self.addTreeViewItem(model, layerName, visibility, layerId)
def createTreeViewLayerModel(self,parent):
model = QStandardItemModel(0, 3, parent)
model.setHeaderData(0, Qt.Horizontal, "Layer Name")
model.setHeaderData(1, Qt.Horizontal, "Visibility")
model.setHeaderData(2, Qt.Horizontal, "Layer ID")
return model
def addTreeViewItem(self,model, layerName, visibility,layerId):
model.insertRow(0)
model.setData(model.index(0, 0), layerName)
model.setData(model.index(0, 1), visibility)
model.setData(model.index(0, 2), layerId)
class TreeView(QTreeView):
def mousePressEvent(self, event):
if event.type() == QEvent.MouseButtonPress:
if event.button() == Qt.LeftButton:
print( "Left click")
elif event.button() == Qt.RightButton:
print( "Right click")
elif event.button() == Qt.MiddleButton:
print( "Middle click")
super(TreeView, self).mousePressEvent(event)
app = QApplication(sys.argv)
window=Window()
window.show()
app.exec()
utility_core_dockwidget.py:
import os
from PyQt5 import uic, QtWidgets, QtGui
from PyQt5.QtCore import pyqtSignal, Qt
FORM_CLASS, _ = uic.loadUiType(os.path.join(
os.path.dirname(__file__), 'utility_core_dockwidget_base.ui'))
class UtilityDockWidget(QtWidgets.QDockWidget, FORM_CLASS):
closingPlugin = pyqtSignal()
def __init__(self, parent=None):
"""Constructor."""
super(UtilityDockWidget, self).__init__(parent)
self.setupUi(self)
def closeEvent(self, event):
self.closingPlugin.emit()
event.accept()
utility_core_dockwidget_base.ui:
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>utilityDockWidgetBase</class>
<widget class="QDockWidget" name="utilityDockWidgetBase">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>660</width>
<height>807</height>
</rect>
</property>
<property name="windowTitle">
<string>Utility</string>
</property>
<widget class="QWidget" name="dockWidgetContents">
<layout class="QHBoxLayout" name="horizontalLayout_7">
<item>
<widget class="QTabWidget" name="tabWidget_2">
<property name="sizePolicy">
<sizepolicy hsizetype="MinimumExpanding" vsizetype="MinimumExpanding">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="minimumSize">
<size>
<width>200</width>
<height>500</height>
</size>
</property>
<property name="currentIndex">
<number>0</number>
</property>
<widget class="QWidget" name="tab_5">
<attribute name="title">
<string>Layer Source Changer</string>
</attribute>
<layout class="QVBoxLayout" name="verticalLayout_7">
<item>
<layout class="QGridLayout" name="gridLayout_2">
<property name="topMargin">
<number>6</number>
</property>
<item row="1" column="0">
<widget class="QLabel" name="label_8">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
</property>
<property name="text">
<string>Source List</string>
</property>
</widget>
</item>
<item row="0" column="1" colspan="2">
<widget class="QLineEdit" name="searchBar">
<property name="sizePolicy">
<sizepolicy hsizetype="MinimumExpanding" vsizetype="Fixed">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="maximumSize">
<size>
<width>10000</width>
<height>16777215</height>
</size>
</property>
</widget>
</item>
<item row="1" column="1">
<widget class="QComboBox" name="layerSourceList">
<property name="sizePolicy">
<sizepolicy hsizetype="MinimumExpanding" vsizetype="Fixed">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="minimumSize">
<size>
<width>250</width>
<height>0</height>
</size>
</property>
<property name="maximumSize">
<size>
<width>10000</width>
<height>16777215</height>
</size>
</property>
<property name="font">
<font>
<family>MS Shell Dlg 2</family>
</font>
</property>
<property name="editable">
<bool>false</bool>
</property>
</widget>
</item>
<item row="1" column="2">
<widget class="QPushButton" name="browseNewSource">
<property name="maximumSize">
<size>
<width>35</width>
<height>16777215</height>
</size>
</property>
<property name="text">
<string>...</string>
</property>
</widget>
</item>
<item row="0" column="0">
<widget class="QLabel" name="label_9">
<property name="sizePolicy">
<sizepolicy hsizetype="MinimumExpanding" vsizetype="Preferred">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="maximumSize">
<size>
<width>50</width>
<height>16777215</height>
</size>
</property>
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
</property>
<property name="layoutDirection">
<enum>Qt::LeftToRight</enum>
</property>
<property name="autoFillBackground">
<bool>false</bool>
</property>
<property name="text">
<string>Search</string>
</property>
</widget>
</item>
</layout>
</item>
<item>
<layout class="QHBoxLayout" name="horizontalLayout_8">
<item>
<widget class="QPushButton" name="refreshComboBox">
<property name="sizePolicy">
<sizepolicy hsizetype="Minimum" vsizetype="Fixed">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="minimumSize">
<size>
<width>75</width>
<height>0</height>
</size>
</property>
<property name="maximumSize">
<size>
<width>120</width>
<height>16777215</height>
</size>
</property>
<property name="text">
<string>Refresh Sources</string>
</property>
</widget>
</item>
<item>
<widget class="QCheckBox" name="onlyVisibleCheckbox">
<property name="layoutDirection">
<enum>Qt::LeftToRight</enum>
</property>
<property name="text">
<string>Only Visible Layers</string>
</property>
</widget>
</item>
</layout>
</item>
<item>
<layout class="QGridLayout" name="gridLayout_4">
<property name="topMargin">
<number>10</number>
</property>
<item row="1" column="0">
<widget class="QPushButton" name="updateSelectedButton">
<property name="sizePolicy">
<sizepolicy hsizetype="MinimumExpanding" vsizetype="Fixed">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="minimumSize">
<size>
<width>110</width>
<height>0</height>
</size>
</property>
<property name="maximumSize">
<size>
<width>100</width>
<height>16777215</height>
</size>
</property>
<property name="text">
<string>Update Selected</string>
</property>
</widget>
</item>
<item row="1" column="1">
<widget class="QPushButton" name="updateAllButton">
<property name="minimumSize">
<size>
<width>110</width>
<height>0</height>
</size>
</property>
<property name="maximumSize">
<size>
<width>110</width>
<height>16777215</height>
</size>
</property>
<property name="toolTip">
<string>Update all the layers with sources found in Source List</string>
</property>
<property name="text">
<string>Update All</string>
</property>
</widget>
</item>
<item row="1" column="2">
<spacer name="horizontalSpacer_5">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="sizeType">
<enum>QSizePolicy::Expanding</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>40</width>
<height>20</height>
</size>
</property>
</spacer>
</item>
<item row="2" column="0">
<widget class="QLabel" name="sourceInformationLabel">
<property name="maximumSize">
<size>
<width>120</width>
<height>16777215</height>
</size>
</property>
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
</property>
<property name="text">
<string>Source Information</string>
</property>
</widget>
</item>
<item row="0" column="0">
<widget class="QLabel" name="label_10">
<property name="sizePolicy">
<sizepolicy hsizetype="MinimumExpanding" vsizetype="Preferred">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="maximumSize">
<size>
<width>110</width>
<height>16777215</height>
</size>
</property>
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
</property>
<property name="toolTip">
<string>Update to the latest version</string>
</property>
<property name="text">
<string>Automatic Options</string>
</property>
</widget>
</item>
</layout>
</item>
<item>
<widget class="QTreeView" name="treeView">
<property name="sizePolicy">
<sizepolicy hsizetype="MinimumExpanding" vsizetype="MinimumExpanding">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="minimumSize">
<size>
<width>0</width>
<height>0</height>
</size>
</property>
<property name="maximumSize">
<size>
<width>16777215</width>
<height>16777215</height>
</size>
</property>
<property name="styleSheet">
<string notr="true">selection-color: qradialgradient(spread:repeat, cx:0.5, cy:0.5, radius:0.077, fx:0.5, fy:0.5, stop:0 rgba(0, 169, 255, 147), stop:0.497326 rgba(0, 0, 0, 147), stop:1 rgba(0, 169, 255, 147));</string>
</property>
<property name="rootIsDecorated">
<bool>false</bool>
</property>
<property name="sortingEnabled">
<bool>true</bool>
</property>
<property name="animated">
<bool>true</bool>
</property>
<attribute name="headerCascadingSectionResizes">
<bool>true</bool>
</attribute>
<attribute name="headerDefaultSectionSize">
<number>200</number>
</attribute>
<attribute name="headerShowSortIndicator" stdset="0">
<bool>true</bool>
</attribute>
</widget>
</item>
<item>
<widget class="QLabel" name="label_11">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
</property>
<property name="text">
<string>Log</string>
</property>
</widget>
</item>
<item>
<widget class="QTextEdit" name="textEdit"/>
</item>
<item>
<spacer name="verticalSpacer_4">
<property name="orientation">
<enum>Qt::Vertical</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>20</width>
<height>40</height>
</size>
</property>
</spacer>
</item>
</layout>
</widget>
</widget>
</item>
</layout>
</widget>
</widget>
<resources/>
<connections/>
</ui>
最佳答案
您假设以下代码:
self.dockWidget.treeView = TreeView(self.dockWidget.treeView)
正在替换 Qt Designer 创建的 QTreeView,因为不,您只是创建另一个 QTreeView,它是原始 QTreeView 的子级。
您的逻辑类似于:
x = 10
y = x
x = 100
你认为 y 的值为 100,但显然不是。
<小时/>这种情况下的解决方案是推广该小部件,有关详细信息,请检查以下内容:
考虑到您的文件必须具有以下结构:
├── main.py
├── treeview.py
├── utility_core_dockwidget_base.ui
└── utility_core_dockwidget.py
main.py
from PyQt5.QtCore import Qt
from PyQt5.QtGui import QIcon, QStandardItemModel
from PyQt5.QtWidgets import QApplication, QMainWindow, QDockWidget, QListWidget, QTextEdit, QTreeView,QSizePolicy
from utility_core_dockwidget import UtilityDockWidget
class Window(QMainWindow):
def __init__(self):
super().__init__()
title = "Dockable Application"
top, left, width, height = 400, 400, 600, 500
icon = "icon.png"
self.setWindowTitle(title)
self.setGeometry(top, left, width, height)
self.setWindowIcon(QIcon("icon.png"))
self.textEdit = QTextEdit()
self.setCentralWidget(self.textEdit)
self.dockAble()
self.populateTreeView()
def dockAble(self):
self.dock = UtilityDockWidget()
self.addDockWidget(Qt.RightDockWidgetArea, self.dock)
self.dock.treeView.setSizePolicy(QSizePolicy.Expanding, QSizePolicy.Expanding)
def populateTreeView(self):
print("here")
model = self.createTreeViewLayerModel(self.dock.treeView)
self.dock.treeView.setModel(model)
for i in range(1, 10):
layerName = f"LayerName {i}"
visibility = "Visible"
layerId = i
self.addTreeViewItem(model, layerName, visibility, layerId)
def createTreeViewLayerModel(self, parent):
model = QStandardItemModel(0, 3, parent)
model.setHeaderData(0, Qt.Horizontal, "Layer Name")
model.setHeaderData(1, Qt.Horizontal, "Visibility")
model.setHeaderData(2, Qt.Horizontal, "Layer ID")
return model
def addTreeViewItem(self, model, layerName, visibility, layerId):
model.insertRow(0)
model.setData(model.index(0, 0), layerName)
model.setData(model.index(0, 1), visibility)
model.setData(model.index(0, 2), layerId)
if __name__ == "__main__":
import sys
app = QApplication(sys.argv)
window = Window()
window.show()
sys.exit(app.exec())
treeview.py
from PyQt5 import QtCore, QtWidgets
class TreeView(QtWidgets.QTreeView):
def mousePressEvent(self, event):
if event.type() == QtCore.QEvent.MouseButtonPress:
if event.button() == QtCore.Qt.LeftButton:
print("Left click")
elif event.button() == QtCore.Qt.RightButton:
print("Right click")
elif event.button() == QtCore.Qt.MiddleButton:
print("Middle click")
super(TreeView, self).mousePressEvent(event)
utility_core_dockwidget_base.ui
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>utilityDockWidgetBase</class>
<widget class="QDockWidget" name="utilityDockWidgetBase">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>660</width>
<height>807</height>
</rect>
</property>
<property name="windowTitle">
<string>Utility</string>
</property>
<widget class="QWidget" name="dockWidgetContents">
<layout class="QHBoxLayout" name="horizontalLayout_7">
<item>
<widget class="QTabWidget" name="tabWidget_2">
<property name="sizePolicy">
<sizepolicy hsizetype="MinimumExpanding" vsizetype="MinimumExpanding">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="minimumSize">
<size>
<width>200</width>
<height>500</height>
</size>
</property>
<property name="currentIndex">
<number>0</number>
</property>
<widget class="QWidget" name="tab_5">
<attribute name="title">
<string>Layer Source Changer</string>
</attribute>
<layout class="QVBoxLayout" name="verticalLayout_7">
<item>
<layout class="QGridLayout" name="gridLayout_2">
<property name="topMargin">
<number>6</number>
</property>
<item row="1" column="0">
<widget class="QLabel" name="label_8">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
</property>
<property name="text">
<string>Source List</string>
</property>
</widget>
</item>
<item row="0" column="1" colspan="2">
<widget class="QLineEdit" name="searchBar">
<property name="sizePolicy">
<sizepolicy hsizetype="MinimumExpanding" vsizetype="Fixed">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="maximumSize">
<size>
<width>10000</width>
<height>16777215</height>
</size>
</property>
</widget>
</item>
<item row="1" column="1">
<widget class="QComboBox" name="layerSourceList">
<property name="sizePolicy">
<sizepolicy hsizetype="MinimumExpanding" vsizetype="Fixed">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="minimumSize">
<size>
<width>250</width>
<height>0</height>
</size>
</property>
<property name="maximumSize">
<size>
<width>10000</width>
<height>16777215</height>
</size>
</property>
<property name="font">
<font>
<family>MS Shell Dlg 2</family>
</font>
</property>
<property name="editable">
<bool>false</bool>
</property>
</widget>
</item>
<item row="1" column="2">
<widget class="QPushButton" name="browseNewSource">
<property name="maximumSize">
<size>
<width>35</width>
<height>16777215</height>
</size>
</property>
<property name="text">
<string>...</string>
</property>
</widget>
</item>
<item row="0" column="0">
<widget class="QLabel" name="label_9">
<property name="sizePolicy">
<sizepolicy hsizetype="MinimumExpanding" vsizetype="Preferred">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="maximumSize">
<size>
<width>50</width>
<height>16777215</height>
</size>
</property>
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
</property>
<property name="layoutDirection">
<enum>Qt::LeftToRight</enum>
</property>
<property name="autoFillBackground">
<bool>false</bool>
</property>
<property name="text">
<string>Search</string>
</property>
</widget>
</item>
</layout>
</item>
<item>
<layout class="QHBoxLayout" name="horizontalLayout_8">
<item>
<widget class="QPushButton" name="refreshComboBox">
<property name="sizePolicy">
<sizepolicy hsizetype="Minimum" vsizetype="Fixed">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="minimumSize">
<size>
<width>75</width>
<height>0</height>
</size>
</property>
<property name="maximumSize">
<size>
<width>120</width>
<height>16777215</height>
</size>
</property>
<property name="text">
<string>Refresh Sources</string>
</property>
</widget>
</item>
<item>
<widget class="QCheckBox" name="onlyVisibleCheckbox">
<property name="layoutDirection">
<enum>Qt::LeftToRight</enum>
</property>
<property name="text">
<string>Only Visible Layers</string>
</property>
</widget>
</item>
</layout>
</item>
<item>
<layout class="QGridLayout" name="gridLayout_4">
<property name="topMargin">
<number>10</number>
</property>
<item row="1" column="0">
<widget class="QPushButton" name="updateSelectedButton">
<property name="sizePolicy">
<sizepolicy hsizetype="MinimumExpanding" vsizetype="Fixed">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="minimumSize">
<size>
<width>110</width>
<height>0</height>
</size>
</property>
<property name="maximumSize">
<size>
<width>100</width>
<height>16777215</height>
</size>
</property>
<property name="text">
<string>Update Selected</string>
</property>
</widget>
</item>
<item row="1" column="1">
<widget class="QPushButton" name="updateAllButton">
<property name="minimumSize">
<size>
<width>110</width>
<height>0</height>
</size>
</property>
<property name="maximumSize">
<size>
<width>110</width>
<height>16777215</height>
</size>
</property>
<property name="toolTip">
<string>Update all the layers with sources found in Source List</string>
</property>
<property name="text">
<string>Update All</string>
</property>
</widget>
</item>
<item row="1" column="2">
<spacer name="horizontalSpacer_5">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="sizeType">
<enum>QSizePolicy::Expanding</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>40</width>
<height>20</height>
</size>
</property>
</spacer>
</item>
<item row="2" column="0">
<widget class="QLabel" name="sourceInformationLabel">
<property name="maximumSize">
<size>
<width>120</width>
<height>16777215</height>
</size>
</property>
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
</property>
<property name="text">
<string>Source Information</string>
</property>
</widget>
</item>
<item row="0" column="0">
<widget class="QLabel" name="label_10">
<property name="sizePolicy">
<sizepolicy hsizetype="MinimumExpanding" vsizetype="Preferred">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="maximumSize">
<size>
<width>110</width>
<height>16777215</height>
</size>
</property>
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
</property>
<property name="toolTip">
<string>Update to the latest version</string>
</property>
<property name="text">
<string>Automatic Options</string>
</property>
</widget>
</item>
</layout>
</item>
<item>
<widget class="TreeView" name="treeView">
<property name="sizePolicy">
<sizepolicy hsizetype="MinimumExpanding" vsizetype="MinimumExpanding">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="minimumSize">
<size>
<width>0</width>
<height>0</height>
</size>
</property>
<property name="maximumSize">
<size>
<width>16777215</width>
<height>16777215</height>
</size>
</property>
<property name="styleSheet">
<string notr="true">selection-color: qradialgradient(spread:repeat, cx:0.5, cy:0.5, radius:0.077, fx:0.5, fy:0.5, stop:0 rgba(0, 169, 255, 147), stop:0.497326 rgba(0, 0, 0, 147), stop:1 rgba(0, 169, 255, 147));</string>
</property>
<property name="rootIsDecorated">
<bool>false</bool>
</property>
<property name="sortingEnabled">
<bool>true</bool>
</property>
<property name="animated">
<bool>true</bool>
</property>
<attribute name="headerCascadingSectionResizes">
<bool>true</bool>
</attribute>
<attribute name="headerDefaultSectionSize">
<number>200</number>
</attribute>
<attribute name="headerShowSortIndicator" stdset="0">
<bool>true</bool>
</attribute>
</widget>
</item>
<item>
<widget class="QLabel" name="label_11">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
</property>
<property name="text">
<string>Log</string>
</property>
</widget>
</item>
<item>
<widget class="QTextEdit" name="textEdit"/>
</item>
<item>
<spacer name="verticalSpacer_4">
<property name="orientation">
<enum>Qt::Vertical</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>20</width>
<height>40</height>
</size>
</property>
</spacer>
</item>
</layout>
</widget>
</widget>
</item>
</layout>
</widget>
</widget>
<customwidgets>
<customwidget>
<class>TreeView</class>
<extends>QTreeView</extends>
<header>treeview.h</header>
</customwidget>
</customwidgets>
<resources/>
<connections/>
</ui>
获取以下内容:
关于python - 覆盖 mousePressEvent 后 Qt Widget 调整大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57018998/
所以,我试图每次左键单击时打印鼠标位置,但它只能在布局之外工作,我不知道如何修复它。我的 GUI 看起来像这样: import sys from PyQt5 import QtGui, QtWidge
我有两个不同的类继承QGraphicsItem。它们都有各自特定的 mousePressEvent 函数。当这些项目在场景中重叠时,我只想执行其中一个项目的 mousePressEvent。我怎样才能
我正在尝试检测具有多个小部件的区域内任意位置的鼠标点击。为此,我使用以下代码: custom_widget = CustomWidget() custom_widget.mouse_pressed_s
我在使用 QGraphicsView 和 QGraphicsScene 时遇到了一些困难。当我在场景中缩放/取消缩放并使用 mousePressEvent 创建项目时,我在该位置有一个偏移量。如何避免
我想在 dicom 系列(使用 qt 和 vtk)上实现一些功能,并且我想在 qt 窗口和鼠标之间建立一些连接。 这是我的主要设计: 例如,如果我点击 zoombutton,然后我用鼠标左键点击我的图
如何进入方法 on_product_clicked,其中 QLabel 是一个 mousePressEvent? 在当前示例中,我在表单中看到了三个图像。当我点击第二张图片时,我需要在 on_prod
我正在尝试同时运行两个 QWidget::mousePressEvent() 处理程序。我有两个小部件,A 和 B。B继承自QLabel,A继承自QWidget。我已经在它们两个上重载了 QWidge
所以我有一个带有 QGraphicsPolygonItem 的 QraphicsScene ,我将其标记为可移动。我还重写了 MousePressEvent。我的代码片段现在已经出来了。 def mo
我有一个小部件,我想在用户按下鼠标时运行一些功能。但我只想在鼠标按下导致焦点改变时运行它。我尝试了以下方法: void MyWidget::mousePressEvent(QMouseEvent *e
我在使用 mousePressEvent(QGraphicsSceneMouseEvent *event) 时遇到问题,实际上可点击区域看起来很小并且偏离了它链接到的 QGraphicsPixmapI
在 Class Buttons 中,我有一个 btnRightClicked 信号和一个 mousePressEvent 插槽: void Buttons::mousePressEvent(QMous
请考虑以下代码: #include #include #include class Widget : public QWidget { public: void mousePressEv
我有一个包含多个子对象的小部件,用户可以通过单击它们来选择它们。 我想在用户点击小部件外部时清除当前选择,我想知道如何最好地检测这些点击。 一些约束: 通过eventFilter吃掉周围对象的mous
我正在尝试在 pyqt4 中调整照片查看器(我从本网站的另一个问题中获得了代码)。默认情况下,鼠标滚轮缩放,鼠标左键用于平移/拖动(不知道到底该怎么称呼)图像。我想添加左键单击图像时获取像素信息的功能
在最近的项目中,我尝试在 GraphicsView 中单击相应位置后在场景上绘制点,但没有任何反应。我将错误追踪到缺少对 ClickableMap::mousePressEvent(const QMo
我有一个继承自 qquickwindow 的对象,该对象具有重写的 mousePressEvent 方法。 .h class FWindow : public QQuickWindow { Q
我正在尝试子类化 QCheckBox 以使其在禁用时通过鼠标点击。当我的复选框未被禁用时(isEnabled() 为 true),Qt 按预期调用其 mousePressEvent()。当它被禁用时,
我有一个类,它是 QDialog 的子类,没有覆盖 exec()、accept() 或 reject() 和另一个调用 mousePaintEvent 中的 Dialog 类: void Canvas
为了熟悉 Qt 的图形 View ,我在 Qt 中实现了一个简单的棋盘。目前没有棋子。 我使用矩形来表示每个图 block ,所以我创建了 BoardTile 类(继承自 QGraphicsRectI
我在使用 installEventFilter 过滤 "mousePressEvent" 时遇到问题 MyTestxEdit 是一个包含 QTextEdit 的小部件我希望 QTextEdit 的所有
我是一名优秀的程序员,十分优秀!