-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathGraphicsCellGroup.cpp
More file actions
41 lines (31 loc) · 1.13 KB
/
GraphicsCellGroup.cpp
File metadata and controls
41 lines (31 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/***************************************************************************//**
* Project: Colony
*
* \file GraphicsCellGroup.cpp
* \author Marc Weber\n
* The SiMBioSys group (CosmoLab)\n
* Parc Científic de Barcelona\n
* Barcelona, Spain.\n
* http://www.thesimbiosys.com
* \version 1.0
* \date 11/2009
*
* Copyright 2009 by Marc Weber
******************************************************************************/
#include "GraphicsCellGroup.h"
#ifdef GUI
//------------------------------------------------------------------------------
GraphicsCellGroup::GraphicsCellGroup(QGraphicsItem *parent)
: QGraphicsItem(parent)
{
}
//------------------------------------------------------------------------------
QRectF GraphicsCellGroup::boundingRect() const
{
return childrenBoundingRect();
}
//------------------------------------------------------------------------------
void GraphicsCellGroup::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget)
{}
//------------------------------------------------------------------------------
#endif // GUI