2015-01-21 21:14:00 +00:00
|
|
|
/*
|
|
|
|
* This file Copyright (C) 2015 Mnemosyne LLC
|
|
|
|
*
|
|
|
|
* It may be used under the GNU GPL versions 2 or 3
|
|
|
|
* or any future license endorsed by Mnemosyne LLC.
|
|
|
|
*
|
|
|
|
* $Id$
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef QTR_COLUMN_RESIZER_H
|
|
|
|
#define QTR_COLUMN_RESIZER_H
|
|
|
|
|
|
|
|
#include <QObject>
|
|
|
|
#include <QSet>
|
|
|
|
|
|
|
|
class QGridLayout;
|
|
|
|
class QTimer;
|
|
|
|
|
|
|
|
class ColumnResizer: public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
ColumnResizer (QObject * parent = nullptr);
|
|
|
|
|
|
|
|
void addLayout (QGridLayout * layout);
|
|
|
|
|
2015-06-12 22:12:12 +00:00
|
|
|
// QObject
|
2015-01-21 21:14:00 +00:00
|
|
|
virtual bool eventFilter (QObject * object, QEvent * event);
|
|
|
|
|
|
|
|
public slots:
|
|
|
|
void update ();
|
|
|
|
|
|
|
|
private:
|
|
|
|
void scheduleUpdate ();
|
|
|
|
|
|
|
|
private:
|
|
|
|
QTimer * myTimer;
|
|
|
|
QSet<QGridLayout *> myLayouts;
|
|
|
|
};
|
|
|
|
|
2015-06-10 21:27:11 +00:00
|
|
|
#endif // QTR_COLUMN_RESIZER_H
|