I don't have it in front of me, but I think you need to use the existing
layout instead of creating a new one. So in your buildUI, you need to call
self.layout(), or self.centralWidget().layout() or something like that.
Then examine that and figure out where you want to put your button in it.
On Thursday, 15 November 2018 14:58:03 UTC+11, Adam Baker wrote:
>
>
>
> Hey all,
>
> I am trying to add a QPushButton or any other QWidget to a QFileDialog.
>
> Here is where I currently am:
>
>
>> *from PySide2 import QtWidgets, QtCore, QtGui**class
>> fileOpen(QtWidgets.QFileDialog):*
>>
>> * def __init__(self):*
>> * super(fileOpen, self).__init__()*
>> * self.setWindowTitle("ATK Open File")**
>> self.setObjectName('ATKOpenFile')*
>> * self.buildUI()*
>>
>> * def buildUI(self):*
>> * btnLayout = QtWidgets.QHBoxLayout()*
>> * self.setLayout(btnLayout)*
>> * btn = QtWidgets.QPushButton('Click')**
>> btnLayout.addWidget(btn)*
>>
>>
>> *def showUI():*
>> * ui = fileOpen()*
>> * ui.setWindowFlags(QtCore.Qt.WindowStaysOnTopHint)*
>> * ui.show()** return ui*
>
>
>
> The problem is that the button now takes up the while window and the
> QFileDialog gets pushed to the upper corner collapsing on it's self.
>
> Thanks
> Adam
>
--
You received this message because you are subscribed to the Google Groups
"Python Programming for Autodesk Maya" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/python_inside_maya/46815b6a-7798-438f-a1b7-61ced6e1b479%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.