QGIS API Documentation  3.24.2-Tisler (13c1a02865)
qgsdatabaseschemaitem.h
Go to the documentation of this file.
1 /***************************************************************************
2  qgsdatabaseschemaitem.h
3  -------------------
4  begin : 2011-04-01
5  copyright : (C) 2011 Radim Blazek
6  email : radim dot blazek at gmail dot com
7  ***************************************************************************/
8 
9 /***************************************************************************
10  * *
11  * This program is free software; you can redistribute it and/or modify *
12  * it under the terms of the GNU General Public License as published by *
13  * the Free Software Foundation; either version 2 of the License, or *
14  * (at your option) any later version. *
15  * *
16  ***************************************************************************/
17 #ifndef QGSDATABASESCHEMAITEM_H
18 #define QGSDATABASESCHEMAITEM_H
19 
20 #include "qgis_sip.h"
21 #include "qgis_core.h"
22 #include "qgsdatacollectionitem.h"
23 
29 class CORE_EXPORT QgsDatabaseSchemaItem : public QgsDataCollectionItem
30 {
31  Q_OBJECT
32  public:
33 
45  QgsDatabaseSchemaItem( QgsDataItem *parent SIP_TRANSFERTHIS, const QString &name, const QString &path = QString(), const QString &providerKey = QString() );
46 
47  ~QgsDatabaseSchemaItem() override;
48 
49 #ifdef SIP_RUN
50  SIP_PYOBJECT __repr__();
51  % MethodCode
52  QString str = QStringLiteral( "<QgsDatabaseSchemaItem: \"%1\" %2>" ).arg( sipCpp->name(), sipCpp->path() );
53  sipRes = PyUnicode_FromString( str.toUtf8().constData() );
54  % End
55 #endif
56 
58 
63  static QIcon iconDataCollection();
64 
65 };
66 
67 #endif // QGSDATABASESCHEMAITEM_H
68 
69 
The QgsAbstractDatabaseProviderConnection class provides common functionality for DB based connection...
A Collection: logical collection of layers or subcollections, e.g.
QgsAbstractDatabaseProviderConnection * databaseConnection() const override
For data items that represent a DB connection or one of its children, this method returns a connectio...
static QIcon iconDataCollection()
Returns the standard browser data collection icon.
Base class for all items in the model.
Definition: qgsdataitem.h:46
A Collection that represents a database schema item.
#define str(x)
Definition: qgis.cpp:37
#define SIP_TRANSFERTHIS
Definition: qgis_sip.h:53