mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-25 00:58:06 -05:00
Doxygen
This commit is contained in:
parent
813e9d32b0
commit
846fef2013
@ -69,6 +69,7 @@ Constructor
|
||||
virtual bool supportsStyleDock() const;
|
||||
%Docstring
|
||||
Flag if widget is supported for use in style dock.
|
||||
The default implementation returns false.
|
||||
:return: True if supported
|
||||
:rtype: bool
|
||||
%End
|
||||
@ -82,6 +83,7 @@ Constructor
|
||||
virtual bool supportLayerPropertiesDialog() const;
|
||||
%Docstring
|
||||
Flag if widget is supported for use in layer properties dialog.
|
||||
The default implementation returns false.
|
||||
:return: True if supported
|
||||
:rtype: bool
|
||||
%End
|
||||
|
@ -64,14 +64,22 @@ class APP_EXPORT QgsVectorLayerProperties : public QgsOptionsDialogBase, private
|
||||
return txtDisplayName->text();
|
||||
}
|
||||
|
||||
/** Adds an attribute to the table (but does not commit it yet)
|
||||
\param field the field to add
|
||||
\returns false in case of a name conflict, true in case of success */
|
||||
/**
|
||||
* Adds an attribute to the layer.
|
||||
* The layer will need to be in edit mode. It will only be added to the provider when the edit buffer
|
||||
* is committed.
|
||||
* \param field the field to add
|
||||
* \returns false in case of a name conflict, true in case of success
|
||||
*/
|
||||
bool addAttribute( const QgsField &field );
|
||||
|
||||
/** Deletes an attribute (but does not commit it)
|
||||
\param name attribute name
|
||||
\returns false in case of a non-existing attribute.*/
|
||||
/**
|
||||
* Deletes an attribute.
|
||||
* The layer will need to be in edit mode. It will only be added to the provider when the edit buffer
|
||||
* is committed.
|
||||
* \param name attribute name
|
||||
* \returns false in case of a non-existing attribute.
|
||||
*/
|
||||
bool deleteAttribute( int attr );
|
||||
|
||||
//! Adds a properties page factory to the vector layer properties dialog.
|
||||
|
@ -70,6 +70,7 @@ class GUI_EXPORT QgsMapLayerConfigWidgetFactory
|
||||
|
||||
/**
|
||||
* Flag if widget is supported for use in style dock.
|
||||
* The default implementation returns false.
|
||||
* \returns True if supported
|
||||
*/
|
||||
virtual bool supportsStyleDock() const { return false; }
|
||||
@ -82,6 +83,7 @@ class GUI_EXPORT QgsMapLayerConfigWidgetFactory
|
||||
|
||||
/**
|
||||
* Flag if widget is supported for use in layer properties dialog.
|
||||
* The default implementation returns false.
|
||||
* \returns True if supported
|
||||
*/
|
||||
virtual bool supportLayerPropertiesDialog() const { return false; }
|
||||
|
Loading…
x
Reference in New Issue
Block a user