Using Qtcreator (with Qwt), really basic stuff

Posted by Dago on Stack Overflow See other posts from Stack Overflow or by Dago
Published on 2011-01-06T15:59:14Z Indexed on 2011/01/06 16:53 UTC
Read the original article Hit count: 341

Filed under:
|
|

I'm trying to make a Qt program using Qtcreator and Qwt for plotting. I've never used Qtcreator before. I've created a mainwindow and added a Qwtplot widget there (object name: qwtPlot). The widget shows up in the program when I compile and run it. But theres no mention of the qwtPlot object anywhere in the (autogenerated) code so I assume it is being added at compile time from the .ui xml file (or something). My question is that... how do I modify/change the qwtPlot object? Or where should I place the code. I'm having a hard time articulating my question but the question basically is "How do I do anything with the qwtPlot widget which is created (graphically) with Qtcreator?". I've checked some tutorials but in the tutorials they add the widgets manually in the code, but I'd like to use Qtcreator (because my UI will be fairly complicated). This whole Qtcreator is pretty confusing...

© Stack Overflow or respective owner

Related posts about qt

Related posts about qt-creator