calamares/src/modules/partition/gui/DeviceInfoWidget.cpp

158 lines
5.9 KiB
C++
Raw Normal View History

/* === This file is part of Calamares - <https://calamares.io> ===
*
2020-08-22 01:19:58 +02:00
* SPDX-FileCopyrightText: 2015-2016 Teo Mrnjavac <teo@kde.org>
* SPDX-License-Identifier: GPL-3.0-or-later
*
* Calamares is Free Software: see the License-Identifier above.
*
*/
#include "DeviceInfoWidget.h"
2020-08-22 01:19:58 +02:00
#include "GlobalStorage.h"
#include "JobQueue.h"
#include "utils/CalamaresUtilsGui.h"
#include "utils/Logger.h"
#include "utils/QtCompat.h"
#include "utils/Retranslator.h"
#include <QDir>
#include <QHBoxLayout>
2020-08-22 01:19:58 +02:00
#include <QLabel>
DeviceInfoWidget::DeviceInfoWidget( QWidget* parent )
: QWidget( parent )
, m_ptIcon( new QLabel )
, m_ptLabel( new QLabel )
2017-08-29 20:00:48 +02:00
, m_tableType( PartitionTable::unknownTableType )
{
QHBoxLayout* mainLayout = new QHBoxLayout;
setLayout( mainLayout );
CalamaresUtils::unmarginLayout( mainLayout );
2020-08-22 01:19:58 +02:00
m_ptLabel->setObjectName( "deviceInfoLabel" );
m_ptIcon->setObjectName( "deviceInfoIcon" );
mainLayout->addWidget( m_ptIcon );
mainLayout->addWidget( m_ptLabel );
QSize iconSize = CalamaresUtils::defaultIconSize();
m_ptIcon->setMargin( 0 );
m_ptIcon->setFixedSize( iconSize );
m_ptIcon->setPixmap(
2020-08-22 01:19:58 +02:00
CalamaresUtils::defaultPixmap( CalamaresUtils::PartitionTable, CalamaresUtils::Original, iconSize ) );
QFontMetrics fm = QFontMetrics( QFont() );
2016-01-27 16:46:32 +01:00
m_ptLabel->setMinimumWidth( fm.boundingRect( "Amiga" ).width() + CalamaresUtils::defaultFontHeight() / 2 );
m_ptLabel->setAlignment( Qt::AlignCenter );
QPalette palette;
palette.setBrush( WindowText, QColor( "#4D4D4D" ) ); //dark grey
m_ptIcon->setAutoFillBackground( true );
m_ptLabel->setAutoFillBackground( true );
m_ptIcon->setPalette( palette );
m_ptLabel->setPalette( palette );
2021-03-16 16:11:02 +01:00
CALAMARES_RETRANSLATE_SLOT( &DeviceInfoWidget::retranslateUi );
}
void
DeviceInfoWidget::setPartitionTableType( PartitionTable::TableType type )
{
m_tableType = type;
retranslateUi();
}
void
DeviceInfoWidget::retranslateUi()
{
QString typeString;
QString toolTipString;
// fix up if the name shouldn't be uppercase:
switch ( m_tableType )
{
2016-01-27 16:46:32 +01:00
case PartitionTable::msdos:
case PartitionTable::msdos_sectorbased:
typeString = "MBR";
toolTipString += tr( "<br><br>This partition table type is only advisable on older "
"systems which start from a <strong>BIOS</strong> boot "
"environment. GPT is recommended in most other cases.<br><br>"
"<strong>Warning:</strong> the MBR partition table "
"is an obsolete MS-DOS era standard.<br>"
"Only 4 <em>primary</em> partitions may be created, and of "
"those 4, one can be an <em>extended</em> partition, which "
"may in turn contain many <em>logical</em> partitions." );
2016-01-27 16:46:32 +01:00
break;
case PartitionTable::gpt:
// TypeString is ok
toolTipString += tr( "<br><br>This is the recommended partition table type for modern "
"systems which start from an <strong>EFI</strong> boot "
"environment." );
break;
case PartitionTable::loop:
typeString = "loop";
2016-01-28 13:01:50 +01:00
toolTipString = tr( "This is a <strong>loop</strong> "
"device.<br><br>"
2016-01-28 13:01:50 +01:00
"It is a pseudo-device with no partition table "
"that makes a file accessible as a block device. "
"This kind of setup usually only contains a single filesystem." );
break;
case PartitionTable::none:
case PartitionTable::unknownTableType:
typeString = " ? ";
toolTipString = tr( "This installer <strong>cannot detect a partition table</strong> on the "
"selected storage device.<br><br>"
"The device either has no partition "
"table, or the partition table is corrupted or of an unknown "
"type.<br>"
"This installer can create a new partition table for you, "
"either automatically, or through the manual partitioning "
"page." );
break;
// The next ones need to have the name adjusted, but the default tooltip is OK
case PartitionTable::mac:
typeString = "Mac";
break;
case PartitionTable::amiga:
typeString = "Amiga";
break;
case PartitionTable::sun:
typeString = "Sun";
break;
// Peculiar tables, do nothing and use default type and tooltip strings
case PartitionTable::aix:
case PartitionTable::bsd:
case PartitionTable::dasd:
case PartitionTable::dvh:
case PartitionTable::pc98:
case PartitionTable::vmd:
break;
}
if ( typeString.isEmpty() )
{
typeString = PartitionTable::tableTypeToName( m_tableType ).toUpper();
}
if ( toolTipString.isEmpty() )
{
toolTipString = tr( "This device has a <strong>%1</strong> partition "
"table." )
.arg( typeString );
}
m_ptLabel->setText( typeString );
m_ptLabel->setToolTip( toolTipString );
m_ptIcon->setToolTip( tr( "The type of <strong>partition table</strong> on the "
2020-08-22 01:19:58 +02:00
"selected storage device.<br><br>"
"The only way to change the partition table type is to "
"erase and recreate the partition table from scratch, "
"which destroys all data on the storage device.<br>"
"This installer will keep the current partition table "
"unless you explicitly choose otherwise.<br>"
"If unsure, on modern systems GPT is preferred." ) );
}