Japanese
PyamlQtはGUIデザイン初心者のためのGUI定義フォーマットです。コントリビューション大歓迎です!
しばらくはAPIの破壊的変更が行われる可能性があります。
変更点
- 新しいモジュール`PyamlQtWindow`
- 初期化には引数が必要です。(README.mdを読んでください)
- デモプログラムがとてもシンプルになりました。
English
PyamlQt is a GUI definition format for GUI design beginners. Contributions are welcome!
There is a possibility of destructive changes to the API for the time being.
Changes
- New module `PyamlQtWindow`.
- Arguments are required for initialization. (Please read README.md)
- The demo program is now very simple.
---
python
import sys
import os
from pyamlqt.mainwindow import PyamlQtWindow
from PyQt6.QtWidgets import QApplication
YAML = os.path.join(os.path.dirname(__file__), ". /yaml/chaos.yaml")
class MainWindow(PyamlQtWindow):
def __init__(self):
self.number = 0
super(). __init__("title", 0, 0, 800, 720, YAML)
self.show()
if __name__ == '__main__':
app = QApplication(sys.argv)
window = MainWindow()
sys.exit(app.exec())