mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-24 00:47:57 -05:00
44 lines
1.5 KiB
C++
44 lines
1.5 KiB
C++
/***************************************************************************
|
|
qgssavestyletodbdialog.h
|
|
---------------------
|
|
begin : April 2013
|
|
copyright : (C) 2013 by Emilio Loi
|
|
email : loi at faunalia dot it
|
|
***************************************************************************
|
|
* *
|
|
* This program is free software; you can redistribute it and/or modify *
|
|
* it under the terms of the GNU General Public License as published by *
|
|
* the Free Software Foundation; either version 2 of the License, or *
|
|
* (at your option) any later version. *
|
|
* *
|
|
***************************************************************************/
|
|
|
|
#ifndef QGSSAVESTYLETODBDIALOG_H
|
|
#define QGSSAVESTYLETODBDIALOG_H
|
|
|
|
#include "ui_qgssavetodbdialog.h"
|
|
#include "qgisgui.h"
|
|
#include "qgis_app.h"
|
|
|
|
class APP_EXPORT QgsSaveStyleToDbDialog : public QDialog, private Ui::QgsSaveToDBDialog
|
|
{
|
|
QString mUIFileContent;
|
|
Q_OBJECT
|
|
public:
|
|
explicit QgsSaveStyleToDbDialog( QWidget *parent = nullptr );
|
|
|
|
~QgsSaveStyleToDbDialog();
|
|
|
|
signals:
|
|
|
|
public slots:
|
|
QString getUIFileContent();
|
|
QString getName();
|
|
QString getDescription();
|
|
bool isDefault();
|
|
void on_mFilePickButton_clicked();
|
|
void accept() override;
|
|
};
|
|
|
|
#endif // QGSSAVESTYLETODBDIALOG_H
|