Qt Forum

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Unsolved
    1. Home
    2. Tags
    3. items

    Log in to post
    • All categories
    • N

      Solved How to remove decoration tinting of selected items in item views?
      General and Desktop • qss views items selection • • napajejenunedk0

      10
      1
      Votes
      10
      Posts
      2860
      Views

      O

      QListView {outline: none;}
    • K

      Solved Sorting QTableview items alphabetically!
      General and Desktop • tableviewcolumn items sort alphabetical • • Kushan

      6
      0
      Votes
      6
      Posts
      3605
      Views

      K

      @VRonin Thanx mate

    • A

      items() and itemsAt() do not return correct item position
      General and Desktop • itemat item items position qgraphicsview qgraphicsscene • • alogim

      6
      0
      Votes
      6
      Posts
      4995
      Views

      A

      I do not understand last question. I do not see any problem with mapping which rely on the item bounding rectangle.

      You can have an infinite number of visually the same graphics items if you use different combination of position and bounding box parameters.

      For example if you create QGraphicsEllipseItem using following rectangle/position pairs you will get the same result on the screen?
      pair 1:
      QRectF rect1( 0, 0, 1., 2 );
      QPointF pos1(10.,20.);
      pair 2:
      QRectF rect1( 10,20, 1., 2 );
      QPointF pos1(0.,0.);

      Which way to define depends on your needs.