mirror of
https://github.com/bec-project/bec_widgets.git
synced 2026-05-10 16:52:11 +02:00
58 lines
1.4 KiB
Python
58 lines
1.4 KiB
Python
# Copyright (C) 2022 The Qt Company Ltd.
|
|
# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
|
|
|
import os
|
|
|
|
from qtpy.QtDesigner import QDesignerCustomWidgetInterface
|
|
|
|
from bec_widgets.utils.bec_designer import designer_material_icon
|
|
from bec_widgets.widgets.positioner_box.positioner_box import PositionerBox
|
|
|
|
DOM_XML = """
|
|
<ui language='c++'>
|
|
<widget class='PositionerBox' name='positioner_box'>
|
|
</widget>
|
|
</ui>
|
|
"""
|
|
MODULE_PATH = os.path.dirname(os.path.dirname(os.path.dirname(__file__)))
|
|
|
|
|
|
class PositionerBoxPlugin(QDesignerCustomWidgetInterface): # pragma: no cover
|
|
def __init__(self):
|
|
super().__init__()
|
|
self._form_editor = None
|
|
|
|
def createWidget(self, parent):
|
|
t = PositionerBox(parent)
|
|
return t
|
|
|
|
def domXml(self):
|
|
return DOM_XML
|
|
|
|
def group(self):
|
|
return "Device Control"
|
|
|
|
def icon(self):
|
|
return designer_material_icon(PositionerBox.ICON_NAME)
|
|
|
|
def includeFile(self):
|
|
return "positioner_box"
|
|
|
|
def initialize(self, form_editor):
|
|
self._form_editor = form_editor
|
|
|
|
def isContainer(self):
|
|
return False
|
|
|
|
def isInitialized(self):
|
|
return self._form_editor is not None
|
|
|
|
def name(self):
|
|
return "PositionerBox"
|
|
|
|
def toolTip(self):
|
|
return "Simple Widget to control a positioner in box form"
|
|
|
|
def whatsThis(self):
|
|
return self.toolTip()
|