mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-25 00:58:06 -05:00
- update methods of existing classes - add comment to methods missing in the sip bindings - split up collective sip files into single files and use same directory structure in python/ as in src/ - add a lot of missing classes (some might not make sense because of missing python methods in those classes) - remove some non-existing methods from the header files - add scripts/sipdiff - replace some usages of std::vector and std::set with QVector/QSet
54 lines
2.2 KiB
Plaintext
54 lines
2.2 KiB
Plaintext
class QgsRasterHistogramWidget : QWidget
|
|
{
|
|
%TypeHeaderCode
|
|
#include <qgsrasterhistogramwidget.h>
|
|
%End
|
|
public:
|
|
QgsRasterHistogramWidget( QgsRasterLayer *lyr, QWidget *parent = 0 );
|
|
~QgsRasterHistogramWidget();
|
|
|
|
/** Save the histogram as an image to disk */
|
|
bool histoSaveAsImage( const QString& theFilename, int width = 600, int height = 600, int quality = -1 );
|
|
|
|
/** Set the renderer widget (or just its name if there is no widget) */
|
|
void setRendererWidget( const QString& name, QgsRasterRendererWidget* rendererWidget = NULL );
|
|
|
|
/** Activate the histogram widget */
|
|
void setActive( bool theActiveFlag );
|
|
|
|
/** \brief Compute the histogram on demand. */
|
|
bool computeHistogram( bool forceComputeFlag );
|
|
|
|
/** Apply a histoActionTriggered() event. */
|
|
void histoAction( const QString actionName, bool actionFlag = true );
|
|
|
|
/** Apply a histoActionTriggered() event. */
|
|
void setSelectedBand( int index );
|
|
|
|
public slots:
|
|
/** \brief slot executed when user wishes to refresh raster histogramwidget */
|
|
void refreshHistogram();
|
|
/** This slot lets you save the histogram as an image to disk */
|
|
void on_mSaveAsImageButton_clicked();
|
|
|
|
private slots:
|
|
/** Used when the histogram band selector changes, or when tab is loaded. */
|
|
void on_cboHistoBand_currentIndexChanged( int );
|
|
/** Applies the selected min/max values to the renderer widget. */
|
|
void applyHistoMin( );
|
|
void applyHistoMax( );
|
|
/** Button to activate picking of the min/max value on the graph. */
|
|
void on_btnHistoMin_toggled();
|
|
void on_btnHistoMax_toggled();
|
|
/** Called when a selection has been made using the plot picker. */
|
|
void histoPickerSelected( const QPointF & );
|
|
/** Called when a selection has been made using the plot picker (for qwt5 only). */
|
|
// void histoPickerSelectedQwt5( const QwtDoublePoint & );
|
|
/** Various actions that are stored in btnHistoActions. */
|
|
void histoActionTriggered( QAction* );
|
|
/** Draw the min/max markers on the histogram plot. */
|
|
void updateHistoMarkers();
|
|
/** Button to compute the histogram, appears when no cached histogram is available. */
|
|
void on_btnHistoCompute_clicked();
|
|
};
|