プロジェクト用の電卓を作成中ですが、メニュー バーのアクションを押すと関数電卓に変わり、チェックを外すと基本的な電卓に戻るようにしたいと考えていました。
これまでのところ、関数電卓のボタンを正常に追加できましたが、水平レイアウトの左側に配置したい (つまり、基本的なボタンは右側にあり、進むボタンは左側にあります)。それを行う方法がわかりません。また、関数電卓になったら、基本的な電卓に戻す方法もまだわかりません。また、何らかの理由で関数電卓のボタンのアクションが正しく機能していないようです (ボタンを入力すると、テキストが に追加されるはずQLineEdit
です)。ここからどこへ行けばいいのかわからないので、かなり迷っています。
以下に、電卓で行ったことの簡単な例を作成しました。
import sys, os
from PyQt6.QtCore import *
from PyQt6.QtWidgets import *
from PyQt6.QtGui import *
class MainWindow(QMainWindow):
def __init__(self):
super().__init__()
self.allbuttons = {}
#self.setFixedSize(200, 200)
self.setWindowTitle('Try')
self.verlayout = QVBoxLayout()
self.horlayout = QHBoxLayout()
self.qline()
self.wid1()
self.verlayout.addLayout(self.horlayout)
self.centralwidget = QWidget()
self.setCentralWidget(self.centralwidget)
self.centralwidget.setLayout(self.verlayout)
def qline(self):
self.line = QLineEdit()
self.line.setFixedHeight(35)
self.verlayout.addWidget(self.line)
def wid1(self):
buttons = QGridLayout()
buttondict = {
'A': (0, 0),
'B': (0, 1),
'C': (1, 0),
'D': (1, 1)
}
for btn, pos in buttondict.items():
self.allbuttons[btn] = QPushButton(btn)
self.allbuttons[btn].setFixedSize(20, 20)
buttons.addWidget(self.allbuttons[btn], pos[0], pos[1])
self.horlayout.addLayout(buttons)
def wid2(self):
buttons = QGridLayout()
buttondict = {
'E': (0, 0),
'F': (0, 1),
'G': (1, 0),
'H': (1, 1)
}
for btn, pos in buttondict.items():
self.allbuttons[btn] = QPushButton(btn)
self.allbuttons[btn].setFixedSize(20, 20)
buttons.addWidget(self.allbuttons[btn], pos[0], pos[1])
self.horlayout.addLayout(buttons)
class Menu:
def __init__(self, MainWindow):
super().__init__()
self.view = MainWindow
self.menuBar = QMenuBar()
self.menuBar.setGeometry(QRect(0, 0, 277, 22))
self.view.setMenuBar(self.menuBar)
self.open = QMenu(self.menuBar)
self.open.setTitle('Open')
self.menuBar.addAction(self.open.menuAction())
self.this = QAction(self.menuBar)
self.this.setText('This')
self.this.setCheckable(True)
self.open.addAction(self.this)
self.this.triggered.connect(self.show_new_window)
def show_new_window(self, checked):
if checked:
self.view.wid2()
#self.view.resize(300, 200)
else:
pass
app = QApplication(sys.argv)
w = MainWindow()
m = Menu(w)
w.show()
app.exec()