aboutsummaryrefslogtreecommitdiffstats
path: root/src/libs/utils/headerviewstretcher.h
blob: 5165f276af63f674281c43f1403bb1f22e030479 (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+ OR GPL-3.0 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