I am unable to make the shared library. after manually patching the files mentioned in https://sourceforge.net/p/gnuplot/patches/649/ ./prepare doesnt seem to work. following with the procedure, resulted in executable files rather than a shared library here is the configure output: [arun@Macbook gnuplot-5.0.6]$ ./configure --with-qt=lib checking for a BSD-compatible install... /usr/bin/install -c checking whether build environment is sane... yes /home/arun/test/gnuplot-5.0.6/missing: Unknown --is-lightweight'...
Thanks for the reply. I will try it.
Thanks for the reply. I will try it soon.
still unable to make it work... had a look in to src/qtterminal/embed_example.cpp but the issue is how to access those classes namely QtGnuplotWidget and QtGnuplotInstance from another QT application. any help would be highly appreciated.
Well I am trying to create an interactive plot inside a QT application. some thing like in GNU Octave. my idea was to link gnuplot to the program and use QT to add QtGnuplotWidget as a widget to my application and control the plot using QtGnuplotInstance widget_ = new QtGnuplotWidget(this); instance_ = new QtGnuplotInstance(); instance_->setWidget(widget_); widget_->show(); widget_->resize(600, 600); *instance_ << "plot(sin(x))"; please check https://sourceforge.net/p/gnuplot/patches/_discuss/th...
Well I am trying to create an interactive plot inside a QT application. some thing like in GNU Octave. my idea was to link gnuplot to the program and use QT to add QtGnuplotWidget as a widget to my application and control the plot using QtGnuplotInstance widget_ = new QtGnuplotWidget(this); instance_ = new QtGnuplotInstance(); instance_->setWidget(widget_); widget_->show(); widget_->resize(600, 600); *instance_ << "plot(sin(x))";
I am trying to link gnuplot_qt as a shared library to one of my projects in Qt5. however the attempt is failing with the following error: g++ -Wl,-O1 -Wl,-O1,--sort-common,--as-needed,-z,relro,-z,now -o visualization main.o MainWindow.o moc_MainWindow.o -gnuplot_qt -gnuplot_x11 -lQt5Widgets -lQt5Gui -lQt5Core -lGL -lpthread g++: error: unrecognized debug output level ‘nuplot_qt’ A shared library of gnuplot was created from source using the following commands ./configure --with-qt=lib make how to...
Hi.. I am caughtup with my work lately.. the next release needs a lot of work so It will take some time.. It is pointless to release a version with minor changes.