moc includes

This commit is contained in:
Uwe Rathmann 2021-04-26 08:43:46 +02:00
parent bfe76356b8
commit 7c1d8cfa05
12 changed files with 24 additions and 0 deletions

View File

@ -66,3 +66,5 @@ QskAspect::Subcontrol Box::effectiveSubcontrol( QskAspect::Subcontrol subControl
return subControl; return subControl;
} }
#include "moc_Box.cpp"

View File

@ -69,3 +69,5 @@ BoxWithButtons::BoxWithButtons( const QString& title, const QString& value, bool
new UpAndDownButton( layout ); new UpAndDownButton( layout );
} }
#include "moc_BoxWithButtons.cpp"

View File

@ -229,3 +229,5 @@ LightIntensity::LightIntensity( QQuickItem* parent )
{ {
new LightDisplay( this ); new LightDisplay( this );
} }
#include "moc_LightIntensity.cpp"

View File

@ -166,3 +166,5 @@ void MainContent::geometryChangeEvent( QskGeometryChangeEvent* event )
QskLinearBox::geometryChangeEvent( event ); QskLinearBox::geometryChangeEvent( event );
m_shadowPositioner->polish(); m_shadowPositioner->polish();
} }
#include "moc_MainContent.cpp"

View File

@ -48,3 +48,5 @@ MainWindow::MainWindow()
m_mainLayout->setSpacing( 0 ); m_mainLayout->setSpacing( 0 );
} }
#include "moc_MainWindow.cpp"

View File

@ -117,3 +117,5 @@ QskAspect::Subcontrol MenuBar::effectiveSubcontrol( QskAspect::Subcontrol subCon
return subControl; return subControl;
} }
#include "moc_MenuBar.cpp"

View File

@ -58,3 +58,5 @@ void PieChart::setLabels( const QVector< QString >& labels )
{ {
m_labels = labels; m_labels = labels;
} }
#include "moc_PieChart.cpp"

View File

@ -108,3 +108,5 @@ QSGNode* PieChartSkinlet::updateLabelsNode( const PieChart* pieChart, QSGNode* /
return nullptr; return nullptr;
} }
#include "moc_PieChartSkinlet.cpp"

View File

@ -92,3 +92,5 @@ QSizeF RoundedIcon::contentsSizeHint( Qt::SizeHint /*which*/, const QSizeF& size
return ret; return ret;
} }
#include "moc_RoundedIcon.cpp"

View File

@ -128,3 +128,5 @@ TopBar::TopBar( QQuickItem* parent ) : QskLinearBox( Qt::Horizontal, parent )
auto timeString = now.toString(); auto timeString = now.toString();
new TimeLabel( timeString, timeControl ); new TimeLabel( timeString, timeControl );
} }
#include "moc_TopBar.cpp"

View File

@ -85,3 +85,5 @@ UpAndDownButton::UpAndDownButton( QQuickItem* parent )
new RoundButton( QskAspect::Top, this ); new RoundButton( QskAspect::Top, this );
new RoundButton( QskAspect::Bottom, this ); new RoundButton( QskAspect::Bottom, this );
} }
#include "moc_UpAndDownButton.cpp"

View File

@ -63,3 +63,5 @@ Usage::Usage( QQuickItem* parent )
auto* totalValue = new QskTextLabel( "125 hrs", total ); auto* totalValue = new QskTextLabel( "125 hrs", total );
totalValue->setFontRole( QskSkin::SmallFont ); totalValue->setFontRole( QskSkin::SmallFont );
} }
#include "moc_Usage.cpp"