QGIS/python/gui/symbology-ng/qgssvgselectorwidget.sip

80 lines
2.0 KiB
Plaintext
Raw Normal View History

class QgsSvgSelectorListModel : QAbstractListModel
{
%TypeHeaderCode
#include <qgssvgselectorwidget.h>
%End
public:
QgsSvgSelectorListModel( QObject* parent );
// Constructor to create model for icons in a specific path
QgsSvgSelectorListModel( QObject* parent, QString path );
int rowCount( const QModelIndex & parent = QModelIndex() ) const;
QVariant data( const QModelIndex & index, int role = Qt::DisplayRole ) const;
};
class QgsSvgSelectorGroupsModel : QStandardItemModel
{
%TypeHeaderCode
#include <qgssvgselectorwidget.h>
%End
public:
QgsSvgSelectorGroupsModel( QObject* parent );
};
class QgsSvgSelectorWidget : QWidget
{
%TypeHeaderCode
#include <qgssvgselectorwidget.h>
%End
public:
QgsSvgSelectorWidget( QWidget* parent = 0 );
~QgsSvgSelectorWidget();
static QgsSvgSelectorWidget* create( QWidget* parent = 0 ) /Factory/;
QString currentSvgPath() const;
QString currentSvgPathToName() const;
QTreeView* groupsTreeView();
QListView* imagesListView();
QLineEdit* filePathLineEdit();
QPushButton* filePathButton();
QCheckBox* relativePathCheckbox();
QLayout* selectorLayout();
public slots:
/** Accepts absolute and relative paths */
void setSvgPath( const QString& svgPath );
signals:
void svgSelected( const QString& path );
protected:
void populateList();
};
class QgsSvgSelectorDialog : QDialog
{
%TypeHeaderCode
#include <qgssvgselectorwidget.h>
%End
public:
QgsSvgSelectorDialog( QWidget* parent = 0, Qt::WindowFlags fl = QgisGui::ModalDialogFlags,
QDialogButtonBox::StandardButtons buttons = QDialogButtonBox::Close | QDialogButtonBox::Ok,
Qt::Orientation orientation = Qt::Horizontal );
~QgsSvgSelectorDialog();
//! Returns the central layout. Widgets added to it must have this dialog as parent
QVBoxLayout* layout();
//! Returns the button box
QDialogButtonBox* buttonBox();
//! Returns pointer to the embedded SVG selector widget
QgsSvgSelectorWidget* svgSelector();
};