コード例 #1
0
ファイル: labeleditor.py プロジェクト: Governa/Camelot
 def paintEvent(self, event):
     if self.toolTip():
         draw_tooltip_visualization(self)
コード例 #2
0
ファイル: floateditor.py プロジェクト: jeroendierckx/Camelot
 def paintEvent(self, event):
     super(CustomDoubleSpinBox, self).paintEvent(event)
     if self.toolTip():
         draw_tooltip_visualization(self)
コード例 #3
0
ファイル: codeeditor.py プロジェクト: jeroendierckx/Camelot
 def paintEvent(self, event):
     super(PartEditor, self).paintEvent(event)
     if self.firstPart and self.toolTip():
         draw_tooltip_visualization(self)
コード例 #4
0
ファイル: textlineeditor.py プロジェクト: Governa/Camelot
 def paintEvent(self, event):
     super(TextLineEditor, self).paintEvent(event)
     
     if self.toolTip():
         draw_tooltip_visualization(self)
コード例 #5
0
 def paintEvent(self, event):
     if self.toolTip():
         draw_tooltip_visualization(self)
コード例 #6
0
ファイル: codeeditor.py プロジェクト: Governa/Camelot
 def paintEvent(self, event):
     super(PartEditor, self).paintEvent(event)
     if self.firstPart and self.toolTip():
         draw_tooltip_visualization(self)
コード例 #7
0
ファイル: floateditor.py プロジェクト: Governa/Camelot
 def paintEvent(self, event):
     super(CustomDoubleSpinBox, self).paintEvent(event)
     if self.toolTip():
         draw_tooltip_visualization(self)
コード例 #8
0
    def paintEvent(self, event):
        super(TextLineEditor, self).paintEvent(event)

        if self.toolTip():
            draw_tooltip_visualization(self)