25 lines
770 B
Python
25 lines
770 B
Python
|
|
# This script is licensed CC 0 1.0, so that you can learn from it.
|
||
|
|
|
||
|
|
# ------ CC 0 1.0 ---------------
|
||
|
|
|
||
|
|
# The person who associated a work with this deed has dedicated the
|
||
|
|
# work to the public domain by waiving all of his or her rights to the
|
||
|
|
# work worldwide under copyright law, including all related and
|
||
|
|
# neighboring rights, to the extent allowed by law.
|
||
|
|
|
||
|
|
# You can copy, modify, distribute and perform the work, even for
|
||
|
|
# commercial purposes, all without asking permission.
|
||
|
|
|
||
|
|
# https://creativecommons.org/publicdomain/zero/1.0/legalcode
|
||
|
|
|
||
|
|
from PyQt5.QtWidgets import QDialog
|
||
|
|
|
||
|
|
|
||
|
|
class DocumentToolsDialog(QDialog):
|
||
|
|
|
||
|
|
def __init__(self, parent=None):
|
||
|
|
super(DocumentToolsDialog, self).__init__(parent)
|
||
|
|
|
||
|
|
def closeEvent(self, event):
|
||
|
|
event.accept()
|