mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-24 00:47:57 -05:00
16 lines
297 B
Plaintext
16 lines
297 B
Plaintext
|
|
||
|
/** A combobox which lets the user select map scale from predefined list
|
||
|
* and highlights nearest to current scale valu
|
||
|
*/
|
||
|
class QgsScaleComboBox : QComboBox
|
||
|
{
|
||
|
%TypeHeaderCode
|
||
|
#include <qgsscalecombobox.h>
|
||
|
%End
|
||
|
|
||
|
public:
|
||
|
QgsScaleComboBox(QWidget * parent = 0);
|
||
|
~QgsScaleComboBox();
|
||
|
};
|
||
|
|