QGIS API Documentation
3.41.0-Master (f75d66fa9f9)
Toggle main menu visibility
Main Page
Related Pages
Topics
Namespaces
Namespace List
Namespace Members
All
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
u
w
z
Functions
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
w
z
Variables
Typedefs
Enumerations
Enumerator
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
2
3
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
2
3
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Variables
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
a
b
c
d
e
f
g
h
i
k
l
m
o
p
r
s
t
u
v
w
z
Enumerations
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
z
Enumerator
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Properties
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
x
y
z
Related Symbols
3
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
u
v
Files
File List
File Members
All
3
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
y
z
Functions
_
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
q
r
s
t
u
v
w
z
Variables
a
b
c
d
e
f
g
h
i
l
n
o
p
q
r
s
t
u
w
Typedefs
3
a
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
u
v
w
Enumerations
Enumerator
Macros
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
w
y
Loading...
Searching...
No Matches
src
gui
qgsmaplayersavestyledialog.h
Go to the documentation of this file.
1
/***************************************************************************
2
qgsmaplayersavestyledialog.h
3
--------------------------------------
4
Date : September 2018
5
Copyright : (C) 2018 by Denis Rouzaud
6
Email : denis@opengis.ch
7
***************************************************************************
8
* *
9
* This program is free software; you can redistribute it and/or modify *
10
* it under the terms of the GNU General Public License as published by *
11
* the Free Software Foundation; either version 2 of the License, or *
12
* (at your option) any later version. *
13
* *
14
***************************************************************************/
15
16
#ifndef QGSMAPLAYERSAVESTYLEDIALOG_H
17
#define QGSMAPLAYERSAVESTYLEDIALOG_H
18
19
// We don't want to expose this in the public API
20
#define SIP_NO_FILE
21
22
#include <QDialog>
23
#include "ui_qgsmaplayersavestyledialog.h"
24
#include "
qgsmaplayer.h
"
25
#include "
qgslayerpropertiesdialog.h
"
26
#include "qgis_gui.h"
27
28
class
QgsMapLayerStyleCategoriesModel
;
29
40
class
GUI_EXPORT
QgsMapLayerSaveStyleDialog
:
public
QDialog,
private
Ui::QgsMapLayerSaveStyleDialog
41
{
42
Q_OBJECT
43
44
public
:
45
struct
SaveToDbSettings
46
{
47
public
:
48
QString
uiFileContent
;
49
QString
name
;
50
QString
description
;
51
bool
isDefault
;
52
};
45
struct
SaveToDbSettings
{
…
};
53
57
explicit
QgsMapLayerSaveStyleDialog
(
QgsMapLayer
*layer, QWidget *parent =
nullptr
);
58
62
SaveToDbSettings
saveToDbSettings()
const
;
63
67
QString outputFilePath()
const
;
68
72
QgsMapLayer::StyleCategories
styleCategories()
const
;
73
77
QgsLayerPropertiesDialog::StyleType
currentStyleType()
const
;
78
84
bool
saveOnlyCurrentStyle()
const
;
85
91
void
setSaveOnlyCurrentStyle(
bool
saveCurrentStyle );
92
96
const
QListWidget *stylesWidget();
97
102
Qgis::SldExportOptions
sldExportOptions()
const
;
103
104
public
slots:
105
void
accept()
override
;
106
107
private
slots:
108
void
updateSaveButtonState();
109
void
showHelp();
110
void
readUiFileContent(
const
QString &filePath );
111
void
selectAll();
112
void
deselectAll();
113
void
invertSelection();
114
115
private
:
116
void
setupMultipleStyles();
117
void
populateStyleComboBox();
118
QgsMapLayer
*mLayer =
nullptr
;
119
QgsMapLayerStyleCategoriesModel
*mModel;
120
QString mUiFileContent;
121
bool
mSaveOnlyCurrentStyle =
true
;
122
};
40
class
GUI_EXPORT
QgsMapLayerSaveStyleDialog
:
public
QDialog,
private
Ui::QgsMapLayerSaveStyleDialog {
…
};
123
124
#endif
// QGSMAPLAYERSAVESTYLEDIALOG_H
Qgis::SldExportOptions
QFlags< SldExportOption > SldExportOptions
Definition
qgis.h:666
QgsLayerPropertiesDialog::StyleType
StyleType
Style storage type.
Definition
qgslayerpropertiesdialog.h:50
QgsMapLayerSaveStyleDialog
The QgsMapLayerSaveStyleDialog class provides the UI to save the current style or multiple styles int...
Definition
qgsmaplayersavestyledialog.h:41
QgsMapLayerStyleCategoriesModel
Model for layer style categories.
Definition
qgsmaplayerstylecategoriesmodel.h:33
QgsMapLayer
Base class for all map layer types.
Definition
qgsmaplayer.h:76
QgsMapLayer::StyleCategories
QFlags< StyleCategory > StyleCategories
Definition
qgsmaplayer.h:192
qgslayerpropertiesdialog.h
qgsmaplayer.h
QgsMapLayerSaveStyleDialog::SaveToDbSettings
Definition
qgsmaplayersavestyledialog.h:46
QgsMapLayerSaveStyleDialog::SaveToDbSettings::description
QString description
Definition
qgsmaplayersavestyledialog.h:50
QgsMapLayerSaveStyleDialog::SaveToDbSettings::name
QString name
Definition
qgsmaplayersavestyledialog.h:49
QgsMapLayerSaveStyleDialog::SaveToDbSettings::isDefault
bool isDefault
Definition
qgsmaplayersavestyledialog.h:51
QgsMapLayerSaveStyleDialog::SaveToDbSettings::uiFileContent
QString uiFileContent
Definition
qgsmaplayersavestyledialog.h:48
Generated on Fri Jan 24 2025 00:25:35 for QGIS API Documentation by
1.9.8