Results 1 to 18 of 18

Thread: 4.7.0 - broken QGraphicsItem::ItemClipsChildrenToShape

  1. #1
    Join Date
    Nov 2010
    Location
    UK
    Posts
    9
    Thanks
    2
    Qt products
    Qt4
    Platforms
    MacOS X Windows

    Question 4.7.0 - broken QGraphicsItem::ItemClipsChildrenToShape

    Hi,

    I use the QGraphicsItem::ItemClipsChildrenToShape flag in a QGraphicsItemGroup to be sure that its children are painted only inside the group and their shape is cut outside the group. Having updated from 4.6.3 to 4.7.1 I can't see any items painted inside the group (when the QGraphicsItem::ItemClipsChildrenToShape flag is enabled).

    Found the problem http://bugreports.qt.nokia.com/browse/QTBUG-9024

    Any suggestions to take that in ?

  2. #2
    Join Date
    Jan 2006
    Location
    Belgium
    Posts
    1,938
    Thanked 268 Times in 268 Posts
    Qt products
    Qt4
    Platforms
    Unix/X11 Windows
    Wiki edits
    20

    Default Re: 4.7.0 - broken QGraphicsItem::ItemClipsChildrenToShape

    If you use a git clone, do a pull and rebuild Qt.
    Otherwise apply the patch attached to the bug report and rebuild Qt

  3. #3
    Join Date
    Nov 2010
    Location
    UK
    Posts
    9
    Thanks
    2
    Qt products
    Qt4
    Platforms
    MacOS X Windows

    Default Re: 4.7.0 - broken QGraphicsItem::ItemClipsChildrenToShape

    The thing is the patch brakes the functionality as it exists in 4.7.0 and prior to 4.7.0 (4.6.3) the functionality worked as intended.

  4. #4
    Join Date
    Nov 2010
    Posts
    315
    Thanked 53 Times in 51 Posts
    Qt products
    Qt4
    Platforms
    Unix/X11 Windows Symbian S60 Maemo/MeeGo

    Default Re: 4.7.0 - broken QGraphicsItem::ItemClipsChildrenToShape

    Quote Originally Posted by leetar View Post
    Hi,

    I use the QGraphicsItem::ItemClipsChildrenToShape flag in a QGraphicsItemGroup to be sure that its children are painted only inside the group and their shape is cut outside the group. Having updated from 4.6.3 to 4.7.1 I can't see any items painted inside the group (when the QGraphicsItem::ItemClipsChildrenToShape flag is enabled).

    Found the problem http://bugreports.qt.nokia.com/browse/QTBUG-9024

    Any suggestions to take that in ?
    The problem you are describing is different then reported bug you are quoting!
    Bug report says about performance and nothing about painting problems!

    So show me your code!
    what is the shape of parent?
    Last edited by MarekR22; 25th November 2010 at 20:18. Reason: spelling corrections

  5. #5
    Join Date
    Nov 2010
    Location
    UK
    Posts
    9
    Thanks
    2
    Qt products
    Qt4
    Platforms
    MacOS X Windows

    Default Re: 4.7.0 - broken QGraphicsItem::ItemClipsChildrenToShape

    # inherits QGraphicsItemGroup (boundingRect(), shape(), childrenBoundingRect() are not overridden)
    MyGroupItem:MyGroupItem()
    : QGraphicsItemGroup()
    #

    MyGroupItem::test()
    {
    setFlag(QGraphicsItem::ItemClipsChildrenToShape, true);
    QGraphicsRectItem * item = new QGraphicsRectItem(this);
    item->setRect(0,0, 20, 20);
    qDebug() << item->parentItem()->boundingRect();
    qDebug() << item->parentItem()->childrenBoundingRect();
    qDebug() << item->parentItem()->shape();
    }

    QRectF(0,0 0x0)
    QRectF(0,0 0x0)
    QPainterPath: Element count=0


    MyGroupItem::test()
    {
    // setFlag(QGraphicsItem::ItemClipsChildrenToShape, true);
    QGraphicsRectItem * item = new QGraphicsRectItem(this);
    item->setRect(0,0, 20, 20);
    qDebug() << item->parentItem()->boundingRect();
    qDebug() << item->parentItem()->childrenBoundingRect();
    qDebug() << item->parentItem()->shape();
    }

    QRectF(0,0 20x20)
    QRectF(0,0 20x20)
    QPainterPath: Element count=5
    -> MoveTo(x=0, y=0)
    -> LineTo(x=20, y=0)
    -> LineTo(x=20, y=20)
    -> LineTo(x=0, y=20)
    -> LineTo(x=0, y=0)


    Added after 10 minutes:


    Also if you take a look at the actual diff of the bugfix http://bugreports.qt.nokia.com/secur...ug-9024.commit
    there is a code block that I'm not sure with and therefore, might cause the bug.

    void QGraphicsViewPrivate::setUpdateClip(QGraphicsItem *item)
    +{
    + Q_Q(QGraphicsView);
    + // We simply ignore the request if the update mode is either FullViewportUpdate
    + // or NoViewportUpdate; in that case there's no point in clipping anything.
    + if (!item || viewportUpdateMode == QGraphicsView::NoViewportUpdate
    + || viewportUpdateMode == QGraphicsView::FullViewportUpdate) {
    + hasUpdateClip = false;
    + return;
    + }
    +
    + // Calculate the clip (item's bounding rect in view coordinates).
    + // Optimized version of:
    + // QRect clip = item->deviceTransform(q->viewportTransform())
    + // .mapRect(item->boundingRect()).toAlignedRect();
    + QRect clip;
    + if (item->d_ptr->itemIsUntransformable()) {
    + QTransform xform = item->deviceTransform(q->viewportTransform());
    + clip = xform.mapRect(item->boundingRect()).toAlignedRect();
    + } else if (item->d_ptr->sceneTransformTranslateOnly && identityMatrix) {
    + QRectF r(item->boundingRect());
    + r.translate(item->d_ptr->sceneTransform.dx() - horizontalScroll(),
    + item->d_ptr->sceneTransform.dy() - verticalScroll());
    + clip = r.toAlignedRect();
    + } else if (!q->isTransformed()) {
    + clip = item->d_ptr->sceneTransform.mapRect(item->boundingRect()).toAlignedRect();
    + } else {
    + QTransform xform = item->d_ptr->sceneTransform;
    + xform *= q->viewportTransform();
    + clip = xform.mapRect(item->boundingRect()).toAlignedRect();
    + }
    +
    + if (hasUpdateClip) {
    + // Intersect with old clip.
    + updateClip &= clip;
    + } else {
    + updateClip = clip;
    + hasUpdateClip = true;
    + }
    +}

    P.S. I use qt 4.7.1 carbon (official lgpl dist, no custom changes) (mac os x 10.6.5)
    Last edited by leetar; 26th November 2010 at 08:41.

  6. #6
    Join Date
    Nov 2010
    Posts
    315
    Thanked 53 Times in 51 Posts
    Qt products
    Qt4
    Platforms
    Unix/X11 Windows Symbian S60 Maemo/MeeGo

    Default Re: 4.7.0 - broken QGraphicsItem::ItemClipsChildrenToShape

    Ok, this thing you are trying to do with this flag has no sense.

    MyGroupItem::shape - inherited from QGrphicsItem::shape and this takes boundingRect of item as a shape
    MyGroupItem::boundingRect - inherited from QGraphicsItemGroup::boundingRect - takes QGraphicsItem::childrenBoundingRect - union of boundingRect of children

    So you are try clip children to rectangle which covers whole content of all children so effectively no clipping should be done! The thing you are doing has no point!

    I can't prove it but I suspect that some optimization of childrenBoundingRect takes into account QGraphicsItem::ItemClipsChildrenToShape flag (it should) so as a result you have circular dependency boundingRect is calculated based on shape and shape is calculated based on boundingRect when this flag is set and that is why you have unexpected outcome.

    So I thing you should reimplement shape method so setting of QGraphicsItem::ItemClipsChildrenToShape would have some sense and to break possible circular dependency.

  7. #7
    Join Date
    Jan 2006
    Location
    Warsaw, Poland
    Posts
    33,368
    Thanks
    3
    Thanked 5,018 Times in 4,794 Posts
    Qt products
    Qt3 Qt4 Qt5 Qt/Embedded
    Platforms
    Unix/X11 Windows Android Maemo/MeeGo
    Wiki edits
    10

    Default Re: 4.7.0 - broken QGraphicsItem::ItemClipsChildrenToShape

    What is the effect you really want to achieve?
    Your biological and technological distinctiveness will be added to our own. Resistance is futile.

    Please ask Qt related questions on the forum and not using private messages or visitor messages.


  8. #8
    Join Date
    Nov 2010
    Location
    UK
    Posts
    9
    Thanks
    2
    Qt products
    Qt4
    Platforms
    MacOS X Windows

    Default Re: 4.7.0 - broken QGraphicsItem::ItemClipsChildrenToShape

    Re: 4.7.0 - broken QGraphicsItem::ItemClipsChildrenToShape
    Ok, this thing you are trying to do with this flag has no sense.

    MyGroupItem::shape - inherited from QGrphicsItem::shape and this takes boundingRect of item as a shape
    MyGroupItem::boundingRect - inherited from QGraphicsItemGroup::boundingRect - takes QGraphicsItem::childrenBoundingRect - union of boundingRect of children

    So you are try clip children to rectangle which covers whole content of all children so effectively no clipping should be done! The thing you are doing has no point!

    I can't prove it but I suspect that some optimization of childrenBoundingRect takes into account QGraphicsItem::ItemClipsChildrenToShape flag (it should) so as a result you have circular dependency boundingRect is calculated based on shape and shape is calculated based on boundingRect when this flag is set and that is why you have unexpected outcome.

    So I thing you should reimplement shape method so setting of QGraphicsItem::ItemClipsChildrenToShape would have some sense and to break possible circular dependency.
    I only provided a simple code demonstrating the issue.
    The option describes clearly:

    QGraphicsItem::ItemClipsChildrenToShape
    The item clips the painting of all its descendants to its own shape. Items that are either direct or indirect children of this item cannot draw outside this item's shape. By default, this flag is disabled; children can draw anywhere. This behavior is enforced by QGraphicsView::drawItems() or QGraphicsScene::drawItems(). This flag was introduced in Qt 4.3.

    And I had it working perfectly in 4.6.3, children weren't drawn outside the parent group item so no modifications around shape(), boundingRect(), childrentBoundingRect() were required. I only provided the output info that "tbscope" had requested.

    Re: 4.7.0 - broken QGraphicsItem::ItemClipsChildrenToShape
    What is the effect you really want to achieve?
    The effect I want is exactly what the option is intended to do. I want child items to be drawn only inside the QGraphicsItemGroup and being clipped when their shape is outside the parent. I had it working perfectly in 4.6.3 until I've upgraded to 4.7.1 recently.
    Last edited by leetar; 26th November 2010 at 13:05.

  9. #9
    Join Date
    Jan 2006
    Location
    Warsaw, Poland
    Posts
    33,368
    Thanks
    3
    Thanked 5,018 Times in 4,794 Posts
    Qt products
    Qt3 Qt4 Qt5 Qt/Embedded
    Platforms
    Unix/X11 Windows Android Maemo/MeeGo
    Wiki edits
    10

    Default Re: 4.7.0 - broken QGraphicsItem::ItemClipsChildrenToShape

    Quote Originally Posted by leetar View Post
    And I had it working perfectly in 4.6.3, children weren't drawn outside the parent group item
    Well, in 4.7 many optimizations were introduced, you probably stumbled upon one of them.

    so no modifications around shape(), boundingRect(), childrentBoundingRect() were required.
    Since the object group surely has the ItemHasNoContents flag set then shape() of the group item is meaningless or even empty (another optimization - calculating bounding rect of all children is expensive) so I'm guessing that clipping its children to this shape would probably result in no drawing at all which would be consistent with what you are getting right now. Removing the flag would probably "fix" the issue at the same time impacting the performance.

    The effect I want is exactly what the option is intended to do.
    I hate when people answer like that.

    I want child items to be drawn only inside the QGraphicsItemGroup and being clipped when their shape is outside the parent. I had it working perfectly in 4.6.3 until I've upgraded to 4.7.1 recently.
    Let me put it this way - why do you want to clip children to the shape of the group that contains them? What application functionality does it serve?
    Your biological and technological distinctiveness will be added to our own. Resistance is futile.

    Please ask Qt related questions on the forum and not using private messages or visitor messages.


  10. #10
    Join Date
    Nov 2010
    Location
    UK
    Posts
    9
    Thanks
    2
    Qt products
    Qt4
    Platforms
    MacOS X Windows

    Default Re: 4.7.0 - broken QGraphicsItem::ItemClipsChildrenToShape

    Tried to play with ItemHasNoContents and it didn't help. However, the group didn't have the flag manually enabled.

    The effect I want is exactly what the option is intended to do.
    I hate when people answer like that.
    My apologies but I wanted to make it short and clear as possible

    As for usage: Simple, I need items to be grouped and be clipped outside the group (I have own adjustments over boundingRect() in the actual code so it comes to be valuable but lets skip this part as it doesn't work even with the virgin example shown above).

  11. #11
    Join Date
    Jan 2006
    Location
    Warsaw, Poland
    Posts
    33,368
    Thanks
    3
    Thanked 5,018 Times in 4,794 Posts
    Qt products
    Qt3 Qt4 Qt5 Qt/Embedded
    Platforms
    Unix/X11 Windows Android Maemo/MeeGo
    Wiki edits
    10

    Default Re: 4.7.0 - broken QGraphicsItem::ItemClipsChildrenToShape

    Quote Originally Posted by leetar View Post
    Tried to play with ItemHasNoContents and it didn't help.
    However, the group didn't have the flag manually enabled.[/quote]
    True. The group item draws a selection rectangle so it has a boundingRect and a shape.

    As for usage: Simple, I need items to be grouped and be clipped outside the group (I have own adjustments over boundingRect() in the actual code so it comes to be valuable but lets skip this part as it doesn't work even with the virgin example shown above).
    The definition of the group is that it has a bounding rect of a union of bounding rects of all its children hence clipping child items to the group's bounding rect (as its shape is equivalent to its bounding rect) is by definition a no-op. If you had some clipping occuring before then most probably you were doing something you weren't supposed to be doing.
    Your biological and technological distinctiveness will be added to our own. Resistance is futile.

    Please ask Qt related questions on the forum and not using private messages or visitor messages.


  12. #12
    Join Date
    Nov 2010
    Location
    UK
    Posts
    9
    Thanks
    2
    Qt products
    Qt4
    Platforms
    MacOS X Windows

    Default Re: 4.7.0 - broken QGraphicsItem::ItemClipsChildrenToShape

    The definition of the group is that it has a bounding rect of a union of bounding rects of all its children hence clipping child items to the group's bounding rect (as its shape is equivalent to its bounding rect) is by definition a no-op. If you had some clipping occuring before then most probably you were doing something you weren't supposed to be doing.
    True, shape is equivalent to boundingRect. I only have the item group's boundingRect adjusted in my code for own purposes but nothing critical.

    Let's return to the simple code:

    MyGroupItem::test()
    {
    setFlag(QGraphicsItem::ItemClipsChildrenToShape, true);
    QGraphicsRectItem * item = new QGraphicsRectItem(this);
    item->setRect(0,0, 20, 20);
    qDebug() << item->parentItem()->boundingRect();
    qDebug() << item->parentItem()->childrenBoundingRect();
    qDebug() << item->parentItem()->shape();
    }

    QRectF(0,0 0x0)
    QRectF(0,0 0x0)
    QPainterPath: Element count=0
    Is it normal that the group contains children and has the output with empty values ?

  13. #13
    Join Date
    Jan 2006
    Location
    Warsaw, Poland
    Posts
    33,368
    Thanks
    3
    Thanked 5,018 Times in 4,794 Posts
    Qt products
    Qt3 Qt4 Qt5 Qt/Embedded
    Platforms
    Unix/X11 Windows Android Maemo/MeeGo
    Wiki edits
    10

    Default Re: 4.7.0 - broken QGraphicsItem::ItemClipsChildrenToShape

    Yes, I believe so. The values might get computed later on. Computing bounding rects is really expensive so if you wanted to add 20 items to the group there is no point in computing the value 20 times. Probably if you run this code while the program is already running you shall get correct values.
    Your biological and technological distinctiveness will be added to our own. Resistance is futile.

    Please ask Qt related questions on the forum and not using private messages or visitor messages.


  14. The following user says thank you to wysota for this useful post:

    leetar (26th November 2010)

  15. #14
    Join Date
    Nov 2010
    Posts
    315
    Thanked 53 Times in 51 Posts
    Qt products
    Qt4
    Platforms
    Unix/X11 Windows Symbian S60 Maemo/MeeGo

    Default Re: 4.7.0 - broken QGraphicsItem::ItemClipsChildrenToShape

    Hi,

    Read my previews post again there is possible explanation why the outcome is zero.
    After reading that you should come to conclusion that the only reasonable shape of the group when you want to have a clipping is something what you will provide.
    Default shape should not cause any clipping since boundingRect should always contain whole painted content of that item, so default shape of group will contain everything in the group!
    There was a bug in Qt ver<=4.6.3 that childrenBoundingRect returned to big area and clipping to parent shape was not taken into account. This was causing big memory problem when some effects were applied (on Meamo and Symbian it was quite critical).

    IMHO definitely you have to reimplement shape method (read my previous replay)! Your code has a bug which was not reviled because of some other bug in Qt.

  16. The following user says thank you to MarekR22 for this useful post:

    leetar (26th November 2010)

  17. #15
    Join Date
    Nov 2010
    Location
    UK
    Posts
    9
    Thanks
    2
    Qt products
    Qt4
    Platforms
    MacOS X Windows

    Default Re: 4.7.0 - broken QGraphicsItem::ItemClipsChildrenToShape

    So did I
    Well, not exactly shape() but boundingRect() (which is equally adjusted shape()).

    Let's take it from another side then (as I'll solve the rest I believe):

    I create a group item with ItemClipsChildrenToShape on.
    I add several items as children of the group item.
    As the result I have zero boundingRect / childrenBoundingRect of the group item. Wysota mentioned about some post boundingRect calculation of the group item but I haven't noticed any changes. How can I push it manually ?

  18. #16
    Join Date
    Jan 2006
    Location
    Warsaw, Poland
    Posts
    33,368
    Thanks
    3
    Thanked 5,018 Times in 4,794 Posts
    Qt products
    Qt3 Qt4 Qt5 Qt/Embedded
    Platforms
    Unix/X11 Windows Android Maemo/MeeGo
    Wiki edits
    10

    Default Re: 4.7.0 - broken QGraphicsItem::ItemClipsChildrenToShape

    I would really like to know what is the ultimate purpose of what you are trying to do. Maybe there is some other easier approach you could take.
    Your biological and technological distinctiveness will be added to our own. Resistance is futile.

    Please ask Qt related questions on the forum and not using private messages or visitor messages.


  19. #17
    Join Date
    Nov 2010
    Location
    UK
    Posts
    9
    Thanks
    2
    Qt products
    Qt4
    Platforms
    MacOS X Windows

    Default Re: 4.7.0 - broken QGraphicsItem::ItemClipsChildrenToShape

    An example:
    ---
    I have some area, 100x100 for instance.
    I have bunch of items that should be represented on the area but they are not allowed to be drawn outside but allowed to be clipped.
    Those items spread around the area using setPos() so if an item with QRectF(5,5,10,10) is painted then only half of the item should be shown and the rest is clipped.
    ---

    Meantime, I've solved that by inheriting boundingRect() and calculating it by my own (foreach (QGraphicsItem * item, childItems()).
    Therefore, I was able to calculate borders and only thing that I happened to trick around was to detect and prevent excessive recalculation so I had the calculated boundingRect cached.

    By the way, having looked through qt sources I found this:

    qt 4.6.3:

    Qt Code:
    1. void QGraphicsItemPrivate::childrenBoundingRectHelper(QTransform *x, QRectF *rect)
    2. {
    3. for (int i = 0; i < children.size(); ++i) {
    4. QGraphicsItem *child = children.at(i);
    5. QGraphicsItemPrivate *childd = child->d_ptr.data();
    6. bool hasPos = !childd->pos.isNull();
    7. if (hasPos || childd->transformData) {
    8. // COMBINE
    9. QTransform matrix = childd->transformToParent();
    10. if (x)
    11. matrix *= *x;
    12. *rect |= matrix.mapRect(child->boundingRect());
    13. if (!childd->children.isEmpty())
    14. childd->childrenBoundingRectHelper(&matrix, rect);
    15. } else {
    16. if (x)
    17. *rect |= x->mapRect(child->boundingRect());
    18. else
    19. *rect |= child->boundingRect();
    20. if (!childd->children.isEmpty())
    21. childd->childrenBoundingRectHelper(x, rect);
    22. }
    23. }
    24. }
    To copy to clipboard, switch view to plain text mode 

    qt 4.7.1

    Qt Code:
    1. void QGraphicsItemPrivate::childrenBoundingRectHelper(QTransform *x, QRectF *rect, QGraphicsItem *topMostEffectItem)
    2. {
    3.  
    4. QRectF childrenRect;
    5. QRectF *result = rect;
    6. rect = &childrenRect;
    7. const bool setTopMostEffectItem = !topMostEffectItem;
    8.  
    9. for (int i = 0; i < children.size(); ++i) {
    10. QGraphicsItem *child = children.at(i);
    11. QGraphicsItemPrivate *childd = child->d_ptr.data();
    12. if (setTopMostEffectItem)
    13. topMostEffectItem = child;
    14. bool hasPos = !childd->pos.isNull();
    15. if (hasPos || childd->transformData) {
    16. // COMBINE
    17. QTransform matrix = childd->transformToParent();
    18. if (x)
    19. matrix *= *x;
    20. *rect |= matrix.mapRect(child->d_ptr->effectiveBoundingRect(topMostEffectItem));
    21. if (!childd->children.isEmpty())
    22. childd->childrenBoundingRectHelper(&matrix, rect, topMostEffectItem);
    23. } else {
    24. if (x)
    25. *rect |= x->mapRect(child->d_ptr->effectiveBoundingRect(topMostEffectItem));
    26. else
    27. *rect |= child->d_ptr->effectiveBoundingRect(topMostEffectItem);
    28. if (!childd->children.isEmpty())
    29. childd->childrenBoundingRectHelper(x, rect, topMostEffectItem);
    30. }
    31. }
    32.  
    33. if (flags & QGraphicsItem::ItemClipsChildrenToShape){
    34. if (x)
    35. *rect &= x->mapRect(q->boundingRect());
    36. else
    37. *rect &= q->boundingRect();
    38. }
    39.  
    40. *result |= *rect;
    41. }
    To copy to clipboard, switch view to plain text mode 

  20. #18
    Join Date
    Jan 2006
    Location
    Warsaw, Poland
    Posts
    33,368
    Thanks
    3
    Thanked 5,018 Times in 4,794 Posts
    Qt products
    Qt3 Qt4 Qt5 Qt/Embedded
    Platforms
    Unix/X11 Windows Android Maemo/MeeGo
    Wiki edits
    10

    Default Re: 4.7.0 - broken QGraphicsItem::ItemClipsChildrenToShape

    Quote Originally Posted by leetar View Post
    I have some area, 100x100 for instance.
    I have bunch of items that should be represented on the area but they are not allowed to be drawn outside but allowed to be clipped.
    Those items spread around the area using setPos() so if an item with QRectF(5,5,10,10) is painted then only half of the item should be shown and the rest is clipped.
    Again this doesn't tell why you need this.

    Anyway, this works fine for me with 4.7:
    Qt Code:
    1. #include <QtGui>
    2. #include <cmath>
    3.  
    4. int main(int argc, char **argv){
    5. QApplication app(argc, argv);
    6. QGraphicsScene scene(QRect(-150, -150, 300, 300));
    7. QGraphicsRectItem *rect = new QGraphicsRectItem(QRect(-100,-100, 200, 200));
    8. rect->setPen(QPen(Qt::blue));
    9. rect->setFlag(QGraphicsItem::ItemClipsChildrenToShape, true);
    10. scene.addItem(rect);
    11. for(int i=0;i<12;i++){
    12. QGraphicsEllipseItem *ell = new QGraphicsEllipseItem(QRect(-30, -30, 60, 60), rect);
    13. ell->setBrush(QColor(qrand()%256, qrand()%256, qrand()%256));
    14. qreal x = 100*sin(i*3.14/6.0);
    15. qreal y = 100*cos(i*3.14/6.0);
    16. ell->setPos(x, y);
    17. }
    18. view.setScene(&scene);
    19. view.setRenderHint(QPainter::Antialiasing);
    20. view.show();
    21. return app.exec();
    22. }
    To copy to clipboard, switch view to plain text mode 
    Your biological and technological distinctiveness will be added to our own. Resistance is futile.

    Please ask Qt related questions on the forum and not using private messages or visitor messages.


Similar Threads

  1. Qt 4.7 / Mac deployment broken?
    By SamppaM in forum Qt Programming
    Replies: 1
    Last Post: 26th November 2010, 14:04
  2. Broken Qt
    By hakermania in forum Installation and Deployment
    Replies: 7
    Last Post: 9th September 2010, 08:02
  3. QGraphicsGridLayout Broken
    By oberlus in forum Qt Programming
    Replies: 1
    Last Post: 27th August 2010, 10:32
  4. Replies: 1
    Last Post: 25th February 2009, 00:34
  5. Qt4.3 broken by Qt4.4
    By bnilsson in forum Installation and Deployment
    Replies: 2
    Last Post: 4th January 2008, 11:41

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Qt is a trademark of The Qt Company.