10 #ifndef QWT_COLUMN_SYMBOL_H 
   11 #define QWT_COLUMN_SYMBOL_H 
   13 #include "qwt_global.h" 
   14 #include "qwt_interval.h" 
   49         direction( BottomToTop )
 
   56         QRectF r( hInterval.minValue(), vInterval.minValue(),
 
   57             hInterval.maxValue() - hInterval.minValue(),
 
   58             vInterval.maxValue() - vInterval.minValue() );
 
   62             r.adjust( 1, 0, 0, 0 );
 
   64             r.adjust( 0, 0, -1, 0 );
 
   66             r.adjust( 0, 1, 0, 0 );
 
   68             r.adjust( 0, 0, 0, -1 );
 
   74     Qt::Orientation orientation()
 const 
   76         if ( direction == LeftToRight || direction == RightToLeft )
 
   77             return Qt::Horizontal;
 
  139     void setFrameStyle( FrameStyle style );
 
  140     FrameStyle frameStyle() 
const;
 
  142     void setLineWidth( 
int width );
 
  143     int lineWidth() 
const;
 
  145     void setPalette( 
const QPalette & );
 
  146     const QPalette &palette() 
const;
 
  148     void setStyle( Style );
 
  151     virtual void draw( QPainter *, 
const QwtColumnRect & ) 
const;