Tagged Questions
The qpainter tag has no wiki summary.
7
votes
1answer
240 views
How to use a mask with QPainter?
I have a shape (in blue) loaded from a PNG with transparency:
Then I'm drawing several circles on top of this shape (in red) with QPainter::drawEllipse.
The result of that is somewhat similar to ...
5
votes
2answers
140 views
QPainter::rotate disables antialiasing of drawn text
I use QPainter::setRenderHint(QPainter::Antialiasing, true) to tell Qt that I want it to antialias any drawing I do (in this case, text drawn with drawText()).
This works fine and the text looks ...
3
votes
1answer
1k views
Using QPainter over OpenGL in QGLWidget when using shaders [SOLVED]
Many of you Qt (4.6 specifically) users will be familiar with the Overpainting example supplied in the OpenGL tutorials, I'm trying to do something very similar but using shaders for the pure OpenGL ...
2
votes
2answers
98 views
QT Beginner: QPainter widget not rendering
I don't have much experience with QT and am having trouble using QPainter.
I am trying to make a simple graphing widget which takes in a number of points and to create a QVector of QPoints, and then ...
2
votes
1answer
291 views
Qt & OpenGL - QGLWidget & QPainter: depth buffering
I subclass QGLWidget and have my painting code in paintEvent instead of paintGL as I want to paint a 2D overlay using QPainter over my 3D stuff done with OpenGL.
My depth buffering works fine when I ...
2
votes
1answer
328 views
Sharing OpenGL VAO/VBO/etc. via QGLWidget
I am using a 3 layer hierarchy of QGLWidgets to share shaders and vertex data between 5 OpenGL viewports in my CAD-like app. The root context is used for compiling application-wide shaders, the per ...
2
votes
3answers
143 views
Dragging object around a QWidget in Qt
I am trying to make a custom widget in Qt Creator that supports dragging objects around. At its simplest form, the widget has a QRect (or any other shape), on which I can click and then drag it around ...
2
votes
2answers
2k views
How to make a QImage or QPixmap semi-transparent - or why is setAlphaChannel obsolete?
4.7 and like to overlay two images on a qgraphicsview. The image on top shall be semi-transparent to allow to see through it. Initially both images are fully opaque. I expected some function for ...
2
votes
3answers
1k views
draw in a QFrame on clicking a button.
Say there is a QPushButton named "Draw", a QLineEdit and a QFrame. On clicking the button I want to take a number from QLineEdit and draw a circle in a QFrame. How can I do this? Please provide me ...
2
votes
1answer
936 views
2d HUD not drawing properly over QGLWidget (using QPainter)
I am trying to display HUD over my 3D game. For starters, I am just trying to display "Hello World", but I haven't had any success yet! The scene freezes / flickers once I am done.
I am using Qt/C++ ...
2
votes
2answers
616 views
Qt painting without clearing the background
I'm using a QPainter to get some graphics on a window. Unfortunately every time the .paintEvent is run, the whole window is cleared. How can I draw without clearing? I.e. how do I leave the stuff from ...
1
vote
1answer
31 views
Qt, low cost way to display only part of large QImage
I draw frequency spectrum of WAV file inside QImage (example: http://savepic.net/2350314.jpg). The WAV file may be long enough to not fit into screen considering good time resolution.
I need to be ...
1
vote
0answers
96 views
PyQT Calender - issues trying to color date cell
I'm having some issues trying to re-color a date cell after its selection selection using a calendar created in QT Designer and converted via pyuic 4.
So far I have seen some similar questions about ...
1
vote
2answers
165 views
QT, convert raw image to jpg using Hardware acceleration (gpu)
I need to convert an Raw image buffer into a jpg image buffer.
At the moment, I do this operation in the following way:
QImage tmpImage
= QImage(rawImgBuffer, img_width, img_height, ...
1
vote
1answer
58 views
QPainter Cache Possible?
I've Pie Shaped widgets that needs extensive paintings. So I want to cache the QPainter Once it have been painted in paintEvent. and reuse it latter. Is there any direct or hacky way of doing this ?
1
vote
1answer
141 views
How to rotate a QPushButton?
I would like---with Python and Qt4---to rotate a QPushButton (or at least its text) so it can stand vertically. I've seen some documentation online, but I couldn't make much sense out of it---it's in ...
1
vote
2answers
105 views
QPainter redraw on window gaining/losing focus
I am learning Qt and am trying to paint a simple display for my program with QPainter.
I draw static elements (frames etc.) once and only update dynamic elements afterwards.
Everything works fine, ...
1
vote
2answers
194 views
How can QPainter performanace be improved?
I have a large display (about 1000x2000 pixels) and I'm doing the following to draw images to the screen:
QImage *pImage = GetImage(); // from wherever
QPainter painter(this);
...
1
vote
1answer
196 views
how to send Qline coordinate to a QPainter Widget
I created a Qwidget, Form_temp, that draw lines based on an array of data created in the parent widget MainWindow. The issue I face is the data I send from the MainWindow to Form_temp via the slot ...
1
vote
3answers
480 views
Using QtConcurrent to load a Pixmap and paint it
I'm trying to create a Tile rendering program. Heres some basic code.
Header
class Tile: public QGraphicsItem
{
public:
Tile(void);
~Tile(void);
QGraphicsPixmapItem *tileItem;
void update(QPainter ...
1
vote
1answer
760 views
Use window/viewport to flip QPainter y-axis
I'm using Qt 4.7 QPainter to draw some polygons, etc into a widget. I am hoping to alter the coordinate system so that (0,0) is at the center of my widget, and the x/y axis behave in a standard ...
1
vote
1answer
388 views
Can't override VideoWidget paintEvent() in QT C++
I'm trying to draw some shapes over a VideoWidget from the Phonon library, but I can't override the paintEvent() method.
If I try to implement the method like this:
void ...
1
vote
1answer
212 views
Creating QGradient
Right now I am just trying to create a circle with a gradient fill:
//I want the center to be at 10, 10 in the circle and the radius to be 50 pixels
QRadialGradient radial(QPointF(10, 10), 50);
...
1
vote
1answer
2k views
QPainter not active
The following code results in a bunch of errors:
void MainWindow::displayBoard()
{
QPixmap pix(0,0);
pix.fill(Qt::white);
QPainter painter(&pix);
painter.setBrush(Qt::black);
for(int row = 0; row ...
1
vote
2answers
279 views
Coordinate scaling causes too large font sizes in QPainter::drawText
I'm working on simple 2D visualization module for MD simulation code. What I'm trying to do is drawing positions of simulated molecules using:
myPainter.drawEllipse(myQPoint,myRx,myRy)
And that ...
1
vote
2answers
565 views
How to draw an ellipse/circle over QGraphicsScene in a QGraphicsView
I have a QGraphicsView with a QGraphicsScene. That QGraphicsScene contains a QPixmap. It is possible to drag the scene. On top of that scene I have a HUD with QLabels, QPushButtons and other stuff. ...
1
vote
1answer
341 views
Qt QPainter error. Rotating an ellipse using horizontalSlider. Help?
Well I have to create a simple box which rotates an ellipse and some text depending upon value from horizontalSlider/spinBox. The widget has to be resizable, And size of the ellipse has to change ...
1
vote
1answer
250 views
Animated text with QPainter
Is it possible to draw an animated text with QPainter?
I only want to change color of text periodically.
If possible how to achieve?
1
vote
2answers
753 views
QWidget's paintEvent() lagging application
i'm studying and modifying the fridge magnets example, and the last thing I've tried to do was to draw a few labels and lines that are supposed to be on the background.
After looking around trying to ...
1
vote
2answers
526 views
PyQt4 - Image Watermark
I'm trying to open a PNG image and write some text to it (a watermark) via QImage and QPainter. The code works 100% on Linux but when I run it on Windows XP (haven't tested with any other versions of ...
1
vote
2answers
1k views
QPainter colored text (syntax coloring)
I have a custom Qt widget which I used to display disassembly and I am looking to add syntax coloring to it.
Currently, I simply set the QPen to a solid color, construct the text I want to display, ...
1
vote
2answers
824 views
Qpainter.rotate() question - qgis
I am customising QuantumGIS that uses Qt's Qpainter to draw and paint...
I am trying to draw a polyline on the canvas that is coming as a update through message queues..the draw is very fine...but ...
0
votes
1answer
55 views
Tiled rendering with QPainter
I'm implementing a tiled rendering system (to avoid the GL_MAX_VIEWPORT_DIMS-limitation). I need to support QWidget-overlays and must therefor implement tiled rendering for widgets as well. The plan ...
0
votes
1answer
117 views
Qt drawRect in background
I want to paint the background of a slider. I tried this but the color covers up the whole slider. This is in an inherited class of QSlider
void paintEvent(QPaintEvent *e) {
QPainter painter(this);
...
0
votes
1answer
90 views
QRect Width and Height in pixels?
In a PyQt4 Gui, I require the careful placement of multiple QPainter Pixmaps.
When specifying the coordinates and height and width of the new Pixmaps, I require that all units be in pixels.
...
0
votes
1answer
139 views
Using an alpha transparent mask on a QWidget?
Is it possible to assign an alpha-transparent mask to a QWidget? I know how to set a mask using setMask but it seems it only supports black&white masks. Is it possible to make it support a true ...
0
votes
1answer
67 views
PyQT: Silly QPainter.drawEllipse problem
The longer I stare at the code, the less I understand it, but the funnier it gets. In one case QPainter draws the circles, in another it does not.
My problem is that if it is successful, QPainter ...
0
votes
2answers
91 views
How to declare and instantiate a variable in QT?
At first I want to appologize for this stupid question, but im fairly new to QT, so forgive me ;)
Im drawing QPixmaps. But for performance issues I only want to load my QPixmaps once to use them over ...
0
votes
0answers
59 views
What is a good time for a paint event in QT?
I am animating 5-10 Circles in a Window. Painting these circles takes about 4-10 ms each time I draw them with QPainter.
I was wondering if that time is ok, or is much to long for such a simple ...
0
votes
1answer
203 views
How to draw a QPixmap with transparency
I've got a QPixmap and I would like to draw it on a QWidget. However, I would like to make it 50% transparent so that the background can be seen below. How can I do that?
0
votes
1answer
74 views
QPainter width and height
Is there any chance to find out the size of the QPainter? I am using QPainter for drawing the whole graphic interface for a mobile app. The problem is that certain application overlay the window with ...
0
votes
1answer
100 views
QBrush texture without tiling
Is there an easy way to get rid of tiling when using a QBrush with texture?
QImage* texture = CreateQImage(); // create texture
QBrush* brush = new QBrush(*texture); // create texture ...
0
votes
2answers
386 views
Render QWidget in paint() method of QWidgetDelegate for a QListView
i'm having difficulties implementing custom widget rendering in a QListView.
I currently have a QListView displaying my custom model called PlayQueue based on QAbstractListModel.
This is working fine ...
0
votes
2answers
137 views
invalid conversion from ‘QEvent*’ to ‘QPaintEvent*’
trying to find if touch event occurs or else just paint them.
bool MyWidget::event(QEvent *event)
{
switch (event->type())
{
case QEvent::TouchBegin:
case ...
0
votes
2answers
261 views
Some cells in QtableView are not repainted automatically after a clicking on a table cell
I'm using a QTableView in the implementation of an interactive board game. Images are to be displayed in the cells of the table. I'm using a QStyledItemDelegate with a paint function to draw the ...
0
votes
1answer
207 views
How to access a variable from another class in Qt?
I am trying to implement in Qt a main window which has 2 widgets: one area where I draw some points and one list box where I write all the points with their respective coordinates. And I would like to ...
0
votes
2answers
171 views
Qt paint figures at one window
I create class Widget, it creates window, this class paints something on the window (i.e. it works as I want).
I create yet one class, Circle, I want to paint on the window of class Widget.
I pass ...
0
votes
0answers
126 views
Qt: scrolling complex content. Web-Browser engine. Selecting a text
Just curious about scrolling complicated content inside web browser - like application. Lets assume i am using Qt and C++. This is not "how to" question, but more like "how does it work"? Completely ...
0
votes
2answers
297 views
c++ 2d plotting tool for linux
I am looking for a simple c++ 2d plotting tool for Linux (to be more honest "Cross-platform").
"koolplot" is nice but I think it's for windows only since its code includes graphics.h and windows.h.
...
0
votes
1answer
258 views
How can I tell QGraphicsItem::paint() is being called for printing?
I have a custom QGraphicsItem that display large (100s of MB compressed, mutli-channel) images. It's working pretty well right now.
The idea is only load scanlines that are needed for current view ...