I know multiple inheritance with 2 pyqt objects isn't allowed. Is there
any problems with a single pyqt object and another python class?
Here is an example:
-
class myMethods:
def __init__(self, val):
self.val=val
def method1(self):
….
classMyWidget(Q
I writing a app that I want to have the ability to use plugins and I'm
curious what the best way to write it is.
I'll describe what I'm trying to accomplish. In the top widget I have a
QPushButton("convert") and QPushButton("converter options"). I want the
"converter options" button to pull