Re: PySide window does not resize to fit screen

2017-11-14 Thread Heli
Hi Chris and others, I have re-designed my user interface to include layouts and now it fits the screen perfectly. Thanks a lot for all your help on this thread, Best -- https://mail.python.org/mailman/listinfo/python-list

Re: PySide window does not resize to fit screen

2015-10-05 Thread Hedieh Ebrahimi
Hi Chris, Thanks for your answer. I get your point now. Unfortunately there are not layouts in my user interface. Smaller widget have been grouped using group boxes and then all these group boxes are put on the central widget. I would like to recreate my user interface using one of the

Re: PySide window does not resize to fit screen

2015-10-05 Thread Hedieh Ebrahimi
is this free to use for commercial use? -- https://mail.python.org/mailman/listinfo/python-list

Re: PySide window does not resize to fit screen

2015-10-05 Thread Laura Creighton
In a message of Mon, 05 Oct 2015 01:18:33 -0700, Hedieh Ebrahimi writes: >Could you recommend any free designer software that I can create my user >interface with? > >Thank you Qt Designer works with PySide. http://doc.qt.io/qt-5/designer-quick-start.html Laura --

Re: PySide window does not resize to fit screen

2015-10-05 Thread Chris Warrick
On 5 October 2015 at 13:20, Hedieh Ebrahimi wrote: > is this free to use for commercial use? > -- > https://mail.python.org/mailman/listinfo/python-list Yeah, you can use Qt Designer to create a nice layout and the pyside-uic tool to generate code (that you will need to clean

Re: PySide window does not resize to fit screen

2015-10-05 Thread Michael Torrie
On 10/05/2015 05:20 AM, Hedieh Ebrahimi wrote: > is this free to use for commercial use? Yes of course. There's also the newer Qt Creator program if you want to use Qt 5. The license of the Designer and Creator programs does not apply to the output of these programs (the .ui XML files). You'll

Re: PySide window does not resize to fit screen

2015-10-02 Thread Chris Warrick
On 2 October 2015 at 15:10, Hedieh Ebrahimi wrote: > Thanks Laura, > > In my user interface I have many group boxes that are located inside the main > widget. All the group boxes and their child widgets have fixed sizes. > > How can I use the width and height I get from

Re: PySide window does not resize to fit screen

2015-10-02 Thread Hedieh Ebrahimi
Thanks Laura, In my user interface I have many group boxes that are located inside the main widget. All the group boxes and their child widgets have fixed sizes. How can I use the width and height I get from availableGeometry or ScreenGeometry to multiply screenGeometry =

PySide window does not resize to fit screen

2015-10-01 Thread Hedieh Ebrahimi
Dear all, I am using Pyside to create a user interface for my app. The app works fine on my computer with big screen, but when I take it to my laptop with smaller screen size, it does not resize to match the screen size. How can I make my main widget get some information about the screen

Re: PySide window does not resize to fit screen

2015-10-01 Thread Chris Warrick
On 1 October 2015 at 15:44, Hedieh Ebrahimi wrote: > Dear all, > > I am using Pyside to create a user interface for my app. > The app works fine on my computer with big screen, but when I take it to my > laptop with smaller screen size, it does not resize to match the screen

Re: PySide window does not resize to fit screen

2015-10-01 Thread Laura Creighton
In a message of Thu, 01 Oct 2015 06:44:25 -0700, Hedieh Ebrahimi writes: >Dear all, > >I am using Pyside to create a user interface for my app. >The app works fine on my computer with big screen, but when I take it to my >laptop with smaller screen size, it does not resize to match the screen