Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
2answers
139 views

Is this method of inter-thread-communication safe?

I have 3 objects(inherited from QObject) that each contain a separate std::list. Each object gets created in the main gui thread (with no parent) and then is pushed to it's own thread (using Qt's ...
3
votes
3answers
693 views

Need fast c++ qt/qwt scatter plot

I have huge - about 3 millions of pairs - array of 2D points, which I need to render with reasonable speed in Qt-based application. I've tried using QGraphicsScene, but its very slow even on 400000 ...
2
votes
5answers
138 views

What is the benefit of having many different data types?

What is the benefit of using many different data types in a language? I have been working with pyqt and pyqwt recently and I keep finding myself typing lines like this: ...
2
votes
5answers
2k views

Qt, VS2005, Qwt - Can't use Q_OBJECT in class derived from Qwt widgets

We've compiled QT 4.6 and QWT 5.2.0 for VS2005. We're trying to derive a class from QwtDial, and the derived class has slots. So, we need to add the Q_OBJECT macro. However, when we do that, the ...
1
vote
1answer
36 views

Is it possible to draw violin plots in Qt/Qwt?

I am trying to implement violin plots using Qt. I have checked the internet for resources about the matter but so far I have only found examples that have been implemented using R and Python. Does Qt ...
1
vote
1answer
144 views

QWT installation errors

