We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
qgis
Learn more about funding links in repositories.
Report abuse
There was an error while loading. Please reload this page.
1 parent ecd951d commit 2c36a51Copy full SHA for 2c36a51
src/gui/qgsvscrollarea.h
@@ -21,10 +21,23 @@
21
#include "qgis_gui.h"
22
#include <QScrollArea>
23
24
+/**
25
+ * \ingroup gui
26
+ * QgsVScrollArea is a QScrollArea subclass which only displays a vertical
27
+ * scrollbar and fits the width to the contents.
28
+ *
29
+ * \since QGIS 3.0
30
+ */
31
class GUI_EXPORT QgsVScrollArea : public QScrollArea
32
{
33
public:
34
+
35
+ /**
36
+ * QgsVScrollArea
37
+ * \param parent The parent widget
38
39
QgsVScrollArea( QWidget *parent = 0 );
40
41
bool eventFilter( QObject *o, QEvent *e ) override;
42
};
43
0 commit comments