calamares/src/modules/partition/gui/PartitionSplitterWidget.h

105 lines
3.3 KiB
C
Raw Normal View History

/* === This file is part of Calamares - <http://github.com/calamares> ===
*
2016-01-11 17:30:33 +01:00
* Copyright 2014-2016, Teo Mrnjavac <teo@kde.org>
*
* Calamares 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 3 of the License, or
* (at your option) any later version.
*
* Calamares 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 Calamares. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef PARTITIONSPLITTERWIDGET_H
#define PARTITIONSPLITTERWIDGET_H
#include <QWidget>
class Device;
struct PartitionSplitterItem
{
QString itemPath;
QColor color;
bool isFreeSpace;
qint64 size;
2016-02-17 16:46:51 +01:00
QVector< PartitionSplitterItem > children;
2016-02-22 18:51:44 +01:00
static PartitionSplitterItem null() { return { QString(), QColor(), false, 0 }; }
bool isNull() const { return itemPath.isEmpty() && size == 0; }
operator bool() const { return !isNull(); }
};
class PartitionSplitterWidget : public QWidget
{
Q_OBJECT
public:
explicit PartitionSplitterWidget( QWidget* parent = nullptr );
void init( Device* dev, bool drawNestedPartitions );
void setSplitPartition( const QString& path,
qint64 minSize,
qint64 maxSize,
qint64 preferredSize,
const QString& newLabel );
qint64 splitPartitionSize() const;
qint64 newPartitionSize() const;
QSize sizeHint() const override;
QSize minimumSizeHint() const override;
signals:
void partitionResized( const QString&, qint64, qint64 );
protected:
void paintEvent( QPaintEvent* event ) override;
void mousePressEvent( QMouseEvent* event ) override;
void mouseMoveEvent( QMouseEvent* event ) override;
void mouseReleaseEvent( QMouseEvent* event ) override;
private:
2016-02-17 16:46:51 +01:00
void setupItems( const QVector< PartitionSplitterItem >& items );
void drawPartitions( QPainter* painter,
const QRect& rect,
2016-02-17 16:46:51 +01:00
const QVector< PartitionSplitterItem >& itemList );
void drawSection( QPainter* painter, const QRect& rect_, int x, int width,
const PartitionSplitterItem& item );
void drawResizeHandle( QPainter* painter,
const QRect& rect_,
int x );
template < typename F >
2016-02-22 18:51:44 +01:00
PartitionSplitterItem _findItem( QVector< PartitionSplitterItem >& items, F condition );
2016-02-17 16:46:51 +01:00
QPair< QVector< PartitionSplitterItem >, qreal >
computeItemsVector( const QVector< PartitionSplitterItem >& originalItems ) const;
2016-02-17 16:46:51 +01:00
QVector< PartitionSplitterItem > m_items;
QString m_itemToResizePath;
2016-02-22 18:51:44 +01:00
PartitionSplitterItem m_itemToResize;
PartitionSplitterItem m_itemToResizeNext;
qint64 m_itemMinSize;
qint64 m_itemMaxSize;
qint64 m_itemPrefSize;
bool m_resizing;
int m_resizeHandleX;
const int HANDLE_SNAP;
bool m_drawNestedPartitions;
};
#endif // PARTITIONSPLITTERWIDGET_H