Results 1 to 5 of 5

Thread: problem in positioning item in QGraphicsScene()

  1. #1
    Join Date
    Sep 2008
    Location
    Bangalore
    Posts
    659
    Thanks
    116
    Thanked 42 Times in 41 Posts
    Qt products
    Qt4
    Platforms
    Unix/X11 Windows

    Default problem in positioning item in QGraphicsScene()

    hi friends,
    i have a problem in positioning an rect item (0, 0, 20, 150) in a graphicsScene() of size (0, 0, 1024, 1024)

    Qt Code:
    1. DiagView::DiagView(QWidget *parent)
    2. : QGraphicsView(parent)
    3.  
    4. {
    5. setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
    6. setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
    7. setCacheMode(CacheBackground);
    8. setViewportUpdateMode(FullViewportUpdate);
    9. setRenderHints(QPainter::Antialiasing | QPainter::SmoothPixmapTransform);
    10. setStyleSheet("background:#336699");
    11. QRectF bounds(0, 0, 1024, 1024);
    12. scene = new QGraphicsScene(bounds, this);
    13. setScene(scene);
    14.  
    15. item1 = new SlotItem(QRectF(0, 0, 20, 150));
    16. item1->setPos(10,180);
    17. scene->addItem(item1);
    18. }
    19. void DiagView::resizeEvent(QResizeEvent *event)
    20. {
    21. QGraphicsView::resizeEvent(event);
    22. fitInView(scene->sceneRect(), Qt::KeepAspectRatio);
    23. }
    To copy to clipboard, switch view to plain text mode 
    slotitem.cpp
    Qt Code:
    1. SlotItem::SlotItem(const QRectF &rect)
    2. {
    3.  
    4. }
    5. void SlotItem::paint(QPainter *painter, const QStyleOptionGraphicsItem *, QWidget *)
    6. {
    7. painter->setBrush(QColor(0, 102, 153));
    8. painter->drawRoundRect(rect());
    9.  
    10. }
    11. QRectF SlotItem::boundingRect()
    12. {
    13. return QRectF(0,0, 50,300);
    14.  
    15. }
    To copy to clipboard, switch view to plain text mode 
    main.cpp
    Qt Code:
    1. int main(int argc, char *argv[])
    2. {
    3. QApplication app(argc, argv);
    4.  
    5. DiagView *dialog = new DiagView();
    6. dialog->setGeometry(0, 0, 1024, 1024);
    7. dialog->show();
    8. return app.exec();
    9. }
    To copy to clipboard, switch view to plain text mode 

    but the SlotItem is shown in the center of the view port because of the resize event .. if i dont use resize event it positioned the item acurately ... but i need the resize event in future ... what went wrong in my code .. please any one help me ...
    Attached Images Attached Images
    Last edited by wagmare; 7th May 2009 at 10:20. Reason: attached the screen shot image of the window

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

    Default Re: problem in positioning item in QGraphicsScene()

    I'm a bit confused. First you pass a rectangle to the QGraphicsRectItem constructor but then you reimplement boundingRect() and return a different rectangle. What's the point of doing that? The two rectangles should be identical.

    About your problem - try changing the aspect parameter of the fitInView call.
    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.


  3. #3
    Join Date
    Sep 2008
    Location
    Bangalore
    Posts
    659
    Thanks
    116
    Thanked 42 Times in 41 Posts
    Qt products
    Qt4
    Platforms
    Unix/X11 Windows

    Default Re: problem in positioning item in QGraphicsScene()

    sorry i will change soon the bounding rect value ....
    sir in my view i set the geometry to (1024, 1024) and QGraphicsScene also has the same and i positioned the item and it works correctly ... i reimplement the resize event then now the item displayed in centre when i use setPos(0, 30) in my scene .... please help ...

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

    Default Re: problem in positioning item in QGraphicsScene()

    Please read my post again.
    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.


  5. #5
    Join Date
    Sep 2008
    Location
    Bangalore
    Posts
    659
    Thanks
    116
    Thanked 42 Times in 41 Posts
    Qt products
    Qt4
    Platforms
    Unix/X11 Windows

    Default Re: problem in positioning item in QGraphicsScene()

    try changing the aspect parameter of the fitInView call.
    thanks ... i will

Similar Threads

  1. QPrinter on QGraphicsScene Border Problem
    By patrik08 in forum Qt Programming
    Replies: 1
    Last Post: 14th November 2007, 16:49
  2. Replies: 1
    Last Post: 19th April 2007, 23:23
  3. problem with "QListWidget" item
    By impeteperry in forum Qt Programming
    Replies: 6
    Last Post: 16th April 2007, 19:00
  4. Moving an item in QGraphicsScene
    By prosass in forum Newbie
    Replies: 4
    Last Post: 28th March 2007, 15:21
  5. QScrollArea problem positioning a QWidget inside
    By Spectator in forum Qt Programming
    Replies: 4
    Last Post: 20th February 2006, 23:59

Tags for this Thread

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
  •  
Digia, Qt and their respective logos are trademarks of Digia Plc in Finland and/or other countries worldwide.