/usr/include/qgis/qgsrelationreferencewidget.h is in libqgis-dev 2.18.17+dfsg-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 | /***************************************************************************
qgsrelationreferencewidget.h
--------------------------------------
Date : 20.4.2013
Copyright : (C) 2013 Matthias Kuhn
Email : matthias at opengis dot ch
***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#ifndef QGSRELATIONREFERENCEWIDGET_H
#define QGSRELATIONREFERENCEWIDGET_H
#include "qgsattributeeditorcontext.h"
#include "qgscollapsiblegroupbox.h"
#include "qgsfeature.h"
#include "qgshighlight.h"
#include "qgsmaptoolidentifyfeature.h"
#include "qgsattributetablemodel.h"
#include "qgsattributetablefiltermodel.h"
#include "qgsfeaturelistmodel.h"
#include <QComboBox>
#include <QToolButton>
#include <QLineEdit>
#include <QHBoxLayout>
#include <QStandardItemModel>
class QgsAttributeForm;
class QgsVectorLayerTools;
/** \ingroup gui
* \class QgsRelationReferenceWidget
*/
class GUI_EXPORT QgsRelationReferenceWidget : public QWidget
{
Q_OBJECT
Q_PROPERTY( bool openFormButtonVisible READ openFormButtonVisible WRITE setOpenFormButtonVisible )
public:
typedef QPair < QVariant, QgsFeatureId > ValueRelationItem;
typedef QVector < ValueRelationItem > ValueRelationCache;
enum CanvasExtent
{
Fixed,
Pan,
Scale
};
explicit QgsRelationReferenceWidget( QWidget* parent );
~QgsRelationReferenceWidget();
void setRelation( const QgsRelation& relation, bool allowNullValue );
void setRelationEditable( bool editable );
//! this sets the related feature using from the foreign key
void setForeignKey( const QVariant &value );
//! returns the related feature foreign key
QVariant foreignKey() const;
void setEditorContext( const QgsAttributeEditorContext& context, QgsMapCanvas* canvas, QgsMessageBar* messageBar );
//! determines if the form of the related feature will be shown
bool embedForm() { return mEmbedForm; }
void setEmbedForm( bool display );
//! determines if the foreign key is shown in a combox box or a read-only line edit
bool readOnlySelector() { return mReadOnlySelector; }
void setReadOnlySelector( bool readOnly );
//! determines if the widge offers the possibility to select the related feature on the map (using a dedicated map tool)
bool allowMapIdentification() { return mAllowMapIdentification; }
void setAllowMapIdentification( bool allowMapIdentification );
//! If the widget will order the combobox entries by value
bool orderByValue() { return mOrderByValue; }
//! Set if the widget will order the combobox entries by value
void setOrderByValue( bool orderByValue );
//! Set the fields for which filter comboboxes will be created
void setFilterFields( const QStringList& filterFields );
//! determines the open form button is visible in the widget
bool openFormButtonVisible() { return mOpenFormButtonVisible; }
void setOpenFormButtonVisible( bool openFormButtonVisible );
/**
* Determines if the filters are chained
*
* @return True if filters are chained
*/
bool chainFilters() const { return mChainFilters; }
/**
* Set if filters are chained.
* Chained filters restrict the option of subsequent filters based on the selection of a previous filter.
*
* @param chainFilters If chaining should be enabled
*/
void setChainFilters( bool chainFilters );
//! return the related feature (from the referenced layer)
//! if no feature is related, it returns an invalid feature
QgsFeature referencedFeature() const;
/** Sets the widget to display in an indeterminate "mixed value" state.
* @note added in QGIS 2.16
*/
void showIndeterminateState();
/**
* Determines if a button for adding new features should be shown.
*
* @note added in QGIS 2.16
*/
bool allowAddFeatures() const;
/**
* Determines if a button for adding new features should be shown.
*
* @note added in QGIS 2.16
*/
void setAllowAddFeatures( bool allowAddFeatures );
public slots:
//! open the form of the related feature in a new dialog
void openForm();
//! activate the map tool to select a new related feature on the map
void mapIdentification();
//! unset the currently related feature
void deleteForeignKey();
protected:
virtual void showEvent( QShowEvent* e ) override;
void init();
signals:
void foreignKeyChanged( const QVariant& );
private slots:
void highlightActionTriggered( QAction* action );
void deleteHighlight();
void comboReferenceChanged( int index );
void featureIdentified( const QgsFeature& feature );
void unsetMapTool();
void mapToolDeactivated();
void filterChanged();
void addEntry();
void editTextUpdated( const QString &text );
private:
void highlightFeature( QgsFeature f = QgsFeature(), CanvasExtent canvasExtent = Fixed );
void updateAttributeEditorFrame( const QgsFeature& feature );
void disableChainedComboBoxes( const QComboBox *scb );
void updateAddEntryButton();
// initialized
QgsAttributeEditorContext mEditorContext;
QgsMapCanvas* mCanvas;
QgsMessageBar* mMessageBar;
QVariant mForeignKey;
QgsFeature mFeature;
// Index of the referenced layer key
int mReferencedFieldIdx;
int mReferencingFieldIdx;
bool mAllowNull;
QgsHighlight* mHighlight;
QgsMapToolIdentifyFeature* mMapTool;
QgsMessageBarItem* mMessageBarItem;
QString mRelationName;
QgsAttributeForm* mReferencedAttributeForm;
QPointer<QgsVectorLayer> mReferencedLayer;
QPointer<QgsVectorLayer> mReferencingLayer;
QgsAttributeTableModel* mMasterModel;
QgsAttributeTableFilterModel* mFilterModel;
QgsFeatureListModel* mFeatureListModel;
QList<QComboBox*> mFilterComboBoxes;
QWidget* mWindowWidget;
bool mShown;
QgsRelation mRelation;
bool mIsEditable;
QStringList mFilterFields;
QMap<QString, QMap<QString, QSet<QString> > > mFilterCache;
// Q_PROPERTY
bool mEmbedForm;
bool mReadOnlySelector;
bool mAllowMapIdentification;
bool mOrderByValue;
bool mOpenFormButtonVisible;
bool mChainFilters;
bool mAllowAddFeatures;
// UI
QVBoxLayout* mTopLayout;
QToolButton* mMapIdentificationButton;
QToolButton* mRemoveFKButton;
QToolButton* mOpenFormButton;
QToolButton* mHighlightFeatureButton;
QToolButton* mAddEntryButton;
QAction* mHighlightFeatureAction;
QAction* mScaleHighlightFeatureAction;
QAction* mPanHighlightFeatureAction;
QComboBox* mComboBox;
QWidget* mChooserContainer;
QWidget* mFilterContainer;
QHBoxLayout* mFilterLayout;
QgsCollapsibleGroupBox* mAttributeEditorFrame;
QVBoxLayout* mAttributeEditorLayout;
QLineEdit* mLineEdit;
QLabel* mInvalidLabel;
friend class TestQgsRelationReferenceWidget;
};
#endif // QGSRELATIONREFERENCEWIDGET_H
|