KD Chart 2  [rev.2.7]
kdganttstyleoptionganttitem.cpp
Go to the documentation of this file.
1 /****************************************************************************
2 ** Copyright (C) 2001-2020 Klaralvdalens Datakonsult AB. All rights reserved.
3 **
4 ** This file is part of the KD Chart library.
5 **
6 ** Licensees holding valid commercial KD Chart licenses may use this file in
7 ** accordance with the KD Chart Commercial License Agreement provided with
8 ** the Software.
9 **
10 **
11 ** This file may be distributed and/or modified under the terms of the
12 ** GNU General Public License version 2 and version 3 as published by the
13 ** Free Software Foundation and appearing in the file LICENSE.GPL.txt included.
14 **
15 ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
16 ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
17 **
18 ** Contact info@kdab.com if any conditions of this licensing are not
19 ** clear to you.
20 **
21 **********************************************************************/
22 
24 
25 using namespace KDGantt;
26 
33 
36  : BASE(),
37  displayPosition( Left ),
38  grid( 0 )
39 {
40  type = QStyleOption::SO_CustomBase+89;
41  version = 1;
42 }
43 
46  : BASE(other)
47 {
48  operator=( other );
49 }
50 
53 {
54  BASE::operator=( other );
55  boundingRect = other.boundingRect;
56  itemRect = other.itemRect;
58  grid = other.grid;
59  text = other.text;
60  return *this;
61 }
62 
63 #ifndef QT_NO_DEBUG_STREAM
65 {
66  switch ( p ) {
67  case KDGantt::StyleOptionGanttItem::Left: dbg << "KDGantt::StyleOptionGanttItem::Left"; break;
68  case KDGantt::StyleOptionGanttItem::Right: dbg << "KDGantt::StyleOptionGanttItem::Right"; break;
69  case KDGantt::StyleOptionGanttItem::Center: dbg << "KDGantt::StyleOptionGanttItem::Center"; break;
70  case KDGantt::StyleOptionGanttItem::Hidden: dbg << "KDGantt::StyleOptionGanttItem::Hidden"; break;
71  default: dbg << static_cast<int>( p );
72  }
73  return dbg;
74 }
75 
76 QDebug operator<<( QDebug dbg, const KDGantt::StyleOptionGanttItem& s )
77 {
78  dbg << "KDGantt::StyleOptionGanttItem[ boundingRect="<<s.boundingRect
79  <<", itemRect="<<s.itemRect
80  <<", displayPosition="<<s.displayPosition
81  <<", grid="<<s.grid
82  <<", text="<<s.text
83  <<"]";
84  return dbg;
85 }
86 
87 #endif /* QT_NO_DEBUG_STREAM */
88 
89 
QStyleOptionViewItem BASE
StyleOptionGanttItem & operator=(const StyleOptionGanttItem &other)
Class only listed here to document inheritance of some KDChart classes.
QDebug operator<<(QDebug dbg, KDGantt::StyleOptionGanttItem::Position p)
QStyleOption subclass for gantt items.

Klarälvdalens Datakonsult AB (KDAB)
"The Qt, C++ and OpenGL Experts"
https://www.kdab.com/

https://www.kdab.com/development-resources/qt-tools/kd-chart/