00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026 #include "KDChartAbstractAreaWidget.h"
00027 #include "KDChartAbstractAreaWidget_p.h"
00028
00029 #include <KDABLibFakes>
00030
00031
00032 using namespace KDChart;
00033
00034
00035 AbstractAreaWidget::Private::Private()
00036 {
00037
00038 }
00039
00040 AbstractAreaWidget::Private::~Private()
00041 {
00042
00043 }
00044
00045
00046 void AbstractAreaWidget::Private::resizeLayout(
00047 AbstractAreaWidget* widget, const QSize& size )
00048 {
00049 if( size == currentLayoutSize ) return;
00050
00051 currentLayoutSize = size;
00052
00053
00054 int left;
00055 int top;
00056 int right;
00057 int bottom;
00058 widget->getFrameLeadings( left, top, right, bottom );
00059 const QSize innerSize( size.width() - left - right,
00060 size.height() - top - bottom );
00061
00062
00063
00064
00065 widget->resizeLayout( innerSize );
00066 }
00067
00068
00069 AbstractAreaWidget::AbstractAreaWidget( QWidget* parent )
00070 : QWidget( parent )
00071 , AbstractAreaBase( new Private() )
00072 {
00073 init();
00074 }
00075
00076 AbstractAreaWidget::~AbstractAreaWidget()
00077 {
00078
00079 }
00080
00081 void AbstractAreaWidget::init()
00082 {
00083
00084 }
00085
00086 void AbstractAreaWidget::needSizeHint()
00087 {
00088
00089 }
00090
00091 #define d d_func()
00092
00093 void AbstractAreaWidget::resizeLayout( const QSize& size )
00094 {
00095 Q_UNUSED( size );
00096
00097 }
00098
00099 void AbstractAreaWidget::paintEvent( QPaintEvent* event )
00100 {
00101 Q_UNUSED( event );
00102 QPainter painter( this );
00103 if( size() != d->currentLayoutSize ){
00104 d->resizeLayout( this, size() );
00105 }
00106 paintAll( painter );
00107 }
00108
00109 void AbstractAreaWidget::paintIntoRect( QPainter& painter, const QRect& rect )
00110 {
00111
00112
00113 if( rect.isEmpty() ) return;
00114
00115 d->resizeLayout( this, rect.size() );
00116
00117 const QPoint translation( rect.topLeft() );
00118 painter.translate( translation );
00119 paintAll( painter );
00120 painter.translate( -translation.x(), -translation.y() );
00121
00122
00123
00124
00125
00126
00127
00128
00129
00130
00131
00132
00133
00134
00135
00136
00137
00138 }
00139
00140 void AbstractAreaWidget::forceRebuild()
00141 {
00142
00143 }
00144
00145 void AbstractAreaWidget::paintAll( QPainter& painter )
00146 {
00147
00148
00149
00150 paintBackground( painter, QRect(QPoint(0, 0), size() ) );
00151 paintFrame( painter, QRect(QPoint(0, 0), size() ) );
00152
00153
00154
00155
00156
00157
00158
00159
00160
00161
00162
00163
00164
00165
00166
00167
00168
00169
00170
00171
00172
00173
00174 int left;
00175 int top;
00176 int right;
00177 int bottom;
00178 getFrameLeadings( left, top, right, bottom );
00179 const QPoint translation( left, top );
00180 painter.translate( translation );
00181 paint( &painter );
00182 painter.translate( -translation.x(), -translation.y() );
00183
00184 }
00185
00186 QRect AbstractAreaWidget::areaGeometry() const
00187 {
00188 return geometry();
00189 }
00190
00191 void AbstractAreaWidget::positionHasChanged()
00192 {
00193 emit positionChanged( this );
00194 }
00195
00196
00197
00198
00199
00200
00201
00202
00203
00204