qskinny/src/dialogs/QskMessageWindow.cpp
2018-11-06 19:00:42 +01:00

159 lines
4.2 KiB
C++

/******************************************************************************
* QSkinny - Copyright (C) 2016 Uwe Rathmann
* This file may be used under the terms of the QSkinny License, Version 1.0
*****************************************************************************/
#include "QskMessageWindow.h"
#include "QskGraphicLabel.h"
#include "QskGraphic.h"
#include "QskLinearBox.h"
#include "QskSkin.h"
#include "QskTextLabel.h"
#include "QskTextOptions.h"
#include <qfontmetrics.h>
namespace
{
class TextLabel final : public QskTextLabel
{
public:
TextLabel( QskMessageWindow* box )
{
setObjectName( QStringLiteral( "QskMessageWindowTextLabel" ) );
initSizePolicy( QskSizePolicy::Preferred, QskSizePolicy::Preferred );
setAlignment( Qt::AlignLeft | Qt::AlignTop );
setWrapMode( QskTextOptions::WordWrap );
connect( this, &QskTextLabel::textChanged,
box, &QskMessageWindow::textChanged );
connect( this, &QskTextLabel::textOptionsChanged,
box, &QskMessageWindow::textOptionsChanged );
}
};
class SymbolLabel final : public QskGraphicLabel
{
public:
SymbolLabel( QskMessageWindow* )
{
setObjectName( QStringLiteral( "QskMessageWindowSymbolLabel" ) );
initSizePolicy( QskSizePolicy::Fixed, QskSizePolicy::Fixed );
setAlignment( Qt::AlignTop | Qt::AlignHCenter );
updateSourceSize();
}
protected:
void changeEvent( QEvent* event ) override
{
if ( event->type() == QEvent::FontChange )
updateSourceSize();
QskGraphicLabel::changeEvent( event );
}
private:
void updateSourceSize()
{
// when there is no explicit size known,
// we always adjust the icon according to the font
if ( sourceSize().isEmpty() )
{
const QFont font = effectiveFont( QskTextLabel::Text );
setPreferredSize( -1.0, 1.5 * QFontMetricsF( font ).height() );
}
}
};
}
class QskMessageWindow::PrivateData
{
public:
QskGraphicLabel* symbolLabel;
QskTextLabel* textLabel;
};
QskMessageWindow::QskMessageWindow( QWindow* parent )
: Inherited( parent )
, m_data( new PrivateData() )
{
setFlags( Qt::Dialog | Qt::WindowTitleHint |
Qt::WindowCloseButtonHint | Qt::WindowSystemMenuHint );
m_data->textLabel = new TextLabel( this );
m_data->symbolLabel = new SymbolLabel( this );
m_data->symbolLabel->hide();
const auto alignment = Qt::AlignTop | Qt::AlignHCenter;
auto box = new QskLinearBox( Qt::Horizontal );
box->setSpacing( 0 );
box->addItem( m_data->symbolLabel, alignment );
box->addItem( m_data->textLabel, alignment );
box->setStretchFactor( m_data->textLabel, 10 );
setDialogContentItem( box );
}
QskMessageWindow::~QskMessageWindow()
{
}
void QskMessageWindow::setText( const QString& text )
{
m_data->textLabel->setText( text );
}
QString QskMessageWindow::text() const
{
return m_data->textLabel->text();
}
void QskMessageWindow::setTextOptions( const QskTextOptions& options )
{
m_data->textLabel->setTextOptions( options );
}
QskTextOptions QskMessageWindow::textOptions() const
{
return m_data->textLabel->textOptions();
}
void QskMessageWindow::setSymbolSource( const QUrl& url )
{
m_data->symbolLabel->setSource( url );
m_data->symbolLabel->setVisible( !url.isEmpty() );
if ( auto box = qobject_cast< QskLinearBox* >( contentItem() ) )
box->setSpacing( m_data->symbolLabel->isVisible() ? 15 : 0 ); // metrics !!
}
void QskMessageWindow::setSymbolType( int symbolType )
{
const auto skin = m_data->symbolLabel->effectiveSkin();
setSymbol( skin->symbol( symbolType ) );
}
QUrl QskMessageWindow::symbolSource() const
{
return m_data->symbolLabel->source();
}
void QskMessageWindow::setSymbol( const QskGraphic& symbol )
{
m_data->symbolLabel->setVisible( !symbol.isNull() );
m_data->symbolLabel->setGraphic( symbol );
}
QskGraphic QskMessageWindow::symbol() const
{
return m_data->symbolLabel->graphic();
}
#include "moc_QskMessageWindow.cpp"