mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-26 00:02:08 -05:00
26 lines
556 B
Plaintext
26 lines
556 B
Plaintext
class QgsStyleV2ExportImportDialog : QDialog
|
|
{
|
|
%TypeHeaderCode
|
|
#include <qgsstylev2exportimportdialog.h>
|
|
%End
|
|
public:
|
|
enum Mode
|
|
{
|
|
Export,
|
|
Import
|
|
};
|
|
|
|
// constructor
|
|
// mode argument must be 0 for saving and 1 for loading
|
|
QgsStyleV2ExportImportDialog( QgsStyleV2* style, QWidget *parent /TransferThis/ = NULL, Mode mode = Export );
|
|
~QgsStyleV2ExportImportDialog();
|
|
|
|
public slots:
|
|
void doExportImport();
|
|
void selectAll();
|
|
void clearSelection();
|
|
|
|
void importTypeChanged( int );
|
|
void browse();
|
|
};
|