QGIS API Documentation  2.18.21-Las Palmas (9fba24a)
qgsattributedialog.cpp
Go to the documentation of this file.
1 /***************************************************************************
2  qgsattributedialog.cpp - description
3  -------------------
4  begin : October 2004
5  copyright : (C) 2004 by Marco Hugentobler
6  email : [email protected]
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 
18 #include "qgsattributedialog.h"
19 
20 #include "qgsattributeform.h"
21 #include "qgshighlight.h"
22 #include "qgsapplication.h"
23 #include "qgsactionmenu.h"
24 
25 #include <QSettings>
26 
27 
28 QgsAttributeDialog::QgsAttributeDialog( QgsVectorLayer* vl, QgsFeature* thepFeature, bool featureOwner, const QgsDistanceArea &myDa, QWidget* parent, bool showDialogButtons )
29  : QDialog( parent )
30  , mHighlight( nullptr )
31  , mOwnedFeature( featureOwner ? thepFeature : nullptr )
32 {
34  context.setDistanceArea( myDa );
35 
36  init( vl, thepFeature, context, showDialogButtons );
37 }
38 
39 QgsAttributeDialog::QgsAttributeDialog( QgsVectorLayer* vl, QgsFeature* thepFeature, bool featureOwner, QWidget* parent, bool showDialogButtons, const QgsAttributeEditorContext &context )
40  : QDialog( parent )
41  , mHighlight( nullptr )
42  , mOwnedFeature( featureOwner ? thepFeature : nullptr )
43 {
44  init( vl, thepFeature, context, showDialogButtons );
45 }
46 
48 {
49  if ( mHighlight )
50  {
51  mHighlight->hide();
52  delete mHighlight;
53  }
54 
55  if ( mOwnedFeature )
56  delete mOwnedFeature;
57 
58  saveGeometry();
59 }
60 
62 {
63  QSettings().setValue( mSettingsPath + "geometry", QDialog::saveGeometry() );
64 }
65 
67 {
68  QDialog::restoreGeometry( QSettings().value( mSettingsPath + "geometry" ).toByteArray() );
69 }
70 
72 {
73  delete mHighlight;
74 
75  mHighlight = h;
76 }
77 
79 {
80  mAttributeForm->save();
82 }
83 
85 {
86  QDialog::show();
87  raise();
89 }
90 
92 {
93  // Delete any actions on other layers that may have been triggered from this dialog
94  if ( mAttributeForm->mode() == QgsAttributeForm::AddFeatureMode )
95  mTrackedVectorLayerTools.rollback();
96 
98 }
99 
100 void QgsAttributeDialog::init( QgsVectorLayer* layer, QgsFeature* feature, const QgsAttributeEditorContext& context, bool showDialogButtons )
101 {
102  QgsAttributeEditorContext trackedContext = context;
103  setWindowTitle( tr( "%1 - Feature Attributes" ).arg( layer->name() ) );
104  setLayout( new QGridLayout() );
105  layout()->setMargin( 0 );
106  mTrackedVectorLayerTools.setVectorLayerTools( trackedContext.vectorLayerTools() );
107  trackedContext.setVectorLayerTools( &mTrackedVectorLayerTools );
108  if ( showDialogButtons )
110 
111  mAttributeForm = new QgsAttributeForm( layer, *feature, trackedContext, this );
112  mAttributeForm->disconnectButtonBox();
113  layout()->addWidget( mAttributeForm );
114  QDialogButtonBox* buttonBox = mAttributeForm->findChild<QDialogButtonBox*>();
115  connect( buttonBox, SIGNAL( rejected() ), this, SLOT( reject() ) );
116  connect( buttonBox, SIGNAL( accepted() ), this, SLOT( accept() ) );
117  connect( layer, SIGNAL( layerDeleted() ), this, SLOT( close() ) );
118 
119  QgsActionMenu* menu = new QgsActionMenu( layer, &mAttributeForm->feature(), this );
120  if ( !menu->actions().isEmpty() )
121  {
122  QMenuBar* menuBar = new QMenuBar( this );
123  menuBar->addMenu( menu );
124  layout()->setMenuBar( menuBar );
125  }
126  else
127  {
128  delete menu;
129  }
130 
131  restoreGeometry();
132  focusNextChild();
133 }
134 
136 {
137  if ( e->type() == QEvent::WindowActivate && mHighlight )
138  mHighlight->show();
139  else if ( e->type() == QEvent::WindowDeactivate && mHighlight )
140  mHighlight->hide();
141 
142  return QDialog::event( e );
143 }
QLayout * layout() const
void setMenuBar(QWidget *widget)
const QgsVectorLayerTools * vectorLayerTools() const
bool close()
Q_DECL_DEPRECATED QgsAttributeDialog(QgsVectorLayer *vl, QgsFeature *thepFeature, bool featureOwner, const QgsDistanceArea &myDa, QWidget *parent=nullptr, bool showDialogButtons=true)
Create an attribute dialog for a given layer and feature.
virtual bool event(QEvent *e)
Type type() const
virtual void reject()
void restoreGeometry()
Restores the size and position from the last time this dialog box was used.
This class contains context information for attribute editor widgets.
void saveGeometry()
Saves the size and position for the next time this dialog box will be used.
void rejected()
bool save()
Save all the values from the editors to the layer.
void accepted()
void setHighlight(QgsHighlight *h)
setHighlight
void setVectorLayerTools(QgsVectorLayerTools *vlTools)
The feature class encapsulates a single feature including its id, geometry and a list of field/values...
Definition: qgsfeature.h:187
void setVectorLayerTools(const QgsVectorLayerTools *tools)
Set the vector layer tools that will be used to interact with the data.
QString tr(const char *sourceText, const char *disambiguation, int n)
void setValue(const QString &key, const QVariant &value)
void show()
Show the dialog non-blocking. Reparents this dialog to be a child of the dialog form.
void setLayout(QLayout *layout)
bool restoreGeometry(const QByteArray &geometry)
This class is a menu that is populated automatically with the actions defined for a given layer...
Definition: qgsactionmenu.h:30
A class for highlight features on the map.
Definition: qgshighlight.h:37
void setDistanceArea(const QgsDistanceArea &distanceArea)
void setMargin(int margin)
void disconnectButtonBox()
Disconnects the button box (Ok/Cancel) from the accept/resetValues slots If this method is called...
void rollback()
Delete all features which have been added via this object.
void addWidget(QWidget *w)
virtual void accept()
General purpose distance and area calculator.
virtual bool event(QEvent *e) override
Intercept window activate/deactive events to show/hide the highlighted feature.
void reject() override
QAction * addMenu(QMenu *menu)
void setFormMode(FormMode mode)
Sets the form mode.
void activateWindow()
QByteArray saveGeometry() const
void setWindowTitle(const QString &)
Mode mode() const
Returns the current mode of the form.
const QgsFeature * feature()
const QgsFeature & feature()
QString name
Read property of QString layerName.
Definition: qgsmaplayer.h:53
void accept() override
void show()
bool connect(const QObject *sender, const char *signal, const QObject *receiver, const char *method, Qt::ConnectionType type)
QList< QAction * > actions() const
bool focusNextChild()
QObject * parent() const
Represents a vector layer which manages a vector based data sets.
T findChild(const QString &name) const