diff options
author | Petr Mrázek <peterix@gmail.com> | 2017-05-06 18:27:47 +0200 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2017-05-06 18:27:47 +0200 |
commit | 3263b52e0c3f182c50c686e050747b2b10ab6dc6 (patch) | |
tree | 746b34f5f050a811ee6a99db47fd8583ed26fdcb /application/ColumnResizer.h | |
parent | 15c829fd3ce0de04db938566a56e66531c320580 (diff) | |
download | MultiMC-3263b52e0c3f182c50c686e050747b2b10ab6dc6.tar MultiMC-3263b52e0c3f182c50c686e050747b2b10ab6dc6.tar.gz MultiMC-3263b52e0c3f182c50c686e050747b2b10ab6dc6.tar.lz MultiMC-3263b52e0c3f182c50c686e050747b2b10ab6dc6.tar.xz MultiMC-3263b52e0c3f182c50c686e050747b2b10ab6dc6.zip |
GH-1876 replace ColumnResizer with a newer, BSD-3 licensed version
Also, keep licensing info only in one file.
The COPYING.md is now a resource and rendered to HTML in the About dialog.
Diffstat (limited to 'application/ColumnResizer.h')
-rw-r--r-- | application/ColumnResizer.h | 31 |
1 files changed, 17 insertions, 14 deletions
diff --git a/application/ColumnResizer.h b/application/ColumnResizer.h index 4bbac383..78966a7e 100644 --- a/application/ColumnResizer.h +++ b/application/ColumnResizer.h @@ -1,8 +1,9 @@ /* - * Copyright 2011 Aurélien Gâteau <agateau@kde.org> - * License: LGPL v2.1 or later (see COPYING) - */ -#pragma once +* Copyright 2011 Aurélien Gâteau <agateau@kde.org> +* License: BSD-3-Clause +*/ +#ifndef COLUMNRESIZER_H +#define COLUMNRESIZER_H #include <QFormLayout> @@ -17,22 +18,24 @@ class QWidget; class ColumnResizerPrivate; class ColumnResizer : public QObject { - Q_OBJECT + Q_OBJECT public: - ColumnResizer(QObject* parent = 0); - ~ColumnResizer(); + ColumnResizer(QObject* parent = 0); + ~ColumnResizer(); - void addWidget(QWidget* widget); - void addWidgetsFromLayout(QLayout*, int column); - void addWidgetsFromGridLayout(QGridLayout*, int column); - void addWidgetsFromFormLayout(QFormLayout*, QFormLayout::ItemRole role); + void addWidget(QWidget* widget); + void addWidgetsFromLayout(QLayout*, int column); + void addWidgetsFromGridLayout(QGridLayout*, int column); + void addWidgetsFromFormLayout(QFormLayout*, QFormLayout::ItemRole role); private Q_SLOTS: - void updateWidth(); + void updateWidth(); protected: - bool eventFilter(QObject*, QEvent* event); + bool eventFilter(QObject*, QEvent* event); private: - ColumnResizerPrivate* const d; + ColumnResizerPrivate* const d; }; + +#endif /* COLUMNRESIZER_H */ |