Alternate sizing?

This commit is contained in:
Craig Drummond
2018-05-26 09:59:54 +01:00
committed by Craig Drummond
parent b1c3a6ffd7
commit b71485cae7
2 changed files with 0 additions and 85 deletions

View File

@@ -1,49 +0,0 @@
/*
* Cantata
*
* Copyright (c) 2011-2018 Craig Drummond <craig.p.drummond@gmail.com>
*
* ----
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; see the file COPYING. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#include "sizewidget.h"
#include "toolbutton.h"
#include "sizegrip.h"
#include "support/combobox.h"
static int swHeight=-1;
SizeWidget::SizeWidget(QWidget *parent)
: QWidget(parent)
{
if (-1 == swHeight) {
ComboBox c(this);
ToolButton b(this);
SizeGrip g(this);
c.ensurePolished();
b.ensurePolished();
g.ensurePolished();
swHeight=qMax(c.sizeHint().height(), qMax(b.sizeHint().height(), g.sizeHint().height()));
}
setFixedHeight(swHeight);
}
void SizeWidget::paintEvent(QPaintEvent *e)
{
Q_UNUSED(e)
}

View File

@@ -1,36 +0,0 @@
/*
* Cantata
*
* Copyright (c) 2011-2018 Craig Drummond <craig.p.drummond@gmail.com>
*
* ----
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; see the file COPYING. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#ifndef SIZEWIDGET_H
#define SIZEWIDGET_H
#include <QWidget>
class SizeWidget : public QWidget
{
public:
explicit SizeWidget(QWidget *parent = nullptr);
void paintEvent(QPaintEvent *e) override;
};
#endif