def __init__(self):
"""
A dialog that opens to allow for the user to add a new reddit username to the username list. An instance of this
class is also used as a dialog to add subreddits, but two object names are overwritten. This dialog is basically
a standard input dialog, but with the addition of a third button that allows the user to add more than one name
without closing the dialog. Shortcut keys have also been added to facilitate ease of use
"""
QtWidgets.QDialog.__init__(self)
self.setupUi(self)
self.settings_manager = Core.Injector.get_settings_manager()
geom = self.settings_manager.add_user_dialog_geom
self.restoreGeometry(geom if geom is not None else self.saveGeometry())
self.name = None
self.ok_cancel_button_box.accepted.connect(self.accept)
self.ok_cancel_button_box.rejected.connect(self.close)
self.add_another_button.clicked.connect(self.add_multiple)
AddUserDialog.py 文件源码
python
阅读 29
收藏 0
点赞 0
评论 0
评论列表
文章目录