Archived:Draw a bezier curve using QWidget
Archived: This article is archived because it is not considered relevant for third-party developers creating commercial solutions today. If you think this article is still relevant, let us know by adding the template {{ReviewForRemovalFromArchive|user=~~~~|write your reason here}}.
Qt Quick should be used for all UI development on mobile devices. The approach described in this article (based on QWidget) is deprecated.
Qt Quick should be used for all UI development on mobile devices. The approach described in this article (based on QWidget) is deprecated.
This code example shows how to draw a Bezier curve using QWidget.
Article Metadata
Code Example
Source file: Media:Bezier.zip
Tested with
Devices(s): Emulator
Compatibility
Platform(s): S60 3rd Edition, S60 5th Edition
Article
Keywords: Bezeir Curve
Created: kamaljaiswal
(25 Dec 2008)
Last edited: hamishwillee
(11 Oct 2012)
Source
#include "Bezier.h"
#include <QtGui>
#include <QApplication>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
Bezier win;
win.resize(360,640);
win.show();
return a.exec();
}
Screen Shot


18 Sep
2009