/* -*- C++ -*- */ /************************************************************************* * Copyright(c) 1995~2005 Masaharu Goto (root-cint@cern.ch) * * For the licensing terms see the file COPYING * ************************************************************************/ /**************************************************************** ** ** Implementation CannonField class, Qt tutorial 8 ** ****************************************************************/ #include "cannon.h" #include CannonField::CannonField( QWidget *parent, const char *name ) : QWidget( parent, name ) { ang = 45; setPalette( QPalette( QColor( 250, 250, 200) ) ); } void CannonField::setAngle( int degrees ) { if ( degrees < 5 ) degrees = 5; if ( degrees > 70 ) degrees = 70; if ( ang == degrees ) return; ang = degrees; repaint(); emit angleChanged( ang ); } void CannonField::paintEvent( QPaintEvent * ) { #if defined(TEST8) QString s = "Angle = " + QString::number( ang ); #endif QPainter p( this ); #if defined(TEST8) p.drawText( 200, 200, s ); #endif #if defined(TEST9) p.setBrush( blue ); p.setPen( NoPen ); p.translate( 0, rect().bottom() ); p.drawPie( QRect(-35, -35, 70, 70), 0, 90*16 ); p.rotate( -ang ); p.drawRect( QRect(33, -4, 15, 8) ); #endif } QSizePolicy CannonField::sizePolicy() const { return QSizePolicy( QSizePolicy::Expanding, QSizePolicy::Expanding ); }