GUI help
-
Ok. so there really is something up with the kits.
But this is VS 2015
I though you would use only mingw ?did you UNINSTALL visual studio Qt to avoid it playing tricks on you ?
-
wrote on 30 Apr 2018, 10:23 last edited by
now I do not understand what to do?
-
Did you install the mingw too?
If you create new project , it does NOT offer to make project with that compiler ?
You still seems to be using visual studio. ( and it seems kit still broken)
-
wrote on 30 Apr 2018, 10:33 last edited by
I uninstall all
I wondered if it would be possible if you had given me a link to download and install -
I uninstall all
I wondered if it would be possible if you had given me a link to download and installHi, just use the online installer and ONLY
select the mingw version as i shown in the picture. -
wrote on 30 Apr 2018, 10:49 last edited by
this is it? qt-opensource-windows-x86-mingw482_opengl-5.3.2.exe
-
wrote on 30 Apr 2018, 11:00 last edited by
or qt-opensource-windows-x86-5.10.1.exe ??
this file is in the picture? -
Hi
I meant the online version from
https://www.qt.io/download
(open source side)
(you will get a file named qt-unified-windows-x86-3.0.4-online.exe)
Then check the the mingw as shown. -
wrote on 30 Apr 2018, 13:58 last edited by
-
@caca0o
No no, that is WAYYY to much.
Just check the MinGW 5.3 one. Nothing else.
You can always add say Qt Chart or other optional modules should you need it.
Do not install UWP or MSVC. -
wrote on 30 Apr 2018, 14:45 last edited by
very much thank you. it works
-
@caca0o
Super.
Happy programming.
Remember to mark as solved. -
wrote on 1 May 2018, 21:19 last edited by
hi, I would like to have one more question. when I want to have one panel in the mainwindow. where do i give pushbuttons.
to be bordered, what is the best choice? I want to make a little foundation for gui as soon as possible -
hi, I would like to have one more question. when I want to have one panel in the mainwindow. where do i give pushbuttons.
to be bordered, what is the best choice? I want to make a little foundation for gui as soon as possiblewrote on 2 May 2018, 09:15 last edited by@caca0o
I think you can take a look at QToolBar.and also read Application Example to learn how to use it.
-
wrote on 2 May 2018, 11:29 last edited by
-
so this example. is it going to be done in the toolbox?
or do I need to find another command?@caca0o You can simply use a QVBoxLayout.
You can even find an example showing exactly what you want to do: http://doc.qt.io/qt-5/qvboxlayout.html -
wrote on 2 May 2018, 13:13 last edited by
maybe I'll find a solution. when I get back. and I do not want QStackedWidget or QTabWidget.
how do I make more of the same windows so the push button always opens a window on the same place?
I need to do several Widgets with similar content.I can not find a solution
-
maybe I'll find a solution. when I get back. and I do not want QStackedWidget or QTabWidget.
how do I make more of the same windows so the push button always opens a window on the same place?
I need to do several Widgets with similar content.I can not find a solution
@caca0o Did you check the link I posted?
You can create your own widget containing what ever you need and create several instances of it. Or do I misunderstand your question? Your description isn't clear. -
wrote on 3 May 2018, 10:22 last edited by
-
I'll show you the suggestion. I would like to see "pages 1-10" opened in the "window".
and I would like a link in the "window" to the next widget in this window (page3a)
Lifetime Qt Championwrote on 3 May 2018, 11:58 last edited by jsulm 5 Mar 2018, 12:02@caca0o And what is the problem? If you do not want to use QStackedWidget or QTabWidge then do the following: connect a slot to each button on the left side, in each slot create and show the widget this button is supposed to show and put this widget inside the window.
32/87