Add Sumo connector and related cloud tools

* Add cloud data icon
* Add Sumo connector and related helper tools
* Reorganize preferences and remove ssihub
* Use timeout defined for Sumo
This commit is contained in:
Magne Sjaastad
2024-07-05 09:31:16 +02:00
committed by GitHub
parent 868e9916bc
commit ffc1687cc7
26 changed files with 2077 additions and 36 deletions

View File

@@ -684,6 +684,7 @@ void RiuMainWindow::createToolBars()
{
QToolBar* toolbar = addToolBar( tr( "Test" ) );
toolbar->setObjectName( toolbar->windowTitle() );
toolbar->addAction( cmdFeatureMgr->action( "RicSumoDataFeature" ) );
toolbar->addAction( cmdFeatureMgr->action( "RicLaunchRegressionTestsFeature" ) );
toolbar->addAction( cmdFeatureMgr->action( "RicLaunchRegressionTestDialogFeature" ) );
toolbar->addAction( cmdFeatureMgr->action( "RicShowClassNamesFeature" ) );

View File

@@ -114,7 +114,7 @@ QSize RiuPropertyViewTabWidget::sizeHint() const
// qDebug() << "tab size hint" << w->sizeHint();
QSize pageSize = w->sizeHint();
pageSize += QSize( 0, 100 );
pageSize += QSize( 60, 100 );
maxSizeHint = maxSizeHint.expandedTo( pageSize );
}