QGIS API Documentation 3.41.0-Master (fda2aa46e9a)
Loading...
Searching...
No Matches
qgs3dsymbolwidget.cpp
Go to the documentation of this file.
1/***************************************************************************
2 qgs3dsymbolwidget.cpp
3 --------------------------------------
4 Date : July 2020
5 Copyright : (C) 2020 by Nyall Dawson
6 Email : nyall dot dawson at gmail dot com
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#include "qgs3dsymbolwidget.h"
17#include "moc_qgs3dsymbolwidget.cpp"
18#include "qgsapplication.h"
19#include "qgs3dsymbolregistry.h"
20#include "qgsabstract3dsymbol.h"
21#include "qgsgui.h"
22#include "qgshelp.h"
23#include <QVBoxLayout>
24#include <QDialogButtonBox>
25
27 : QWidget( parent )
28{}
29
31 : QDialog( parent )
32{
33 Q_ASSERT( symbol );
34
36
37 QVBoxLayout *vLayout = new QVBoxLayout();
38
39 if ( Qgs3DSymbolAbstractMetadata *metadata = QgsApplication::symbol3DRegistry()->symbolMetadata( symbol->type() ) )
40 {
41 mWidget = metadata->createSymbolWidget( nullptr );
42 vLayout->addWidget( mWidget );
43 mWidget->setSymbol( symbol, nullptr );
44 }
45
46 mButtonBox = new QDialogButtonBox( QDialogButtonBox::Cancel | QDialogButtonBox::Help | QDialogButtonBox::Ok, Qt::Horizontal );
47 connect( mButtonBox, &QDialogButtonBox::accepted, this, &QDialog::accept );
48 connect( mButtonBox, &QDialogButtonBox::rejected, this, &QDialog::reject );
49 connect( mButtonBox, &QDialogButtonBox::helpRequested, this, [ = ]
50 {
51 QgsHelp::openHelp( QStringLiteral( "style_library/3d_symbols.html" ) );
52 } );
53 vLayout->addStretch();
54 vLayout->addWidget( mButtonBox );
55 setLayout( vLayout );
56 setWindowTitle( tr( "3D Symbol" ) );
57}
58
60{
61 return mWidget ? mWidget->symbol() : nullptr;
62}
63
64QDialogButtonBox *Qgs3DSymbolDialog::buttonBox() const
65{
66 return mButtonBox;
67}
Stores metadata about one 3D symbol class.
QgsAbstract3DSymbol * symbol() const
Returns a new instance of the symbol defined by the dialog.
QDialogButtonBox * buttonBox() const
Returns a reference to the dialog's button box.
Qgs3DSymbolDialog(const QgsAbstract3DSymbol *symbol, QWidget *parent=nullptr)
Constructor for Qgs3DSymbolDialog, initially showing the specified symbol.
virtual void setSymbol(const QgsAbstract3DSymbol *symbol, QgsVectorLayer *layer)=0
Sets the symbol to show in the widget.
Qgs3DSymbolWidget(QWidget *parent)
Constructor for Qgs3DSymbolWidget with the specified parent widget.
virtual QgsAbstract3DSymbol * symbol()=0
Returns a new instance of the symbol defined by the widget.
virtual QString type() const =0
Returns identifier of symbol type. Each 3D symbol implementation should return a different type.
static Qgs3DSymbolRegistry * symbol3DRegistry()
Returns registry of available 3D symbols.
static void enableAutoGeometryRestore(QWidget *widget, const QString &key=QString())
Register the widget to allow its position to be automatically saved and restored when open and closed...
Definition qgsgui.cpp:209
static void openHelp(const QString &key)
Opens help topic for the given help key using default system web browser.
Definition qgshelp.cpp:39