Public Member Functions
RectItemDelegate Class Reference

Brief description of class still missing. More...

#include <RectItemDelegate.h>

Inheritance diagram for RectItemDelegate:
DrawItemDelegate

List of all members.

Public Member Functions

virtual QList< QPointF > nodes (QGraphicsItem *item) const

Detailed Description

Brief description of class still missing.

Full description of class still missing


Member Function Documentation

QList< QPointF > RectItemDelegate::nodes ( QGraphicsItem *  item) const [virtual]

Description still missing

Implements DrawItemDelegate.

References TRACE.

{
  TRACE;
  QGraphicsRectItem * rectItem=static_cast<QGraphicsRectItem *>(item);
  QList<QPointF> nList;
  QRectF rect=rectItem->rect();
  nList.append(rect.topLeft());
  nList.append(rect.topRight());
  nList.append(rect.bottomLeft());
  nList.append(rect.bottomRight());
  return nList;
}

The documentation for this class was generated from the following files:
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Defines