Skip to content
  • 0 Votes
    11 Posts
    4k Views
    mrjjM

    @Niagarer
    Good found. :)

  • 0 Votes
    14 Posts
    3k Views
    SGaistS

    You can make a "container widget" that will handle the showing of the label properly.

  • 0 Votes
    20 Posts
    5k Views
    C

    @onurcevik Did you ever figure the solution for this? Working on it now

  • Canvas/QPainter bug

    Unsolved QML and Qt Quick
    3
    0 Votes
    3 Posts
    2k Views
    P

    Hello, I encountered the same problem as you, did you solve it, it will be black or blue screen when zoomed in

  • 0 Votes
    6 Posts
    2k Views
    SGaistS

    Sorry, I don't have the XPS printer available. Can you check whether you have the same result with the QPdfWriter class ?

  • 0 Votes
    2 Posts
    2k Views
    DiracsbracketD

    @mdma2
    Can you post the full code of this short example, so that it can be tried out immediately using simple copy/paste...

  • 0 Votes
    11 Posts
    19k Views
    D

    @Buckwheat How do you avoid panning and transform ( Zoom ) for those site scale and compass rose ?

    Found the solution: Use painter.resetTransform().

  • 0 Votes
    3 Posts
    860 Views
    I

    This is a pretty old post, but I recently tried to tackle this and wanted to write down some of my findings about this obscure corner of Qt. It is probable that not all of this correct, this is just my current understanding.

    The purpose of QAbstractTextDocumentLayout::draw is to paint all of the relevant text blocks in the document (typically by means of delegating to QTextLayout::draw which does the actual heavy lifting) as well as any additional decorations and elements that surround the actual text objects (e.g. frame borders, list bullets, etc). It is also responsible for drawing the text cursor marker if needed.

    The layout class operates in document coordinates, so the position or size of the viewport of the actual widget (if it is even a widget, it could be drawing to a printer) is of no concern. The given QPainter is already pre-configured to accept the document's coordinate system.

    What defines what elements the view wants painted is the context.clip rectangle. At least those elements that intersect with it should be painted, so a straightforward thing to do would be to iterate over all blocks in the document, and check if their bounding rectangle intersects with the clip rectangle. Given that all blocks should already have their layout in place by the time draw is called, this is relatively fast. Of course this can be further optimized based on the layout class' knowledge of how blocks are laid out, for example a plain-text-like layout that arranges blocks linearly can use some sort of binary search.

    It is allowed to draw more than the clip, so drawing all blocks every time is a valid approach, although inefficient. It is also possible that the given clip rectangle is invalid, in which case everything needs to be drawn anyway. Though, I haven't seen QTextEdit not provide a valid clip.

    Other members of the PaintContext:

    palette - if you want to use the view's palette pens and brushes to paint something, they are available through here, although most colors will be determined by the character format.

    selections - for the text editing widgets, those are the "extra selections". For each painted block, you'll want to check if any of the extra selections' cursor is relevant to that block, turn it into block-relative start and end positions, and collect into a list that will be provided to QTextLayout::draw.

    cursorPosition - position in characters (relative to the document) where the text cursor marker should be drawn. Straightforward implementation would figure out the relevant block containing that position, and if relevant to the draw call, delegate to its' layout's QTextLayout::drawCursor method. You can also paint your own cursor directly with the painter if you'd like something custom. It is -1 if no cursor is required. One thing I noticed is that QTextEdit repeatedly calls draw on the text cursor's immediate area on a timer, alternating cursorPosition between -1 and the actual position, so that' how it makes a blinking cursor. There is also something with additional negative values, that seems related to pre-edit text, which is something I don't fully understand yet.

  • 0 Votes
    2 Posts
    926 Views
    K

    @dalishi
    You should not mix painter and gl calls like that. You should put gl calls between calls to beginNativePainting() and endNativePainting(), which are painter functions. It might also help to save the painter state before and restore it after depending on how it messes up your gl stuff.
    the docs here tell you what the painter does to the states.

  • 0 Votes
    15 Posts
    13k Views
    pauleddP

    Ok, I will try that...
    Maybe I should have been more clearly what I intend to get...
    I had it all working already, just without the scaling issue

    alt text

    I get camera images and I let opencv compute min/max values and a centerpoint. Somethimes the camera is rotated in a undesired position so the user should be able to rotate the view, including the measurepoints, and more complex including the point values so that the stay at the points but do not rotate staying readable...

    I keep trying with qpainter draw

  • 0 Votes
    7 Posts
    2k Views
    J

    @VRonin Yes, they are, but the pixmap is just grabbed QGraphicsView's content using grab() method.

  • 0 Votes
    3 Posts
    2k Views
    VagabondV

    @mrjj Thanks! I'll look into that. I got another reply from stackoverflow which I will also give a shot. I'll keep everyone in both forums posted as soon as I have some results.

  • 0 Votes
    3 Posts
    2k Views
    SGaistS

    Hi,

    Glad you found out and thanks for sharing !

    What version of Qt are you using ?
    On which platform ?
    Did you check the bug report system to see if it's something known ?

  • 0 Votes
    6 Posts
    4k Views
    SGaistS

    It uses the raster engine. See here for historical informations.

  • 0 Votes
    11 Posts
    8k Views
    G

    The following solution worked:

    #include "mainwindow.h" #include "ui_mainwindow.h" MainWindow::MainWindow(QWidget* parent) : QMainWindow(parent), ui(new Ui::MainWindow) { ui->setupUi(this); } MainWindow::~MainWindow() { delete ui; } void MainWindow::paintEvent(QPaintEvent *event) { QPainter painter(this); QFont font = painter.font (); font.setFamily ("Arial"); font.setPixelSize (25); painter.setFont (font); painter.setPen (Qt::white); QRect rect(100, 120, 200, 50); painter.setBrush (Qt::blue); painter.drawRect (rect); painter.drawText (rect, Qt::AlignCenter, tr("Record deleted.")); painter.end(); QTimer::singleShot(3000,this,&MainWindow::hideRect); update(); }

    Thank you for your help.

  • 0 Votes
    24 Posts
    18k Views
    X

    Yeah i feel like i do sudo apt-get update && upgrade at least once a day. I just checked about SIP and i compiled it from source but i cant remember if i actually used the command make and make install. Does that mean i have to reinstall pyqt5 again? I guess i just open a new thread. Thanks for all the help @SGaist

  • 0 Votes
    8 Posts
    4k Views
    A

    I have found a solution that kind of does the job, although takes three times as much memory.
    Every update I calculate the difference between the new and the old saturation matrix, this eliminates 60% of the nonzero values, which means it gets drawn that much faster.

    As a second layer of optimization I call repaint with a rectangle describing the most important zone, and call update every 60ms.

  • 0 Votes
    8 Posts
    5k Views
    M

    @joeQ
    As per your suggesttion i'll make changes in the code on my own.Once again thanks for your help.

  • 0 Votes
    2 Posts
    947 Views
    kshegunovK

    Not all paint devices (widgets, images, etc) support all composition modes. QImage does, but QWidget might not, which is what I suppose is happening here.