I started using Qt a few weeks ago and I am really enjoying it. I now need to include graphs in my application and, after some research, I found that Qwt was the best way of doing so (rather than ...
1
vote
1answer
369 views

Porting Qwt library to playbook

I am new to Qt, cross compiling and porting so please bear with me. My goal is to use the Qwt library on Playbook OS for a Qt based application. I found a nice tutorial on Qt for Blackberry Playbook ...
1
vote
1answer
158 views

Problem in Qt, Qwt with right-click on QwtPlot and taking X and Y coordinates, signal selected

Good day! There are QwtPlot and QwtCurve, in short, blue graph, which was built using the library Qwt. Question: how to make sure that when you right-click on QwtPlot, pictured red vertical line (as ...
1
vote
1answer
574 views

tutorial on grasph plotting qwt

hi every one i am using qt and qwt i want to plot a graph i am compltely new to it can some one please give me a link whcih explains basic graph plotting using qwt thanks
1
vote
1answer
2k views

how to use Qwt in the Qt 4.7

I have downloaded the QWT & want to use that for creation of graphs & charts. I am using Qt 4.7 for creating application. How to use Qwt in my application. How do I add the header file & ...
1
vote
1answer
1k views

Using Qt Creator (with Qwt), really basic stuff

I'm trying to make a Qt program using Qt Creator and Qwt for plotting. I've never used Qt Creator before. I've created a MainWindow and added a Qwtplot widget there (object name: qwtPlot). The widget ...
1
vote
0answers
43 views

Device Clipping in Qwt

I was working in qwt, and noticed I was setting device clipping to false. Does anyone know what device clipping is? I couldnt find anything about it really in their documentation. Thanks.
1
vote
1answer
935 views

Qt designer plugin does not load in Eclipse CDT

I have installed the Qwt widgets and they run fine in Qt Creator and QT 4 Designer; however when I run the QT Designer via Eclipse CDT they don't show up. Any ideas what is wrong? I am on x32 Ubuntu ...
1
vote
1answer
584 views

How to set fixed axis intervals with Qt/QwtPlot?

I want to have a plotting widget in my Qt application. Qwt provides such a widget with QwtPlot. However, I can't find any way to only display a certain part of the complete range of my data. ...
0
votes
1answer
66 views

qwt plot curve axis not visible

I am using qwt plot curve to draw curve. the x axis and the y axis are not visible, only the curve is visible. How to show the axis with showing some first, last and middle values in the scale ...
0
votes
0answers
62 views

Qwt - how to get the select point index with QwtPlotPicker

I plot complex data using QwtPlot, so, I reimplement QwtSeriesData for converting my data into QPointF. The "sample(int)" converts MyObject to QPointf. My QwtSeriesData data manages a ...
0
votes
0answers
116 views

Qwt and QwtSeriesData

I originally use C Programming language. But Now, I need to use Qt programming (by the way, Qt is like a dream). I am going to more depth step by step. But my C++ object oriented knowledge is weak, I ...
0
votes
0answers
67 views

Installing Qwt 5.0.1 on Red Hat 9 + Qt 3.1 [closed]

Been trying to install Qwt 5.0.1 on my Qt 3.1 + Red hat 9 box. I get the following error: do you know what is the problem? [root@localhost qwt-5.0.1]# make cd src && make -f Makefile make[1]: ...
0
votes
0answers
74 views

QwtPlot custom axis

I want to create plot with two horizontal axes. Bottom axis is linear, top axis is non-linear. I have a table of data for conversion "Bottom value -> top value". I found out that QwtScaleEngine ...
0
votes
0answers
67 views

Qt 3.x + Qwt - Advice on programming and plotting

I am looking for some guidance and advice from you people here, I got a peculiar situation where I would like your help. Just hear out my situation first with patience. Your contribution/reply will be ...
0
votes
1answer
60 views

QwtPlotSpectrogram: using a logarithmic color scale?

I'm using a QwtPlotSpectrogram with a custom QwtRasterData to plot 2D data with widely varying values. I would like to plot using a logarithmic color scale instead of a linear one. Is there a simple ...
0
votes
0answers
348 views

Plotting curves in real-time using Qt [closed]

Possible Duplicates: What can I use for real-time plotting/graphing in C++? Qt: Best way to implement "oscilloscope-like" realtime-plotting I've widely searched a way to plot ...
0
votes
1answer
193 views

How to install QWT on linux [closed]

Please let me know the steps involved in installing QWT on linux , i want to use QWT with QT creator on linux
0
votes
1answer
281 views

updating qwt from 5.2.1 to 6.0.0

I'm trying to update the qwt from 5.2.1 to 6.0.0 version, but when I compile my program, I get a list of errors. please help. and this is the errors list: ...
0
votes
5answers
214 views

What is the best tool to plot intermediate results of my c++ code?

I am developing algorithms for embedded systems and implementing them in c++ code. Prior to testing the c++ code on target, I have to test the algorithms on a PC to make sure the mathematics is ...
0
votes
1answer
199 views

Qwt alternative

Is there any lib similar to Qwt but that is more flexible? Flexible in the meaning of using existing functions and parameters without need to do inheritance of basic classes like Qwt. I would prefer ...
0
votes
1answer
180 views

How to draw a curve in Qt? [closed]

Possible Duplicate: How to draw clothoids graphically in Qt? I am trying to draw some curves in my application and I would like to know the best method to do that. The curves are actually ...
0
votes
0answers
123 views

How to Build QT Creator Plug-Ins with Visual Studio

I recently tried to create a plug-in for a custom QWidget to use in Qt Designer, using this page as a guide: ...
0
votes
1answer
54 views

size of horizontal layout

This is my code myplot * p = new myplot(gao.structpayloadgraph,gao1.structpayloadgraph, gao.structcol-2, "payload"); myplot * p1 = new myplot(gao.structsessiongraph,gao.structsessiongraph, ...
0
votes
1answer
366 views

QwtPlotCurve doesn't show up on graph

I'm currently working on a project in which I load a huge number of data points on a graph (something like 50,000, so I can zoom in as much as I want). I wanted to test how the commands worked, so I ...
0
votes
0answers
457 views

QWT with Eclipse QT Plugin (on Windows)

I've been searching the Web and on StackOverflow to get my answer, but it seems that the answers are never getting to the end of my problem. I want to use QWT with the Eclipse QT Designer plugin. At ...
0
votes
1answer
269 views

Can't create QwtPlot without getting 1073741515 at run time

I'm working on a project in Qt 4.7.4 using the msvc2008 compiler, and I'm trying to use Qwt to plot some graphs in my project. I tried to add a very simple graph, and when that didn't work, I ...
0
votes
1answer
393 views

How do I link to Qwt libraries on Ubuntu?

I have installed the Qwt library on Ubuntu 10.04. The Qwt plotting widgets have appeared in QtCreator but when I try to use any of them I get the error: "qwt_plot.h" no such file or directory. ...
0
votes
0answers
177 views

Is the Qwt plugin for QtDesigner in Pythonxy absent by default?

I've just installed Pythonxy 2.6.6.0 on WinXp XP3 32-bit. So far so good, but when attempting to create a widget with the bundled QtDesigner, it is unable to load the Qwt plugin, which is critical for ...
0
votes
0answers
81 views

How to retain previous values in qraph?

I am new to qwt and I am facing a problem that when I refresh my graph after 10 seconds my old graph is removed and new is plotted. What I want though is that my previous graph is retained and new ...
0
votes
1answer
275 views

moving graph using c++ and QWT

hello every one i want to ask that how can i plot a moving graph using qwt as i am new to qwt so i dont have any idea like i want a curve. my data is continuously coming. that is i want two adjacent ...
0
votes
0answers
75 views

setAxisScale and setAxisTitle not found

hello every one i am working on qwt but i am facing a problem that my program gives me error error: ‘xBottom’ was not declared in this scope error: ‘setAxisTitle’ was not declared in this scope ...
0
votes
1answer
282 views

undefined reference to `vtable for MainWindow' error

hi every one i am working a in qt and qwt but in my program i am getting these error undefined reference to `vtable for MainWindow' error: collect2: ld returned 1 exit status i didnt get it what is ...
0
votes
2answers
599 views

how to set qwt path or environment variable

I have installed qwt and include the path INCLUDEPATH += /usr/local/qwt-6.0.0-rc5/include LIBS += -L/usr/local/qwt-6.0.0-rc5/lib -lqwt in my profile. But when I run my program i get the error ...
0
votes
1answer
446 views

error in running qwt program

hi every one i have installed qwt and include the path INCLUDEPATH += /usr/local/qwt-6.0.0-rc5/include LIBS += -L/usr/local/qwt-6.0.0-rc5/lib -lqwt in my pro file but when i run my program i get ...
0
votes
1answer
700 views

installing qwt with qt creator

hi every one i have installed qt-creator from built in ubuntu software center now i want to install qwt i have download qw1-6.0-rc5 from a site unzip it it contain many files like qwt.prf qwt.pro ...
0
votes
1answer
75 views

What's the state of the art for scientific graphics on websites?

Basically I want to build a web interface to a server-side math engine. (Like a simplified version of QtOctave/GSL.) But I haven't seen many resources to generate mathematical graphs on the client ...
0
votes
2answers
398 views

How to create pdf file from Qt application?

In my qt application I am conducting some network tests. I have to create a report according to the test output. So I need to create the report in pdf file format. can anybody please let me know how ...
0
votes
2answers
533 views

Qt oscilloscope example

I was told there is a qt oscilloscope example available online, not sure if it's by Qt QDevelop or someone else. Can someone give me a link to this project? I need this to test something I am working ...
0
votes
1answer
555 views

QDevelop Qt IDE in Ubuntu 10.04 LTS Lucid Lynx qwt

I am having an issue using the QDevelop, Qt IDE (Qt version 4.6.2) in Ubuntu 10.04 LTS Lucid Lynx. The code I am trying to work with was transfered from a newer 64bit laptop to my 32 bit laptop. Both ...
0
votes
1answer
1k views

using qwt in QT Creator gives error Collect2: ld returned 1 exit status

Starting: C:/Qt/2010.02.1/mingw/bin/mingw32-make.exe -w mingw32-make: Entering directory C:/Qt/2010.02.1/qt/qwt/qwt-5.2.1/textengines/data_plot' C:/Qt/2010.02.1/mingw/bin/mingw32-make -f ...
0
votes
1answer
101 views

windows Forms curve/plot control

I need plot a curve for my data , the source is like : 12, 14, 18, 30, .... I was using Qt Qwt, and need port it to windows forms, are there controls? free of charge?
0
votes
1answer
845 views

QWT/creator dll problems

I have been using qwt for some time, with the MSVC++ integrated versions of QT. Lately, I have been experimenting successfully with the QT Creator SDK, which uses the mingw-g++ tool chain, etc. I ...
0
votes
2answers
4k views

How to build Qwt on Windows

Here's what I've done: Downloaded qwt-4.2.0-setup-qt230nc.exe from sourceforge Unpack to C:\Program Files\Qwt Go to Qt Command Prompt Run msvc-qmake.bat. Get the output. Now the lib directory ...
-1
votes
1answer
38 views

qwt: plot 1-dimensional array?

What is the most simple way to plot a 1-dimensional array like that: double ad_data[64]; int i; for(i=0; i<64; i++) { ad_data[i] = sin( 1.0/16 * i * 3.1415 ); } in qwt?

1 2