Qt Creator WYSIWYG isn't giving a true representation
-
@SPlatten said in Qt Creator WYSIWYG isn't giving a true representation:
whilst viewing in designer the form fits perfectly and everything looks great
That's why I asked what happens if you resize the form in designer? Does everything still fit?
It would make sense if QtDesigner would use the platform theme by default, but this is something for a change request on Qt bug-tracker.
-
@SPlatten said in Qt Creator WYSIWYG isn't giving a true representation:
How can I set-up Qt Creator to match what will be in the final application when running?
Layouts apply first when you run your app. So, what you see in QtCreator's Design mode may look different from what your app / widgets really look on runtime.
-
@jsulm, Given the age and maturity of Qt Creator I would expect this to be the default behaviour.
-
@SPlatten said in Qt Creator WYSIWYG isn't giving a true representation:
How can I set-up Qt Creator to match what will be in the final application when running?
Layouts apply first when you run your app. So, what you see in QtCreator's Design mode may look different from what your app / widgets really look on runtime.
@Pl45m4 said in Qt Creator WYSIWYG isn't giving a true representation:
Layouts apply first when you run your app
They also take effect in designer (try to resize the form with properly set layouts).
-
@Pl45m4 said in Qt Creator WYSIWYG isn't giving a true representation:
Layouts apply first when you run your app
They also take effect in designer (try to resize the form with properly set layouts).
@jsulm said in Qt Creator WYSIWYG isn't giving a true representation:
They also take effect in designer (try to resize the form with properly set layouts).
But nevertheless the behavior / look is or feels a bit different in QtDesigner (from my experience)
-
@Pl45m4 , why? When I use an WYSIWYG editor I expect the output to be exactly as I design, unless I resize it.
-
What layouts do you have here and how are your sizeHints and stretches configured?
-
@Pl45m4, the main layout is a QGridLayout, however the controls that I'm having a problem with are not in the layout they children of the centralWidget.
@SPlatten said in Qt Creator WYSIWYG isn't giving a true representation:
however the controls that I'm having a problem with are not in the layout they children of the centralWidget.
That's why I asked (two times) what happens if you resize the form in designer, but you still did not answer...
-
@SPlatten said in Qt Creator WYSIWYG isn't giving a true representation:
however the controls that I'm having a problem with are not in the layout they children of the centralWidget.
That's why I asked (two times) what happens if you resize the form in designer, but you still did not answer...
-
@Pl45m4, the main layout is a QGridLayout, however the controls that I'm having a problem with are not in the layout they children of the centralWidget.
@SPlatten said in Qt Creator WYSIWYG isn't giving a true representation:
are not in the layout they children of the centralWidget.
So your "Select Trainee" label is floating around? :)
Then you don't have to wonder why other widgets cover it. -
@SPlatten said in Qt Creator WYSIWYG isn't giving a true representation:
are not in the layout they children of the centralWidget.
So your "Select Trainee" label is floating around? :)
Then you don't have to wonder why other widgets cover it.@Pl45m4 , On this form there are four buttons to the left of the label, these are all of a specific size and position, when viewing in designer everything looks great and nothing is wrong.
When I launch the application I am not resizing or moving anything, it initial state looks very different from how it did in designer.
No other widgets are covering it, the font size and size of the label is different.
-
@Pl45m4 , On this form there are four buttons to the left of the label, these are all of a specific size and position, when viewing in designer everything looks great and nothing is wrong.
When I launch the application I am not resizing or moving anything, it initial state looks very different from how it did in designer.
No other widgets are covering it, the font size and size of the label is different.
@SPlatten said in Qt Creator WYSIWYG isn't giving a true representation:
No other widgets are covering it
I thought the button on the left is covering your text...
the font size and size of the label is different.
Because the size of your label is not expanding with its content, because no layout will stretch your label :)
You could try to set a minimum size in QtDesigner that fits your content. -
@SPlatten said in Qt Creator WYSIWYG isn't giving a true representation:
No other widgets are covering it
I thought the button on the left is covering your text...
the font size and size of the label is different.
Because the size of your label is not expanding with its content, because no layout will stretch your label :)
You could try to set a minimum size in QtDesigner that fits your content.@Pl45m4 , thank you, I've dropped in a Horizontal Layout and added the top row of controls to that, the application is better, although the presentation in designer is still not the same and whilst it's perfect in designer, the application still has a label that isn't displaying all characters.
-
@Pl45m4 , thank you, I've dropped in a Horizontal Layout and added the top row of controls to that, the application is better, although the presentation in designer is still not the same and whilst it's perfect in designer, the application still has a label that isn't displaying all characters.
-
@SPlatten said in Qt Creator WYSIWYG isn't giving a true representation:
the application still has a label that isn't displaying all characters.
Weird. Shouldn't be the case, if done right.
-
@Pl45m4 , in fact every thing I've tried still results in the label showing everything except the first letter "S".
-
This is part of the form whilst editing in Qt Creator:
This is the same form when running as application on desktop:
In both cases I've screen printed and cropped the area. Why is the final presentation in the compiled application when running on the desktop so different from the view in Qt Creator?
Also notice the controls used in Qt Creator are not quite the same as those when running in the application, note that the rectangles for the buttons and combo are sharp when running in the application and very slightly rounded when running in Qt Creator.
I'm using Qt 4.4.1, Based on Qt 5.9.2 (MSVC 2015, 32 bit).
@SPlatten
I think it is layout issue.
In QT Creator You see it
But while compiling it may show some or none of thingsTry applying horizontal layout label and QComboBox as discussed by @Pl45m4
Then I am sure It will work
It may not work if the window size is small Try resizing itWhy you can't expect the output from QT Creator
The height and width in QT Creator just for there unless layout is applied to it?
If the design in QT Creator fills the screen properly Then would you expect it fill to all screens in the same behaviour "NO"
So It's specific to that size only So I guess layouts are
EASY
RESPONSIVE
ATTRACTIVEI hope it helps
-
@SPlatten
I think it is layout issue.
In QT Creator You see it
But while compiling it may show some or none of thingsTry applying horizontal layout label and QComboBox as discussed by @Pl45m4
Then I am sure It will work
It may not work if the window size is small Try resizing itWhy you can't expect the output from QT Creator
The height and width in QT Creator just for there unless layout is applied to it?
If the design in QT Creator fills the screen properly Then would you expect it fill to all screens in the same behaviour "NO"
So It's specific to that size only So I guess layouts are
EASY
RESPONSIVE
ATTRACTIVEI hope it helps
This is now resolved, I redid the main window ui, the top line buttons and widgets are now in a horizontal layout with the main window content in a grid layout. As a WYSIWYG editor Qt Creator is rubbish because the presentation of what you see is not what you get.
-
@SPlatten said in Qt Creator WYSIWYG isn't giving a true representation:
As a WYSIWYG editor Qt Creator is rubbish because the presentation of what you see is not what you get.
I don't see how this should work - first you've styles which slightly modifies the items and then you can set the sizes and others by code - so what do you expect that this should work out?
That's why you have to use layouts - they arrange the widgets the way you want without killing the layout when another style is used or similar.