Qt SDK with maya

Hello,
Please,How can I use Qt creator with MAYA for creating UI for displaying a video .
Is it possible to use Qt without using PyQt & Pyside?
I am new with learning and using python in maya and Qt SDK.
Thank you for any help

Just design a UI with Creator (or designer, same thing), save it as UI.

Then you can choose to either load the .ui file directly, or compile it to a python file. The former doesn’t give you autocomplete, but takes 1 less step to update your UI. And no, you must have either PyQT or Pyside; there’s no bind between Python and Qt otherwise.

Honestly there’s a TON of info out there already, you should just google a bit. here’s some stuff that helped me:

http://nathanhorne.com/?p=451
http://www.jason-parks.com/artoftech/?p=439
http://www.janpijpers.com/qt-and-maya-how-to-use-a-qt-designer-ui-with-maya-no-pyqt/
http://danostrov.com/2012/10/27/creating-a-simple-ui-in-maya-using-pyqt/

good luck!

[QUOTE=Xoliul;25015]Just design a UI with Creator (or designer, same thing), save it as UI.

Then you can choose to either load the .ui file directly, or compile it to a python file. The former doesn’t give you autocomplete, but takes 1 less step to update your UI. And no, you must have either PyQT or Pyside; there’s no bind between Python and Qt otherwise.

Honestly there’s a TON of info out there already, you should just google a bit. here’s some stuff that helped me:

http://nathanhorne.com/?p=451
http://www.jason-parks.com/artoftech/?p=439
http://www.janpijpers.com/qt-and-maya-how-to-use-a-qt-designer-ui-with-maya-no-pyqt/
http://danostrov.com/2012/10/27/creating-a-simple-ui-in-maya-using-pyqt/

good luck![/QUOTE]

Thank you so much for your help .