Example #1
0
	def edit_widget(self):
		qtautoplugin.edit_widget(self)      
		if self.combobox_widget.currentText() == u'Send Message':
			self.line_edit_widget.show()
		else:
			self.line_edit_widget.hide()
		return self._edit_widget
    def edit_widget(self):
        """Refreshes the controls."""

        if self.lock:
            return
        self.lock = True
        w = qtautoplugin.edit_widget(self)
        self.custom_interactions()
        self.lock = False
        return w
    def edit_widget(self):

        """Refreshes the controls."""

        if self.lock:
            return
        self.lock = True
        w = qtautoplugin.edit_widget(self)
        self.custom_interactions()
        self.lock = False
        return w
Example #4
0
	def edit_widget(self):

		self._combobox_sketchpad.refresh()
		qtautoplugin.edit_widget(self)
	def edit_widget(self):

		"""Updates the controls."""

		self.update_controls()
		return qtautoplugin.edit_widget(self)