blob: 630ff78a6243f6bcbc074b9ed085576acf377faf (
plain)
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
|
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
#pragma once
#include "utils_global.h"
#include <QObject>
QT_BEGIN_NAMESPACE
class QHeaderView;
QT_END_NAMESPACE
namespace Utils {
class QTCREATOR_UTILS_EXPORT HeaderViewStretcher : public QObject
{
const int m_columnToStretch;
public:
explicit HeaderViewStretcher(QHeaderView *headerView, int columnToStretch);
void stretch();
void softStretch();
bool eventFilter(QObject *obj, QEvent *ev) override;
};
} // namespace Utils
|