partitionmanager/src/gui/sizedialogbase.h

89 lines
3.4 KiB
C
Raw Normal View History

/***************************************************************************
* Copyright (C) 2008,2010 by Volker Lanz <vl@fidra.de> *
* *
* 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; if not, write to the *
* Free Software Foundation, Inc., *
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA *
***************************************************************************/
#if !defined(SIZEDIALOGBASE__H)
#define SIZEDIALOGBASE__H
#include "util/capacity.h"
#include <qglobal.h>
#include <qdebug.h>
#include <kdialog.h>
class Device;
class Partition;
class PartitionTable;
class SizeDialogWidget;
/** @brief Base class for all dialogs moving or resizing Partitions.
@author vl@fidra.de
*/
class SizeDialogBase : public KDialog
{
Q_OBJECT
Q_DISABLE_COPY(SizeDialogBase)
protected:
SizeDialogBase(QWidget* parent, Device& device, Partition& part, qint64 minFirst, qint64 maxLast);
virtual ~SizeDialogBase() {}
SizeDialogWidget& dialogWidget() { Q_ASSERT(m_SizeDialogWidget); return *m_SizeDialogWidget; }
const SizeDialogWidget& dialogWidget() const { Q_ASSERT(m_SizeDialogWidget); return *m_SizeDialogWidget; }
virtual const PartitionTable& partitionTable() const;
virtual bool canGrow() const { return true; }
virtual bool canShrink() const { return true; }
virtual bool canMove() const { return true; }
virtual void setupDialog();
virtual void setupConstraints();
virtual void setupConnections();
virtual Partition& partition() { return m_Partition; }
virtual const Partition& partition() const { return m_Partition; }
virtual Device& device() { return m_Device; }
virtual const Device& device() const { return m_Device; }
virtual qint64 minimumLength() const;
virtual qint64 maximumLength() const;
virtual qint64 minimumFirstSector() const { return m_MinimumFirstSector; }
virtual qint64 maximumLastSector() const { return m_MaximumLastSector; }
virtual void setDirty() {}
virtual void updateLength(qint64 newLength);
protected slots:
void onFirstSectorChanged(qint64 newFirst);
void onLastSectorChanged(qint64 newLast);
void onCapacityChanged(int newCapacity);
void onFreeSpaceBeforeChanged(int newBefore);
void onFreeSpaceAfterChanged(int newAfter);
void onSpinFirstSectorChanged(double newFirst);
void onSpinLastSectorChanged(double newLast);
protected:
SizeDialogWidget* m_SizeDialogWidget;
Device& m_Device;
Partition& m_Partition;
qint64 m_MinimumFirstSector;
qint64 m_MaximumLastSector;
};
#endif