qwt_plot_legenditem.h 3.63 KB
Newer Older
Bryant's avatar
Bryant committed
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 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136
/* -*- mode: C++ ; c-file-style: "stroustrup" -*- *****************************
 * Qwt Widget Library
 * Copyright (C) 1997   Josef Wilgen
 * Copyright (C) 2002   Uwe Rathmann
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the Qwt License, Version 1.0
 *****************************************************************************/

#ifndef QWT_PLOT_LEGEND_ITEM_H
#define QWT_PLOT_LEGEND_ITEM_H

#include "qwt_global.h"
#include "qwt_plot_item.h"
#include "qwt_legend_data.h"

class QFont;

/*!
  \brief A class which draws a legend inside the plot canvas

  QwtPlotLegendItem can be used to draw a inside the plot canvas.
  It can be used together with a QwtLegend or instead of it
  to have more space for the plot canvas.

  In opposite to QwtLegend the legend item is not interactive. 
  To identify mouse clicks on a legend item an event filter
  needs to be installed catching mouse events ob the plot canvas.
  The geometries of the legend items are available using
  legendGeometries().
  
  The legend item is aligned to plot canvas according to 
  its alignment() flags. It might have a background for the
  complete legend ( usually semi transparent ) or for
  each legend item.

  \note An external QwtLegend with a transparent background 
        on top the plot canvas might be another option 
        with a similar effect.
*/

class QWT_EXPORT QwtPlotLegendItem: public QwtPlotItem
{
public:
    /*!
      \brief Background mode

      Depending on the mode the complete legend or each item 
      might have an background.

      The default setting is LegendBackground.

       \sa setBackgroundMode(), setBackgroundBrush(), drawBackground()
     */
    enum BackgroundMode
    {
        //! The legend has a background
        LegendBackground,

        //! Each item has a background
        ItemBackground
    };

    explicit QwtPlotLegendItem();
    virtual ~QwtPlotLegendItem();

    virtual int rtti() const;

    void setAlignment( Qt::Alignment );
    Qt::Alignment alignment() const;

    void setMaxColumns( uint );
    uint maxColumns() const;

    void setMargin( int );
    int margin() const;

    void setSpacing( int );
    int spacing() const;

    void setItemMargin( int );
    int itemMargin() const;

    void setItemSpacing( int );
    int itemSpacing() const;
    
    void setFont( const QFont& );
    QFont font() const;

    void setBorderDistance( int numPixels );
    int borderDistance() const;

    void setBorderRadius( double );
    double borderRadius() const;

    void setBorderPen( const QPen & );
    QPen borderPen() const;

    void setBackgroundBrush( const QBrush & );
    QBrush backgroundBrush() const;

    void setBackgroundMode( BackgroundMode );
    BackgroundMode backgroundMode() const;

    void setTextPen( const QPen & );
    QPen textPen() const;

    virtual void draw( QPainter *p,
        const QwtScaleMap &xMap, const QwtScaleMap &yMap,
        const QRectF &rect ) const;

    void clearLegend();

    virtual void updateLegend( const QwtPlotItem *,
        const QList<QwtLegendData> & );

    virtual QRect geometry( const QRectF &canvasRect ) const;

    virtual QSize minimumSize( const QwtLegendData & ) const;
    virtual int heightForWidth( const QwtLegendData &, int w ) const;

    QList< const QwtPlotItem * > plotItems() const;
    QList< QRect > legendGeometries( const QwtPlotItem * ) const;

protected:
    virtual void drawLegendData( QPainter *painter, 
        const QwtPlotItem *, const QwtLegendData &, const QRectF & ) const;

    virtual void drawBackground( QPainter *, const QRectF &rect ) const;

private:
    class PrivateData;
    PrivateData *d_data;
};

#endif