- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
所以目前我正在 PyQt5 中创建数独游戏。所以,到目前为止,我有 Board.py,它只生成新的板。目前我正在研究 Play.py,它应该能够点击空白方 block 并能够通过按下键盘按钮(按键)来更改它。在 Play.py 中,我已经完成了所有的事情——所有的数字都被放入了一个面板中,我可以点击按钮并启动一个按键。但是,按照我的编码方式,所有按钮都存储在一个列表中(我这样做是因为我希望代码看起来干净)并且它只更新最后一个按钮。我希望它更新最近单击的按钮,而不是更新最后一个按钮。
我已经尝试了很多事情,但目前我已经将范围缩小到在所有按钮列表 (all_buttons) 中找到按钮的位置,然后从那里做一些事情,但我不确定。那么,我如何才能将按键按下并将其放入最近按下的按钮中呢?
这是 Board.py。它只会生成不需要查看的新板。
import random
import numpy as np
# populates a row in random spaces
def populate():
row = [0] * 9
num_in_box = random.randint(3, 6)
while True:
spot = random.randint(0, 8)
r = random.randint(1, 9)
if r not in row:
row[spot] = r
if row.count(0) == (9 - num_in_box):
break
return row
# populates a grid in random spaces - has duplicates in column, row and box
mapped = list()
for x in range(9): mapped.append(populate())
# checks every number in column and row and returns numbers in list
def col_row_nums(array, row, col):
check_col = [j for j in array[:, col] if j != 0]
check_row = [i for i in array[row] if i != 0]
if array[row][col] in check_col:
check_col.remove(array[row][col])
return check_col + check_row
# checks every number box and returns numbers in list
def box_nums(array, box_row):
reshaped_box = np.reshape(array, (27, 3))
list_boxes_in_rows = list()
for a in range(3):
for b in range(3):
for c in range(3):
p2 = list(np.reshape((reshaped_box[c::3]), (3, 9)))
for d in range(3): list_boxes_in_rows.append(p2[a])
array_boxes_in_rows = np.array(list_boxes_in_rows)
return [k for k in array_boxes_in_rows[box_row] if k != 0]
# removes any duplicates so each column, row and box all have only one set of numbers 1 - 9
def finalize_board():
box_rows_num = -1
for x in range(9):
for y in range(9):
box_rows_num += 1
arr = np.array(mapped)
possible_nums = [1, 2, 3, 4, 5, 6, 7, 8, 9]
col_row_duplicates = list()
box_duplicates = list()
used_nums = set(col_row_nums(arr, x, y)) | set(box_nums(arr, box_rows_num))
for w in used_nums:
col_row_count = col_row_nums(arr, x, y).count(w)
box_count = box_nums(arr, box_rows_num).count(w)
if col_row_count > 1: col_row_duplicates.append(w)
if box_count > 1: box_duplicates.append(w)
if mapped[x][y] in col_row_duplicates or mapped[x][y] in box_duplicates:
remaining_nums = list(set(possible_nums) - set(used_nums))
if len(remaining_nums) > 0: mapped[x][y] = random.choice(remaining_nums)
return mapped
接下来是 Play.Py。
import sys
from pynput import keyboard
from PyQt5 import QtWidgets as qtw
from PyQt5 import QtCore as qtc
from PyQt5 import QtGui as qtg
import Board
class MainWindow(qtw.QWidget):
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
# -------------------------------------------------------------------------------------------
all_buttons = list()
layout = qtw.QGridLayout()
layout.setSpacing(0)
board = Board.finalize_board()
y_num = -1
for x, rows in enumerate(board):
for y, cell in enumerate(rows):
y += 1
if cell == 0: cell = ' '
button = qtw.QPushButton(str(cell), self)
button.setFixedHeight(100)
button.setFixedWidth(100)
layout.addWidget(button, x, y)
if cell == ' ':
button.clicked.connect(lambda: pressed())
button.setStyleSheet('QPushButton {background-color: #e3efff; color: black;}')
else:
button.setEnabled(False)
button.setStyleSheet('QPushButton {background-color: #ebebeb; color: black;}')
all_buttons.append(button)
def pressed():
with keyboard.Events() as events:
# maybe - ?? HOW TO RETURN POSITION OF BUTTON IN ALL_BUTTONS
event = events.get(1e6)
x = event.key
print(str(x))
button.setText(str(x))
self.setLayout(layout)
# -------------------------------------------------------------------------------------------
self.show()
if __name__ == '__main__':
app = qtw.QApplication(sys.argv)
w = MainWindow()
sys.exit(app.exec_())
最佳答案
你快到了。使用 keyPressEvent
click here .
import sys
from PyQt5.QtWidgets import (QApplication, QWidget)
from PyQt5.Qt import Qt
class MainWindow(QWidget):
def __init__(self):
super().__init__()
def keyPressEvent(self, event):
print(chr(event.key()))
def test_method(self):
print('Space key pressed')
if __name__ == '__main__':
app = QApplication(sys.argv)
demo = MainWindow()
demo.show()
sys.exit(app.exec_())
event.key()
将始终返回一个整数。您可以使用内置的 chr(int)
函数来获取 key ,问题是我们无法识别字母和数字以外的 key 。如果您还需要其他键,请使用条件。
def keyPressEvent(self, event):
if event.key() == Qt.Key_Space:
print("Space pressed")
# Qt.Key_Shift for shift key, Qt.Key_Control for Ctrl key.
这是最终代码:阅读edit2
import sys
from PyQt5 import QtWidgets as qtw
from PyQt5 import QtCore as qtc
from PyQt5.QtCore import pyqtSlot
from PyQt5 import QtGui as qtg
import Board
class MainWindow(qtw.QWidget):
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
# -------------------------------------------------------------------------------------------
all_buttons = list()
layout = qtw.QGridLayout(self)
layout.setSpacing(0)
board = Board.finalize_board()
y_num = -1
for x, rows in enumerate(board):
for y, cell in enumerate(rows):
y += 1
if cell == 0: cell = ' '
button = qtw.QPushButton(str(cell), self)
button.setFixedHeight(100)
button.setFixedWidth(100)
layout.addWidget(button, x, y)
if cell == ' ':
button.setCursor(qtc.Qt.PointingHandCursor)
button.mousePressEvent = lambda event: self.mousePressEvent(event)
button.setStyleSheet('QPushButton {background-color: #e3efff; color: black;}')
else:
button.setEnabled(False)
button.setStyleSheet('QPushButton {background-color: #ebebeb; color: black;}')
all_buttons.append(button)
self.last_clicked = ''
self.setLayout(layout)
# -------------------------------------------------------------------------------------------
self.show()
def keyPressEvent(self, event):
k = (chr(event.key()))
self.last_clicked.setText(k)
self.last_clicked.setStyleSheet("background-color: #e3efff; color: black;")
def mousePressEvent(self, event):
widget = self.childAt(event.pos())
widget.setStyleSheet("background-color: #e3efff; color: black; border: 1px solid red")
print(widget.pos())
self.last_clicked = widget
return qtw.QWidget.mousePressEvent(self, event)
# -------------------------------------------------------------------------------------------
if __name__ == '__main__':
app = qtw.QApplication(sys.argv)
w = MainWindow()
sys.exit(app.exec_())
现在,当您按下某个键时,它会更新最近单击的按钮的文本。除了 keyPressEvent
和 setText 函数
编辑 2:我不完全知道为什么第一个按钮被选中,我猜 mousePressEvent
有问题。它首先返回第一个小部件,然后返回被单击的实际按钮。我调整了一些东西,现在可以正常工作了。
我改变的东西:
我创建了一个新列表 self.available_buttons
。它包含所有空的/可点击的按钮。
只要按下一个空按钮,代码就会遍历列表并搜索 last_clicked
小部件。如果找到 last_clicked
小部件,它会突出显示该按钮并将所有其他按钮更改为正常(无边框颜色)。
class MainWindow(qtw.QWidget):
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
# -------------------------------------------------------------------------------------------
all_buttons = list() # contains all buttons
self.available_buttons = list() # contains clickable buttons
layout = qtw.QGridLayout(self)
layout.setSpacing(0)
board = Board.finalize_board()
y_num = -1
for x, rows in enumerate(board):
for y, cell in enumerate(rows):
y += 1
if cell == 0: cell = ' '
button = qtw.QPushButton(str(cell), self)
button.setFixedHeight(100)
button.setFixedWidth(100)
layout.addWidget(button, x, y)
if cell == ' ':
button.setCursor(qtc.Qt.PointingHandCursor)
button.mousePressEvent = lambda event: self.mousePressEvent(event)
button.setStyleSheet('QPushButton {background-color: #e3efff; color: black;}')
self.available_buttons.append(button) # appends empty buttons to the list
else:
button.setEnabled(False)
button.setStyleSheet('QPushButton {background-color: #ebebeb; color: black;}')
all_buttons.append(button)
self.last_clicked = ''
self.setLayout(layout)
self.show()
# -------------------------------------------------------------------------------------------
def keyPressEvent(self, event):
k = (chr(event.key()))
self.last_clicked.setText(k)
self.last_clicked.setStyleSheet("background-color: #e3efff; color: black;")
def mousePressEvent(self, event):
widget = self.childAt(event.pos())
self.last_clicked = widget
for button in self.available_buttons: #searches for clicked button
if widget == button:
button.setStyleSheet("background-color: #e3efff; color: black; border: 1px solid red") # adds border to clicked button
else:
button.setStyleSheet("background-color: #e3efff; color: black;") # all the other buttons go back to their normal state
return qtw.QWidget.mousePressEvent(self, event)
# -------------------------------------------------------------------------------------------
关于python - 使用按键单击时如何更改pyqt5中的按钮文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68807866/
我想做的是让 JTextPane 在 JPanel 中占用尽可能多的空间。对于我使用的 UpdateInfoPanel: public class UpdateInfoPanel extends JP
我在 JPanel 中有一个 JTextArea,我想将其与 JScrollPane 一起使用。我正在使用 GridBagLayout。当我运行它时,框架似乎为 JScrollPane 腾出了空间,但
我想在 xcode 中实现以下功能。 我有一个 View Controller 。在这个 UIViewController 中,我有一个 UITabBar。它们下面是一个 UIView。将 UITab
有谁知道Firebird 2.5有没有类似于SQL中“STUFF”函数的功能? 我有一个包含父用户记录的表,另一个表包含与父相关的子用户记录。我希望能够提取用户拥有的“ROLES”的逗号分隔字符串,而
我想使用 JSON 作为 mirth channel 的输入和输出,例如详细信息保存在数据库中或创建 HL7 消息。 简而言之,输入为 JSON 解析它并输出为任何格式。 最佳答案 var objec
通常我会使用 R 并执行 merge.by,但这个文件似乎太大了,部门中的任何一台计算机都无法处理它! (任何从事遗传学工作的人的附加信息)本质上,插补似乎删除了 snp ID 的 rs 数字,我只剩
我有一个以前可能被问过的问题,但我很难找到正确的描述。我希望有人能帮助我。 在下面的代码中,我设置了varprice,我想添加javascript变量accu_id以通过rails在我的数据库中查找记
我有一个简单的 SVG 文件,在 Firefox 中可以正常查看 - 它的一些包装文本使用 foreignObject 包含一些 HTML - 文本包装在 div 中:
所以我正在为学校编写一个 Ruby 程序,如果某个值是 1 或 3,则将 bool 值更改为 true,如果是 0 或 2,则更改为 false。由于我有 Java 背景,所以我认为这段代码应该有效:
我做了什么: 我在这些账户之间创建了 VPC 对等连接 互联网网关也连接到每个 VPC 还配置了路由表(以允许来自双方的流量) 情况1: 当这两个 VPC 在同一个账户中时,我成功测试了从另一个 La
我有一个名为 contacts 的表: user_id contact_id 10294 10295 10294 10293 10293 10294 102
我正在使用 Magento 中的新模板。为避免重复代码,我想为每个产品预览使用相同的子模板。 特别是我做了这样一个展示: $products = Mage::getModel('catalog/pro
“for”是否总是检查协议(protocol)中定义的每个函数中第一个参数的类型? 编辑(改写): 当协议(protocol)方法只有一个参数时,根据该单个参数的类型(直接或任意)找到实现。当协议(p
我想从我的 PHP 代码中调用 JavaScript 函数。我通过使用以下方法实现了这一点: echo ' drawChart($id); '; 这工作正常,但我想从我的 PHP 代码中获取数据,我使
这个问题已经有答案了: Event binding on dynamically created elements? (23 个回答) 已关闭 5 年前。 我有一个动态表单,我想在其中附加一些其他 h
我正在尝试找到一种解决方案,以在 componentDidMount 中的映射项上使用 setState。 我正在使用 GraphQL连同 Gatsby返回许多 data 项目,但要求在特定的 pat
我在 ScrollView 中有一个 View 。只要用户按住该 View ,我想每 80 毫秒调用一次方法。这是我已经实现的: final Runnable vibrate = new Runnab
我用 jni 开发了一个 android 应用程序。我在 GetStringUTFChars 的 dvmDecodeIndirectRef 中得到了一个 dvmabort。我只中止了一次。 为什么会这
当我到达我的 Activity 时,我调用 FragmentPagerAdapter 来处理我的不同选项卡。在我的一个选项卡中,我想显示一个 RecyclerView,但他从未出现过,有了断点,我看到
当我按下 Activity 中的按钮时,会弹出一个 DialogFragment。在对话框 fragment 中,有一个看起来像普通 ListView 的 RecyclerView。 我想要的行为是当
我是一名优秀的程序员,十分优秀!