aboutsummaryrefslogtreecommitdiffstats
path: root/editor/tooltip.py
diff options
context:
space:
mode:
authorYann Herklotz <ymherklotz@gmail.com>2017-09-10 13:00:35 +0100
committerYann Herklotz <ymherklotz@gmail.com>2017-09-10 13:00:35 +0100
commit3397dd57a30f7868c887b01c47a56bb6fa651eb6 (patch)
tree33907ff9faad3e2a1374da155cfec2cd208ec27b /editor/tooltip.py
parentd172a742008abb4c573353ca43b9b247110590c4 (diff)
downloadYAGE-3397dd57a30f7868c887b01c47a56bb6fa651eb6.tar.gz
YAGE-3397dd57a30f7868c887b01c47a56bb6fa651eb6.zip
Adding qt editor
Diffstat (limited to 'editor/tooltip.py')
-rw-r--r--editor/tooltip.py28
1 files changed, 0 insertions, 28 deletions
diff --git a/editor/tooltip.py b/editor/tooltip.py
deleted file mode 100644
index 57ed7a86..00000000
--- a/editor/tooltip.py
+++ /dev/null
@@ -1,28 +0,0 @@
-#!/usr/bin/env python3
-
-import sys
-from PyQt5.QtWidgets import QWidget, QPushButton, QApplication
-from PyQt5.QtCore import QCoreApplication
-
-
-class Example(QWidget):
-
- def __init__(self):
- super().__init__()
- self.initUI()
-
- def initUI(self):
- qbtn = QPushButton("Quit", self)
- qbtn.clicked.connect(QCoreApplication.instance().quit)
- qbtn.resize(qbtn.sizeHint())
- qbtn.move(50, 50)
-
- self.setGeometry(300, 300, 250, 150)
- self.setWindowTitle("Quit Button")
- self.show()
-
-
-if __name__ == "__main__":
- app = QApplication(sys.argv)
- ex = Example()
- sys.exit(app.exec_())