Many new icons and minor CSS changes

This commit is contained in:
Gaute Lindkvist 2020-10-01 17:25:19 +02:00 committed by Magne Sjaastad
parent 3f1fd44554
commit b7ac99e53b
98 changed files with 631 additions and 121 deletions

View File

@ -69,7 +69,7 @@ void RicOpenProjectFeature::onActionTriggered( bool isChecked )
void RicOpenProjectFeature::setupActionLook( QAction* actionToSetup )
{
actionToSetup->setText( "Open Project" );
actionToSetup->setIcon( QIcon( ":/openFolder24x24.png" ) );
actionToSetup->setIcon( QIcon( ":/OpenFolder.svg" ) );
applyShortcutWithHintToAction( actionToSetup, QKeySequence::Open );
}

View File

@ -93,7 +93,7 @@ void RicSaveProjectAsFeature::onActionTriggered( bool isChecked )
void RicSaveProjectAsFeature::setupActionLook( QAction* actionToSetup )
{
actionToSetup->setText( "Save Project &As" );
actionToSetup->setIcon( QIcon( ":/SaveAs24x24.png" ) );
actionToSetup->setIcon( QIcon( ":/SaveAs.svg" ) );
applyShortcutWithHintToAction( actionToSetup, QKeySequence::SaveAs );
}

View File

@ -105,7 +105,7 @@ void RicSaveProjectFeature::onActionTriggered( bool isChecked )
void RicSaveProjectFeature::setupActionLook( QAction* actionToSetup )
{
actionToSetup->setText( "&Save Project" );
actionToSetup->setIcon( QIcon( ":/Save24x24.png" ) );
actionToSetup->setIcon( QIcon( ":/Save.svg" ) );
applyShortcutWithHintToAction( actionToSetup, QKeySequence::Save );
}

View File

@ -71,6 +71,6 @@ void RicShowMainWindowFeature::setupActionLook( QAction* actionToSetup )
{
actionToSetup->setText( "Open 3D Window" );
actionToSetup->setToolTip( "Open 3D Window (Ctrl+Shift+3)" );
actionToSetup->setIcon( QIcon( ":/3DWindow24x24.png" ) );
actionToSetup->setIcon( QIcon( ":/3DWindow.svg" ) );
applyShortcutWithHintToAction( actionToSetup, QKeySequence( tr( "Ctrl+Shift+3" ) ) );
}

View File

@ -256,7 +256,7 @@ void RicShowPlotDataFeature::onActionTriggered( bool isChecked )
void RicShowPlotDataFeature::setupActionLook( QAction* actionToSetup )
{
actionToSetup->setText( "Show Plot Data" );
actionToSetup->setIcon( QIcon( ":/PlotWindow24x24.png" ) );
actionToSetup->setIcon( QIcon( ":/PlotWindow.svg" ) );
}
//--------------------------------------------------------------------------------------------------

View File

@ -49,6 +49,6 @@ void RicShowPlotWindowFeature::setupActionLook( QAction* actionToSetup )
{
actionToSetup->setText( "Open Plot Window" );
actionToSetup->setToolTip( "Open Plot Window (Ctrl+Shift+P)" );
actionToSetup->setIcon( QIcon( ":/PlotWindow24x24.png" ) );
actionToSetup->setIcon( QIcon( ":/PlotWindow.svg" ) );
applyShortcutWithHintToAction( actionToSetup, QKeySequence( tr( "Ctrl+Shift+P" ) ) );
}

View File

@ -69,7 +69,7 @@ void RicTileWindowsFeature::onActionTriggered( bool isChecked )
void RicTileWindowsFeature::setupActionLook( QAction* actionToSetup )
{
actionToSetup->setText( "Tile Windows" );
actionToSetup->setIcon( QIcon( ":/TileWindows24x24.png" ) );
actionToSetup->setIcon( QIcon( ":/TileWindows.svg" ) );
actionToSetup->setCheckable( true );
}
@ -126,7 +126,7 @@ void RicTilePlotWindowsFeature::onActionTriggered( bool isChecked )
void RicTilePlotWindowsFeature::setupActionLook( QAction* actionToSetup )
{
actionToSetup->setText( "Tile Windows" );
actionToSetup->setIcon( QIcon( ":/TileWindows24x24.png" ) );
actionToSetup->setIcon( QIcon( ":/TileWindows.svg" ) );
actionToSetup->setCheckable( true );
}

View File

@ -106,7 +106,7 @@ void RicAdvancedSnapshotExportFeature::onActionTriggered( bool isChecked )
void RicAdvancedSnapshotExportFeature::setupActionLook( QAction* actionToSetup )
{
actionToSetup->setText( "Advanced Snapshot Export ..." );
actionToSetup->setIcon( QIcon( ":/SnapShotSaveViews.png" ) );
actionToSetup->setIcon( QIcon( ":/SnapShotSaveViews.svg" ) );
}
//--------------------------------------------------------------------------------------------------

View File

@ -131,7 +131,7 @@ void RicExportCarfin::onActionTriggered( bool isChecked )
void RicExportCarfin::setupActionLook( QAction* actionToSetup )
{
actionToSetup->setText( "Export CARFIN ..." );
actionToSetup->setIcon( QIcon( ":/Save24x24.png" ) );
actionToSetup->setIcon( QIcon( ":/Save.svg" ) );
}
//--------------------------------------------------------------------------------------------------

View File

@ -110,5 +110,5 @@ void RicExportFaultsFeature::onActionTriggered( bool isChecked )
void RicExportFaultsFeature::setupActionLook( QAction* actionToSetup )
{
actionToSetup->setText( "Export Faults ..." );
actionToSetup->setIcon( QIcon( ":/Save24x24.png" ) );
actionToSetup->setIcon( QIcon( ":/Save.svg" ) );
}

View File

@ -150,5 +150,5 @@ void RicSnapshotAllPlotsToFileFeature::onActionTriggered( bool isChecked )
void RicSnapshotAllPlotsToFileFeature::setupActionLook( QAction* actionToSetup )
{
actionToSetup->setText( "Snapshot All Plots To File" );
actionToSetup->setIcon( QIcon( ":/SnapShotSaveViews.png" ) );
actionToSetup->setIcon( QIcon( ":/SnapShotSaveViews.svg" ) );
}

View File

@ -178,5 +178,5 @@ void RicSnapshotAllViewsToFileFeature::onActionTriggered( bool isChecked )
void RicSnapshotAllViewsToFileFeature::setupActionLook( QAction* actionToSetup )
{
actionToSetup->setText( "Snapshot All Views To File" );
actionToSetup->setIcon( QIcon( ":/SnapShotSaveViews.png" ) );
actionToSetup->setIcon( QIcon( ":/SnapShotSaveViews.svg" ) );
}

View File

@ -54,7 +54,7 @@ void RicSnapshotViewToClipboardFeature::copyToClipboard( const QImage& image )
//--------------------------------------------------------------------------------------------------
QIcon RicSnapshotViewToClipboardFeature::icon()
{
return QIcon( ":/SnapShot.png" );
return QIcon( ":/SnapShot.svg" );
}
//--------------------------------------------------------------------------------------------------

View File

@ -234,7 +234,7 @@ QString RicSnapshotViewToFileFeature::generateSaveFileName( const QString& defau
//--------------------------------------------------------------------------------------------------
QIcon RicSnapshotViewToFileFeature::icon()
{
return QIcon( ":/SnapShotSave.png" );
return QIcon( ":/SnapShotSave.svg" );
}
//--------------------------------------------------------------------------------------------------

View File

@ -87,5 +87,5 @@ void RicSnapshotViewToPdfFeature::onActionTriggered( bool isChecked )
void RicSnapshotViewToPdfFeature::setupActionLook( QAction* actionToSetup )
{
actionToSetup->setText( "Export View To PDF" );
actionToSetup->setIcon( QIcon( ":/PdfSave.png" ) );
actionToSetup->setIcon( QIcon( ":/PdfSave.svg" ) );
}

View File

@ -76,7 +76,7 @@ void RicShowTotalAllocationDataFeature::onActionTriggered( bool isChecked )
void RicShowTotalAllocationDataFeature::setupActionLook( QAction* actionToSetup )
{
actionToSetup->setText( "Show Total Allocation Data" );
// actionToSetup->setIcon(QIcon(":/PlotWindow24x24.png"));
// actionToSetup->setIcon(QIcon(":/PlotWindow.svg"));
}
//--------------------------------------------------------------------------------------------------

View File

@ -126,6 +126,6 @@ void RicHoloLensExportToFolderFeature::onActionTriggered( bool isChecked )
//--------------------------------------------------------------------------------------------------
void RicHoloLensExportToFolderFeature::setupActionLook( QAction* actionToSetup )
{
actionToSetup->setIcon( QIcon( ":/Save24x24.png" ) );
actionToSetup->setIcon( QIcon( ":/Save.svg" ) );
actionToSetup->setText( "HoloLens : Export to Folder" );
}

View File

@ -77,7 +77,7 @@ void RicToggleMeasurementModeFeature::setupActionLook( QAction* actionToSetup )
{
actionToSetup->setText( "Measurement" );
actionToSetup->setToolTip( "Single Line Measurement (Ctrl+M)" );
actionToSetup->setIcon( QIcon( ":/Ruler24x24.png" ) );
actionToSetup->setIcon( QIcon( ":/Ruler.svg" ) );
actionToSetup->setCheckable( true );
auto* meas = measurement();
@ -163,7 +163,7 @@ void RicTogglePolyMeasurementModeFeature::setupActionLook( QAction* actionToSetu
{
actionToSetup->setText( "Poly Line Measurement" );
actionToSetup->setToolTip( "Poly Line Measurement (Ctrl+Shift+M)" );
actionToSetup->setIcon( QIcon( ":/RulerPoly24x24.png" ) );
actionToSetup->setIcon( QIcon( ":/RulerPoly.svg" ) );
actionToSetup->setCheckable( true );
auto* meas = measurement();

View File

@ -73,5 +73,5 @@ void RicExportFractureModelPlotToFileFeature::onActionTriggered( bool isChecked
void RicExportFractureModelPlotToFileFeature::setupActionLook( QAction* actionToSetup )
{
actionToSetup->setText( "Export Fracture Model to File" );
actionToSetup->setIcon( QIcon( ":/Save24x24.png" ) );
actionToSetup->setIcon( QIcon( ":/Save.svg" ) );
}

View File

@ -113,7 +113,7 @@ void RicImportEnsembleFeature::onActionTriggered( bool isChecked )
//--------------------------------------------------------------------------------------------------
void RicImportEnsembleFeature::setupActionLook( QAction* actionToSetup )
{
actionToSetup->setIcon( QIcon( ":/SummaryEnsemble24x24.png" ) );
actionToSetup->setIcon( QIcon( ":/SummaryEnsemble.svg" ) );
actionToSetup->setText( "Import Ensemble" );
}

View File

@ -151,7 +151,7 @@ void RicImportGeneralDataFeature::onActionTriggered( bool isChecked )
//--------------------------------------------------------------------------------------------------
void RicImportGeneralDataFeature::setupActionLook( QAction* actionToSetup )
{
actionToSetup->setIcon( QIcon( ":/Case24x24.png" ) );
actionToSetup->setIcon( QIcon( ":/Case.svg" ) );
actionToSetup->setText( "Import Eclipse Files" );
}

View File

@ -57,6 +57,6 @@ void RicImportSummaryCaseFeature::onActionTriggered( bool isChecked )
//--------------------------------------------------------------------------------------------------
void RicImportSummaryCaseFeature::setupActionLook( QAction* actionToSetup )
{
actionToSetup->setIcon( QIcon( ":/SummaryCase24x24.png" ) );
actionToSetup->setIcon( QIcon( ":/SummaryCase.svg" ) );
actionToSetup->setText( "Import Summary Case" );
}

View File

@ -69,11 +69,11 @@ void RicTogglePerspectiveViewFeature::setupActionLook( QAction* actionToSetup )
if ( RiaApplication::instance()->activeReservoirView()->isPerspectiveView() )
{
actionToSetup->setText( "Parallel View" );
actionToSetup->setIcon( QIcon( ":/Parallel24x24.png" ) );
actionToSetup->setIcon( QIcon( ":/Parallel.svg" ) );
return;
}
}
actionToSetup->setText( "Perspective View" );
actionToSetup->setIcon( QIcon( ":/Perspective24x24.png" ) );
actionToSetup->setIcon( QIcon( ":/Perspective.svg" ) );
}

View File

@ -120,7 +120,7 @@ void RicAsciiExportSummaryPlotFeature::onActionTriggered( bool isChecked )
void RicAsciiExportSummaryPlotFeature::setupActionLook( QAction* actionToSetup )
{
actionToSetup->setText( "Export Plot Data to Text File" );
actionToSetup->setIcon( QIcon( ":/Save24x24.png" ) );
actionToSetup->setIcon( QIcon( ":/Save.svg" ) );
}
//--------------------------------------------------------------------------------------------------

View File

@ -82,5 +82,5 @@ void RicEditSummaryCurveCalculationFeature::onActionTriggered( bool isChecked )
void RicEditSummaryCurveCalculationFeature::setupActionLook( QAction* actionToSetup )
{
actionToSetup->setText( "Edit Curve Calculation" );
actionToSetup->setIcon( QIcon( ":/calculator.png" ) );
actionToSetup->setIcon( QIcon( ":/Calculator.svg" ) );
}

View File

@ -71,7 +71,7 @@ void RicNewDerivedSummaryFeature::onActionTriggered( bool isChecked )
void RicNewDerivedSummaryFeature::setupActionLook( QAction* actionToSetup )
{
actionToSetup->setText( "New Delta Summary Case" );
actionToSetup->setIcon( QIcon( ":/SummaryCase16x16.png" ) );
actionToSetup->setIcon( QIcon( ":/SummaryCase.svg" ) );
}
//--------------------------------------------------------------------------------------------------

View File

@ -93,5 +93,5 @@ void RicShowSummaryCurveCalculatorFeature::onActionTriggered( bool isChecked )
void RicShowSummaryCurveCalculatorFeature::setupActionLook( QAction* actionToSetup )
{
actionToSetup->setText( "Curve Calculator" );
actionToSetup->setIcon( QIcon( ":/calculator.png" ) );
actionToSetup->setIcon( QIcon( ":/Calculator.svg" ) );
}

View File

@ -80,6 +80,6 @@ void RicViewZoomAllFeature::setupActionLook( QAction* actionToSetup )
{
actionToSetup->setText( "Zoom All" );
actionToSetup->setToolTip( "Zoom All (Ctrl+Alt+A)" );
actionToSetup->setIcon( QIcon( ":/ZoomAll16x16.png" ) );
actionToSetup->setIcon( QIcon( ":/ZoomAll.svg" ) );
applyShortcutWithHintToAction( actionToSetup, QKeySequence( tr( "Ctrl+Alt+A" ) ) );
}

View File

@ -75,5 +75,5 @@ void RicDeleteAllLinkedViewsFeature::onActionTriggered( bool isChecked )
void RicDeleteAllLinkedViewsFeature::setupActionLook( QAction* actionToSetup )
{
actionToSetup->setText( "Unlink All Views" );
actionToSetup->setIcon( QIcon( ":/UnLinkView16x16.png" ) );
actionToSetup->setIcon( QIcon( ":/UnLinkView.svg" ) );
}

View File

@ -138,7 +138,7 @@ void RicLinkViewFeature::setupActionLook( QAction* actionToSetup )
if ( cmdImpl.viewsToLink().size() >= 2u )
{
actionToSetup->setText( "Link Selected Views" );
actionToSetup->setIcon( QIcon( ":/LinkView16x16.png" ) );
actionToSetup->setIcon( QIcon( ":/LinkView.svg" ) );
}
else
{

View File

@ -91,7 +91,7 @@ void RicLinkVisibleViewsFeature::onActionTriggered( bool isChecked )
void RicLinkVisibleViewsFeature::setupActionLook( QAction* actionToSetup )
{
actionToSetup->setText( "Link Visible Views" );
actionToSetup->setIcon( QIcon( ":/LinkView24x24.png" ) );
actionToSetup->setIcon( QIcon( ":/LinkView.svg" ) );
}
//--------------------------------------------------------------------------------------------------

View File

@ -104,5 +104,5 @@ void RicUnLinkViewFeature::onActionTriggered( bool isChecked )
void RicUnLinkViewFeature::setupActionLook( QAction* actionToSetup )
{
actionToSetup->setText( "Unlink View" );
actionToSetup->setIcon( QIcon( ":/UnLinkView16x16.png" ) );
actionToSetup->setIcon( QIcon( ":/UnLinkView.svg" ) );
}

View File

@ -108,7 +108,7 @@ void RicAsciiExportWellLogPlotFeature::onActionTriggered( bool isChecked )
void RicAsciiExportWellLogPlotFeature::setupActionLook( QAction* actionToSetup )
{
actionToSetup->setText( "Export Plot Data to Text File" );
actionToSetup->setIcon( QIcon( ":/Save24x24.png" ) );
actionToSetup->setIcon( QIcon( ":/Save.svg" ) );
}
//--------------------------------------------------------------------------------------------------

View File

@ -80,5 +80,5 @@ void RicShowWellPlanFeature::onActionTriggered( bool isChecked )
void RicShowWellPlanFeature::setupActionLook( QAction* actionToSetup )
{
actionToSetup->setText( "Show Well Plan" );
actionToSetup->setIcon( QIcon( ":/PlotWindow24x24.png" ) );
actionToSetup->setIcon( QIcon( ":/PlotWindow.svg" ) );
}

View File

@ -344,7 +344,7 @@ caf::CmdFeatureMenuBuilder RimContextCommandBuilder::commandsFromSelection()
menuBuilder << "RicImportWellMeasurementsFeature";
menuBuilder.subMenuEnd();
menuBuilder.addSeparator();
menuBuilder.subMenuStart( "Export Well Paths", QIcon( ":/Save24x24.png" ) );
menuBuilder.subMenuStart( "Export Well Paths", QIcon( ":/Save.svg" ) );
menuBuilder << "RicExportSelectedWellPathsFeature";
menuBuilder << "RicExportVisibleWellPathsFeature";
menuBuilder.subMenuEnd();
@ -1357,11 +1357,7 @@ int RimContextCommandBuilder::appendExportWellPaths( caf::CmdFeatureMenuBuilder&
candidates << "RicExportSelectedWellPathsFeature";
candidates << "RicExportVisibleWellPathsFeature";
return appendSubMenuWithCommands( menuBuilder,
candidates,
"Export Well Paths",
QIcon( ":/Save24x24.png" ),
addSeparatorBeforeMenu );
return appendSubMenuWithCommands( menuBuilder, candidates, "Export Well Paths", QIcon( ":/Save.svg" ), addSeparatorBeforeMenu );
}
//-------------------------------------------------------------------------------------------------

View File

@ -28,7 +28,7 @@ CAF_PDM_SOURCE_INIT( RimCalculatedSummaryCase, "CalculatedSummaryCase" );
//--------------------------------------------------------------------------------------------------
RimCalculatedSummaryCase::RimCalculatedSummaryCase()
{
CAF_PDM_InitObject( "Calculated", ":/SummaryCase48x48.png", "", "" );
CAF_PDM_InitObject( "Calculated", ":/SummaryCase.svg", "", "" );
m_calculatedCurveReader = nullptr;
m_displayName = "Calculated";

View File

@ -62,7 +62,7 @@ RimDerivedSummaryCase::RimDerivedSummaryCase()
: m_summaryCase1( nullptr )
, m_summaryCase2( nullptr )
{
CAF_PDM_InitObject( "Summary Case", ":/SummaryCase16x16.png", "", "" );
CAF_PDM_InitObject( "Summary Case", ":/SummaryCase.svg", "", "" );
CAF_PDM_InitFieldNoDefault( &m_summaryCase1, "SummaryCase1", "Summary Case 1", "", "", "" );
CAF_PDM_InitFieldNoDefault( &m_operator, "Operator", "Operator", "", "", "" );

View File

@ -57,7 +57,7 @@ void AppEnum<RimSummaryCase::DisplayName>::setUp()
RimSummaryCase::RimSummaryCase()
: nameChanged( this )
{
CAF_PDM_InitScriptableObject( "Summary Case", ":/SummaryCase16x16.png", "", "The Base Class for all Summary Cases" );
CAF_PDM_InitScriptableObject( "Summary Case", ":/SummaryCase.svg", "", "The Base Class for all Summary Cases" );
CAF_PDM_InitScriptableFieldNoDefault( &m_displayName, "ShortName", "Display Name", "", "", "" );
CAF_PDM_InitScriptableFieldNoDefault( &m_displayNameOption, "NameSetting", "Name Setting", "", "", "" );

View File

@ -0,0 +1,28 @@
<?xml version="1.0" encoding="utf-8"?>
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient gradientUnits="userSpaceOnUse" x1="8" y1="5.959" x2="8" y2="8.851" id="gradient-0" gradientTransform="matrix(0.77278, -0.826661, 1.475409, 1.565307, -11.240648, 1.751595)">
<stop offset="0" style="stop-color: rgb(255, 255, 255);"/>
<stop offset="1" style="stop-color: rgb(164, 110, 205);"/>
</linearGradient>
<linearGradient gradientUnits="userSpaceOnUse" x1="8" y1="5.5" x2="8" y2="12.802" id="gradient-1" gradientTransform="matrix(0.833162, -0.757177, 0.986609, 1.232075, -8.404484, 4.002)">
<stop offset="0" style="stop-color: rgb(255, 255, 255);"/>
<stop offset="1" style="stop-color: rgb(110, 110, 110);"/>
</linearGradient>
<linearGradient gradientUnits="userSpaceOnUse" x1="6.364" y1="8.004" x2="6.364" y2="12.189" id="gradient-2" gradientTransform="matrix(1.084849, -0.159545, 0.173622, 1.339823, -2.842387, -2.428585)">
<stop offset="0" style="stop-color: rgb(200, 162, 229);"/>
<stop offset="1" style="stop-color: rgb(160, 98, 207);"/>
</linearGradient>
<linearGradient gradientUnits="userSpaceOnUse" x1="9.635" y1="8.004" x2="9.635" y2="12.189" id="gradient-3" gradientTransform="matrix(0.905316, -0.656473, 1.082366, 1.694006, -12.140138, -1.485355)">
<stop offset="0" style="stop-color: rgb(152, 92, 197);"/>
<stop offset="1" style="stop-color: rgb(157, 99, 202);"/>
</linearGradient>
</defs>
<path d="M 15.666 1.583 L 15.666 14.417 L 15.118 15 L 0.881 15 L 0.334 14.417 L 0.334 1.583 L 0.881 1 L 15.118 1 L 15.666 1.583 Z" style="fill: rgb(144, 144, 144);"/>
<path d="M 14.571 2.167 L 1.429 2.167 L 1.429 3.924 L 14.571 3.924 L 14.571 2.167 Z" style="fill: rgb(193, 193, 193);"/>
<path d="M 14.571 4.909 L 1.429 4.909 L 1.429 13.833 L 14.571 13.833 L 14.571 4.909 Z" style="fill: rgb(177, 228, 255);"/>
<path d="M 11.582 6.95 L 8.325 5.083 L 7.674 5.083 L 4.417 6.95 L 4.099 7.483 L 4.099 11.211 L 4.417 11.739 L 7.674 13.602 L 8.325 13.602 L 11.582 11.739 L 11.901 11.211 L 11.901 7.483 L 11.582 6.95 Z" style="fill: url(#gradient-1);"/>
<path d="M 11.257 11.211 L 8.325 12.887 L 8.325 9.526 L 11.257 8.005 L 11.257 11.211 Z" style="fill: url(#gradient-3);"/>
<path d="M 4.914 7.383 L 8 5.619 L 11.086 7.383 L 8 8.993 L 4.914 7.383 Z" style="fill: url(#gradient-0);"/>
<path d="M 7.674 12.887 L 4.743 11.211 L 4.743 8.005 L 7.674 9.526 L 7.674 12.887 Z" style="fill: url(#gradient-2);"/>
</svg>

After

Width:  |  Height:  |  Size: 2.5 KiB

View File

@ -0,0 +1,11 @@
<?xml version="1.0" encoding="utf-8"?>
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" d="M 2.873 1.1 C 3.208 1.236 3.475 1.498 3.618 1.83 C 3.69 2 3.727 2.182 3.725 2.367 C 3.726 2.55 3.69 2.731 3.618 2.9 C 3.513 3.146 3.338 3.355 3.114 3.502 C 2.891 3.649 2.629 3.726 2.362 3.725 C 2.179 3.726 1.998 3.69 1.83 3.618 C 1.583 3.514 1.372 3.339 1.225 3.116 C 1.077 2.892 0.999 2.63 1 2.362 C 0.999 2.179 1.035 1.998 1.106 1.83 C 1.243 1.503 1.503 1.243 1.83 1.106 C 2.163 0.967 2.538 0.965 2.873 1.1 Z M 2.575 2.865 C 2.705 2.809 2.809 2.705 2.865 2.575 C 2.893 2.508 2.907 2.437 2.907 2.365 C 2.908 2.265 2.882 2.167 2.832 2.082 C 2.782 1.996 2.709 1.925 2.622 1.878 C 2.534 1.83 2.436 1.807 2.336 1.811 C 2.237 1.815 2.14 1.847 2.057 1.901 C 1.974 1.956 1.908 2.032 1.865 2.122 C 1.822 2.212 1.804 2.312 1.814 2.411 C 1.823 2.51 1.859 2.604 1.918 2.684 C 1.977 2.764 2.057 2.827 2.149 2.865 C 2.285 2.921 2.439 2.921 2.575 2.865 Z" style="fill: rgb(174, 78, 151);"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M 7.226 5.862 C 7.227 6.13 7.148 6.392 7.001 6.616 C 6.853 6.839 6.642 7.014 6.395 7.118 C 6.226 7.188 6.045 7.225 5.863 7.225 C 5.68 7.225 5.499 7.188 5.33 7.118 C 5.165 7.048 5.015 6.947 4.889 6.819 C 4.764 6.691 4.664 6.54 4.597 6.374 C 4.53 6.208 4.496 6.03 4.497 5.851 C 4.499 5.672 4.536 5.495 4.606 5.33 C 4.743 5.003 5.003 4.743 5.33 4.606 C 5.498 4.535 5.679 4.499 5.862 4.5 C 6.13 4.498 6.393 4.576 6.616 4.724 C 6.84 4.872 7.014 5.083 7.118 5.33 C 7.19 5.498 7.227 5.679 7.226 5.862 Z M 6.408 5.862 C 6.408 5.789 6.393 5.716 6.365 5.649 C 6.337 5.585 6.298 5.526 6.249 5.476 C 6.199 5.427 6.14 5.387 6.076 5.36 C 6.009 5.331 5.936 5.317 5.863 5.317 C 5.79 5.317 5.717 5.331 5.65 5.36 C 5.519 5.415 5.415 5.518 5.36 5.649 C 5.304 5.785 5.304 5.938 5.36 6.075 C 5.387 6.14 5.427 6.199 5.477 6.248 C 5.527 6.298 5.585 6.337 5.65 6.365 C 5.717 6.393 5.79 6.407 5.863 6.407 C 5.936 6.407 6.009 6.393 6.076 6.365 C 6.14 6.337 6.199 6.297 6.249 6.248 C 6.298 6.198 6.338 6.139 6.365 6.075 C 6.393 6.007 6.408 5.935 6.408 5.862 Z" style="fill: rgb(174, 78, 151);"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M 6.43 1.11 L 1.11 6.43 L 1.796 7.116 L 7.116 1.795 L 6.43 1.11 Z" style="fill: rgb(174, 78, 151);"/>
</g>
<path fill-rule="evenodd" clip-rule="evenodd" d="M 14 3 L 10 3 L 10 4 L 14 4 L 14 3 Z" style="fill: rgb(137, 209, 133);"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M 5.7677700000000005 9.52509 L 6.47487 10.2322 L 4.70711 12 L 6.47487 13.7677 L 5.7677700000000005 14.4748 L 4 12.7071 L 2.23223 14.4748 L 1.5251299999999999 13.7677 L 3.29289 12 L 1.5251299999999999 10.2322 L 2.23223 9.52509 L 4 11.2929 L 5.7677700000000005 9.52509 Z" style="fill: rgb(117, 190, 255);"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M 11.5 8.99999 L 12.5 8.99999 L 12.5 11.5 L 15 11.5 L 15 12.5 L 12.5 12.5 L 12.5 15 L 11.5 15 L 11.5 12.5 L 9 12.5 L 9 11.5 L 11.5 11.5 L 11.5 8.99999 Z" style="fill: rgb(251, 176, 0);"/>
</svg>

After

Width:  |  Height:  |  Size: 3.0 KiB

View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M6 1.5L6.5 1H14.5L15 1.5V3.5V8.5L14.5 9H12V8H14V4H7V5H6V3.5V1.5ZM7 2V3H14V2H7ZM1.5 7L1 7.5V14.5L1.5 15H9.5L10 14.5V7.5L9.5 7H1.5ZM2 9V8H9V9H2ZM2 10H9V14H2V10Z" fill="#C5C5C5"/>
<rect x="5.995" y="4.911" width="1.002" height="2.188" style="fill: rgb(197, 197, 197);" rx="0.071" ry="0.071"/>
<rect x="9.609" y="8" width="2.502" height="1.005" style="fill: rgb(197, 197, 197);"/>
</svg>

After

Width:  |  Height:  |  Size: 573 B

View File

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M 0.554 13.04 C 1.124 13.04 1.851 13.057 2.39 12.829 C 2.632 12.729 2.949 12.947 3.172 12.785 C 3.534 12.519 4.077 12.743 4.417 12.41 C 5.301 11.549 6.416 10.537 7.194 9.4 C 7.562 8.861 8.32 8.583 8.87 8.583 C 8.966 8.583 9.286 8.507 9.365 8.583 C 9.781 8.989 10.339 9.191 10.77 9.61 C 10.953 9.79 11.077 10.087 11.249 10.287 C 11.876 11.02 12.509 11.669 13.164 12.387 C 13.476 12.729 13.865 12.947 14.249 13.087 C 14.407 13.145 14.782 13.12 14.888 13.274 C 14.888 13.241 15.153 13.216 15.191 13.216 C 15.276 13.169 15.361 13.169 15.447 13.169" style="fill: rgb(216, 216, 216); fill-opacity: 0; stroke: rgb(128, 70, 0); stroke-linejoin: round; stroke-width: 1.5px;"/>
<path d="M 11.646 2.853 L 11.646 2.853" style="stroke: rgb(0, 0, 0); fill: rgb(216, 216, 216); stroke-width: 1.5px;"/>
<path d="M 0.554 11.835 C 1.124 11.835 1.851 11.851 2.39 11.625 C 2.632 11.524 2.949 11.741 3.172 11.58 C 3.534 11.313 4.077 11.537 4.417 11.205 C 5.301 10.344 6.416 9.333 7.194 8.195 C 7.562 7.656 8.32 7.378 8.87 7.378 C 8.966 7.378 9.286 7.302 9.365 7.378 C 9.781 7.784 10.339 7.986 10.77 8.405 C 10.953 8.584 11.077 8.882 11.249 9.083 C 11.876 9.815 12.509 10.464 13.164 11.182 C 13.476 11.524 13.865 11.741 14.249 11.883 C 14.407 11.939 14.782 11.914 14.888 12.07 C 14.888 12.036 15.153 12.011 15.191 12.011 C 15.276 11.963 15.361 11.963 15.447 11.963" style="fill-opacity: 0; stroke-linejoin: round; fill: rgb(189, 120, 0); stroke: rgb(171, 94, 0); stroke-width: 1.5px;"/>
<path d="M 0.554 10.638 C 1.124 10.638 1.851 10.656 2.39 10.429 C 2.632 10.329 2.949 10.546 3.172 10.384 C 3.534 10.117 4.077 10.341 4.417 10.009 C 5.301 9.148 6.416 8.136 7.194 6.998 C 7.562 6.46 8.32 6.182 8.87 6.182 C 8.966 6.182 9.286 6.106 9.365 6.182 C 9.781 6.588 10.339 6.79 10.77 7.209 C 10.953 7.387 11.077 7.685 11.249 7.886 C 11.876 8.619 12.509 9.268 13.164 9.985 C 13.476 10.329 13.865 10.546 14.249 10.685 C 14.407 10.743 14.782 10.719 14.888 10.873 C 14.888 10.839 15.153 10.814 15.191 10.814 C 15.276 10.768 15.361 10.768 15.447 10.768" style="fill: rgb(216, 216, 216); fill-opacity: 0; stroke-linejoin: round; stroke: rgb(210, 117, 3); stroke-width: 1.5px;"/>
<path d="M 0.554 9.482 C 1.124 9.482 1.851 9.497 2.39 9.271 C 2.632 9.17 2.949 9.388 3.172 9.225 C 3.534 8.96 4.077 9.183 4.417 8.85 C 5.301 7.99 6.416 6.979 7.194 5.841 C 7.562 5.303 8.32 5.024 8.87 5.024 C 8.966 5.024 9.286 4.948 9.365 5.024 C 9.781 5.43 10.339 5.632 10.77 6.052 C 10.953 6.23 11.077 6.529 11.249 6.729 C 11.876 7.46 12.509 8.11 13.164 8.828 C 13.476 9.17 13.865 9.388 14.249 9.529 C 14.407 9.585 14.782 9.56 14.888 9.716 C 14.888 9.682 15.153 9.657 15.191 9.657 C 15.276 9.61 15.361 9.61 15.447 9.61" style="fill: rgb(216, 216, 216); fill-opacity: 0; stroke-linejoin: round; stroke: rgb(255, 140, 0); stroke-width: 1.5px;"/>
<path d="M 0.554 8.315 C 1.124 8.315 1.851 8.332 2.39 8.105 C 2.632 8.005 2.949 8.222 3.172 8.06 C 3.534 7.793 4.077 8.017 4.417 7.685 C 5.301 6.825 6.416 5.813 7.194 4.675 C 7.562 4.137 8.32 3.858 8.87 3.858 C 8.966 3.858 9.286 3.782 9.365 3.858 C 9.781 4.264 10.339 4.466 10.77 4.886 C 10.953 5.064 11.077 5.362 11.249 5.563 C 11.876 6.295 12.509 6.944 13.164 7.661 C 13.476 8.005 13.865 8.222 14.249 8.361 C 14.407 8.419 14.782 8.394 14.888 8.549 C 14.888 8.516 15.153 8.491 15.191 8.491 C 15.276 8.444 15.361 8.444 15.447 8.444" style="fill: rgb(216, 216, 216); fill-opacity: 0; stroke-linejoin: round; stroke: rgb(150, 84, 3); stroke-width: 1.5px;"/>
</svg>

After

Width:  |  Height:  |  Size: 3.5 KiB

View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M 15 1 L 1 1 L 0.462 1.538 L 0.462 12.308 L 1 12.846 L 6.924 12.846 L 6.924 13.923 L 3.693 13.923 L 3.693 15 L 12.308 15 L 12.308 13.923 L 9.077 13.923 L 9.077 12.846 L 15 12.846 L 15.539 12.308 L 15.539 1.538 L 15 1 Z M 14.462 11.769 L 1.539 11.769 L 1.539 2.077 L 14.462 2.077 L 14.462 11.769 Z" style="fill: rgb(144, 144, 144);"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M 7.258 6.673 L 7.258 2.689 L 8.741 2.689 L 8.741 6.673 L 10.09 5.33 L 11.244 6.479 L 8.338 9.374 L 7.662 9.374 L 4.756 6.479 L 5.91 5.33 Z" style="fill: rgb(251, 176, 0);"/>
<rect x="4.184" y="9.395" width="7.632" height="0.912" style="fill: rgb(137, 209, 133);"/>
</svg>

After

Width:  |  Height:  |  Size: 845 B

View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M 7.55 7.78 L 1.939 4.591 L 2.272 4.007 L 7.272 1.007 L 8.272 1.007 L 13.272 4.007 L 13.523 4.447 Z" style="fill: rgb(117, 190, 255);"/>
<path d="M 13.707 4.791 L 13.707 10.887 L 13.218 11.751 L 8.231 14.799 L 7.421 14.799 L 7.482 7.592 L 13.401 4.243 Z" style="fill: rgb(117, 190, 255);"/>
<polygon points="2.175 4.831 7.78 1.549" style="fill: rgb(137, 209, 133);"/>
<path d="M 2.333 11.792 L 1.826 10.924 L 1.826 4.796 L 2.034 4.436 L 7.534 7.605 C 7.534 7.605 7.487 12.944 7.441 14.821 Z" style="fill: rgb(117, 190, 255);"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M 14.373 11.184 C 14.092 11.454 13.874 11.753 13.721 12.084 C 13.575 12.414 13.5 12.771 13.5 13.157 L 13.5 14.45 C 13.5 14.595 13.473 14.733 13.416 14.859 C 13.36 14.988 13.282 15.1 13.183 15.193 C 13.086 15.289 12.972 15.363 12.84 15.417 C 12.709 15.473 12.566 15.5 12.418 15.5 L 11.084 15.5 C 10.935 15.5 10.793 15.473 10.662 15.417 C 10.531 15.363 10.415 15.289 10.317 15.193 C 10.219 15.1 10.143 14.988 10.086 14.859 C 10.031 14.733 10.001 14.595 10.001 14.45 L 10.001 13.157 C 10.001 12.771 9.924 12.414 9.774 12.084 C 9.625 11.754 9.412 11.454 9.131 11.184 C 8.769 10.839 8.489 10.452 8.294 10.024 C 8.098 9.596 8 9.131 8 8.633 C 8 8.299 8.044 7.977 8.134 7.667 C 8.221 7.359 8.348 7.068 8.512 6.8 C 8.675 6.528 8.871 6.283 9.097 6.062 C 9.324 5.842 9.577 5.652 9.854 5.493 C 10.135 5.336 10.435 5.214 10.755 5.126 C 11.075 5.042 11.406 5 11.752 5 C 12.095 5 12.426 5.042 12.746 5.126 C 13.065 5.214 13.364 5.336 13.642 5.493 C 13.922 5.652 14.177 5.842 14.403 6.062 C 14.632 6.283 14.826 6.528 14.991 6.8 C 15.152 7.068 15.278 7.358 15.369 7.667 C 15.457 7.977 15.5 8.299 15.5 8.633 C 15.5 9.131 15.404 9.596 15.207 10.024 C 15.012 10.452 14.733 10.839 14.373 11.184 Z M 12.669 12.672 L 10.832 12.672 L 10.832 14.45 C 10.832 14.517 10.855 14.573 10.906 14.621 C 10.959 14.67 11.015 14.695 11.084 14.695 L 12.418 14.695 C 12.485 14.695 12.544 14.67 12.595 14.621 C 12.646 14.573 12.669 14.517 12.669 14.45 L 12.669 12.672 Z" style="fill: rgb(144, 144, 144);"/>
</svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M 7.55 7.78 L 1.939 4.591 L 2.272 4.007 L 7.272 1.007 L 8.272 1.007 L 13.272 4.007 L 13.523 4.447 Z" style="fill: rgb(172, 216, 255);"/>
<path d="M 13.707 4.791 L 13.707 10.887 L 13.218 11.751 L 8.231 14.799 L 7.421 14.799 L 7.482 7.592 L 13.401 4.243 Z" style="fill: rgb(47, 157, 255);"/>
<polygon points="2.175 4.831 7.78 1.549" style="fill: rgb(137, 209, 133);"/>
<path d="M 2.333 11.792 L 1.826 10.924 L 1.826 4.796 L 2.034 4.436 L 7.534 7.605 C 7.534 7.605 7.487 12.944 7.441 14.821 Z" style="fill: rgb(144, 203, 255);"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M 14.361 11.184 C 14.079 11.454 13.863 11.754 13.712 12.084 C 13.564 12.414 13.49 12.771 13.49 13.157 L 13.49 14.45 C 13.49 14.595 13.462 14.732 13.405 14.861 C 13.349 14.987 13.272 15.099 13.174 15.194 C 13.077 15.289 12.962 15.362 12.832 15.417 C 12.7 15.473 12.559 15.5 12.41 15.5 L 11.078 15.5 C 10.928 15.5 10.788 15.473 10.656 15.417 C 10.525 15.362 10.411 15.289 10.313 15.194 C 10.215 15.099 10.139 14.987 10.082 14.861 C 10.025 14.732 9.998 14.595 9.998 14.45 L 9.998 13.157 C 9.998 12.771 9.921 12.414 9.771 12.084 C 9.622 11.755 9.408 11.454 9.128 11.184 C 8.768 10.838 8.488 10.452 8.294 10.024 C 8.098 9.596 8 9.132 8 8.633 C 8 8.299 8.045 7.978 8.133 7.668 C 8.222 7.359 8.349 7.07 8.51 6.8 C 8.674 6.529 8.869 6.283 9.096 6.063 C 9.323 5.843 9.575 5.653 9.85 5.495 C 10.131 5.336 10.431 5.215 10.75 5.128 C 11.069 5.042 11.4 5 11.744 5 C 12.087 5 12.419 5.042 12.739 5.128 C 13.056 5.215 13.354 5.336 13.631 5.495 C 13.91 5.653 14.166 5.843 14.392 6.063 C 14.619 6.283 14.814 6.529 14.976 6.8 C 15.14 7.07 15.265 7.358 15.355 7.668 C 15.443 7.978 15.486 8.299 15.486 8.633 C 15.486 9.132 15.39 9.596 15.194 10.024 C 14.998 10.452 14.72 10.838 14.361 11.184 Z M 12.661 12.672 L 10.827 12.672 L 10.827 14.45 C 10.827 14.516 10.85 14.572 10.901 14.622 C 10.953 14.67 11.009 14.695 11.078 14.695 L 12.41 14.695 C 12.477 14.695 12.535 14.67 12.586 14.622 C 12.638 14.572 12.661 14.516 12.661 14.45 L 12.661 12.672 Z" fill="#FFCC00" style=""/>
</svg>

After

Width:  |  Height:  |  Size: 2.1 KiB

View File

@ -0,0 +1,37 @@
<?xml version="1.0" encoding="utf-8"?>
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<polygon points="1.024 8.814 1.049 22.827 17.01 22.9 17.036 8.814" style="stroke-opacity: 0.2; fill-opacity: 0.2; fill: rgb(255, 255, 255);"/>
<polygon points="0.949 8.838 17.037 8.814 22.912 1.65 7.494 1.747" style="stroke-opacity: 0.2; fill-opacity: 0.2; fill: rgb(255, 255, 255);"/>
<line style="stroke: rgb(0, 0, 0); stroke-opacity: 0.2; fill-opacity: 0.2;" x1="8.191" y1="8.403" x2="8.191" y2="8.403"/>
<rect x="-6.267" y="-2.75" width="0.225" height="0.038" style="fill: rgb(216, 216, 216); stroke-opacity: 0.2; fill-opacity: 0.2;"/>
<polygon points="17.012 22.888 17.012 8.789 22.836 1.645 22.836 14.026" style="stroke-opacity: 0.2; fill-opacity: 0.2; fill: rgb(255, 255, 255);"/>
<g transform="matrix(0.963485, 0, 0, 0.961045, -52.125736, 1.442423)" style="">
<g transform="matrix(1.134672, 0, 0, 1, 13.970593, -0.152153)" style="">
<g transform="matrix(1, 0, 0, 1, 4.056296, -0.152153)">
<g transform="matrix(1, 0, 0, 1, 13.604543, -0.22823)">
<g>
<rect y="7.555" width="14.603" height="14.338" style="stroke-width: 0.7px; fill: rgb(162, 162, 162); stroke: rgb(144, 144, 144); stroke-opacity: 0.1; fill-opacity: 0.1;" x="0.557" transform="matrix(0.999998, -0.001875, 0.001875, 0.999998, 17.813007, 0.94766)"/>
<line style="stroke-width: 0.7px; fill: rgb(162, 162, 162); stroke: rgb(144, 144, 144); stroke-opacity: 0.1; fill-opacity: 0.1;" x1="35.791" y1="4.668" x2="21.162" y2="4.771"/>
<polygon style="stroke-width: 0.7px; fill: rgb(162, 162, 162); stroke: rgb(144, 144, 144); stroke-opacity: 0.1; fill-opacity: 0.1;" points="18.423 23.143 18.397 8.145 24.38 1.131 38.479 1.08 38.532 13.553 33.187 23.042"/>
</g>
<line style="stroke-width: 0.7px; fill: rgb(162, 162, 162); stroke: rgb(144, 144, 144); stroke-opacity: 0.1; fill-opacity: 0.1;" x1="33.014" y1="15.382" x2="38.532" y2="7.318"/>
<line style="stroke-width: 0.7px; fill: rgb(162, 162, 162); stroke: rgb(144, 144, 144); stroke-opacity: 0.1; fill-opacity: 0.1;" x1="30.802" y1="1.068" x2="25.613" y2="8.463" transform="matrix(0.999992, -0.004574, 0.003694, 0.999992, -0.017364, 0.129062)"/>
</g>
<line style="stroke-width: 0.7px; fill: rgb(162, 162, 162); stroke: rgb(144, 144, 144); stroke-opacity: 0.2; fill-opacity: 0.2;" x1="39.197" y1="8.247" x2="39.23" y2="22.612"/>
<line style="stroke-width: 0.7px; fill: rgb(162, 162, 162); stroke: rgb(144, 144, 144); stroke-opacity: 0.2; fill-opacity: 0.2;" x1="31.989" y1="15.176" x2="46.619" y2="15.154"/>
<line style="stroke-width: 0.7px; fill: rgb(162, 162, 162); stroke: rgb(144, 144, 144); stroke-opacity: 0.2; fill-opacity: 0.2;" x1="49.652" y1="17.741" x2="49.551" y2="4.402"/>
<line style="stroke-width: 0.7px; fill: rgb(162, 162, 162); stroke: rgb(144, 144, 144); stroke-opacity: 0.2; fill-opacity: 0.2;" x1="46.619" y1="8.247" x2="52.137" y2="0.852"/>
<line style="stroke: rgb(0, 0, 0);" x1="38.533" y1="8.903" x2="38.533" y2="8.903"/>
<polygon points="32.878 17.233 32.878 13.832 38.955 12.11 38.955 15.096" style="fill: rgb(255, 0, 0); stroke: rgb(144, 144, 144); stroke-width: 0.72px;"/>
<polygon points="32.884 14.604 32.885 11.808 38.963 10.392 38.963 12.847" style="fill: rgb(0, 85, 255); stroke: rgb(144, 144, 144); stroke-width: 0.72px;"/>
<polygon points="38.97 11.683 38.97 8.874 45.046 7.451 45.046 9.919" style="fill: rgb(0, 85, 255); stroke: rgb(144, 144, 144); stroke-width: 0.72px;"/>
<polygon points="38.97 14.205 38.97 11.049 45.046 9.45 45.046 12.221" style="fill: rgb(255, 0, 0); stroke: rgb(144, 144, 144); stroke-width: 0.72px;"/>
<polygon points="45.08 9.754 45.08 6.38 51.156 4.67 51.156 7.634" style="fill: rgb(0, 85, 255); stroke: rgb(144, 144, 144); stroke-width: 0.72px;"/>
<polygon points="45.106 11.469 45.106 8.855 51.156 7.53 51.156 9.827" style="fill: rgb(255, 0, 0); stroke: rgb(144, 144, 144); stroke-width: 0.72px;"/>
<polygon points="32.914 18.27 32.914 15.964 38.938 14.796 38.938 16.821" style="fill: rgb(255, 119, 0); stroke: rgb(144, 144, 144); stroke-width: 0.72px;"/>
<polygon points="38.97 16.445 38.97 13.586 45.046 12.136 45.046 14.649" style="fill: rgb(255, 119, 0); stroke: rgb(144, 144, 144); stroke-width: 0.72px;"/>
<polygon points="45.107 13.778 45.107 10.777 51.156 9.256 51.156 11.892" style="fill: rgb(255, 119, 0); stroke: rgb(144, 144, 144); stroke-width: 0.72px;"/>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.5 KiB

View File

@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M 14 4.86 L 14 10.86 L 13.51 11.71 L 8.51 14.71 L 7.51 14.71 L 2.51 11.71 L 2.02 10.86 L 2.02 4.86 L 2.51 4 L 7.51 1 L 8.51 1 L 13.51 4 Z M 13.01 5.7 L 8.51 8.15 L 8.51 13.56 L 13.01 10.86 Z M 8.01 7.29 L 12.75 4.7 L 8.01 1.86 L 3.27 4.7 Z M 7.51 8.15 L 3.01 5.7 L 3.01 10.86 L 7.51 13.56 Z" style="fill: rgb(144, 144, 144);"/>
</svg>

After

Width:  |  Height:  |  Size: 480 B

View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M 13.51 4 L 8.51001 1 L 7.51001 1 L 2.51001 4 L 2.02002 4.85999 L 2.02002 10.86 L 2.51001 11.71 L 7.51001 14.71 L 8.51001 14.71 L 13.51 11.71 L 14 10.86 L 14 4.85999 L 13.51 4 Z" style="fill: rgb(144, 144, 144);"/>
<path d="M 13.01 10.86 L 8.51001 13.5601 L 8.51001 8.15002 L 13.01 5.69995 L 13.01 10.86 Z" style="fill: rgb(117, 190, 255);"/>
<path d="M 3.27002 4.69995 L 8.01001 1.8599900000000003 L 12.75 4.69995 L 8.01001 7.29004 L 3.27002 4.69995 Z" style="fill: rgb(117, 190, 255);"/>
<path d="M 7.51001 13.5601 L 3.01001 10.86 L 3.01001 5.69995 L 7.51001 8.15002 L 7.51001 13.5601 Z" style="fill: rgb(117, 190, 255);"/>
<polygon points="2.485 4.658 8.09 1.376" style="fill: rgb(137, 209, 133);"/>
</svg>

After

Width:  |  Height:  |  Size: 863 B

View File

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M 7.55 7.78 L 1.939 4.591 L 2.272 4.007 L 7.272 1.007 L 8.272 1.007 L 13.272 4.007 L 13.523 4.447 Z" style="fill: rgb(172, 216, 255);"/>
<path d="M 13.707 4.791 L 13.707 10.887 L 13.218 11.751 L 8.231 14.799 L 7.421 14.799 L 7.482 7.592 L 13.401 4.243 Z" style="fill: rgb(47, 157, 255);"/>
<polygon points="2.175 4.831 7.78 1.549" style="fill: rgb(137, 209, 133);"/>
<path d="M 2.333 11.792 L 1.826 10.924 L 1.826 4.796 L 2.034 4.436 L 7.534 7.605 C 7.534 7.605 7.487 12.944 7.441 14.821 Z" style="fill: rgb(144, 203, 255);"/>
</svg>

After

Width:  |  Height:  |  Size: 685 B

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 805 KiB

View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M 10 14.5 L 9.5 15 L 1.5 15 L 1 14.5 L 1 7.5 L 1.5 7 L 4.442 7 L 4.442 8 L 2 8 L 2 9 L 4.442 9 L 4.442 10 L 2 10 L 2 14 L 9 14 L 9 10.656 L 10 10.656 Z" style="fill: rgb(144, 144, 144);"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M 6 1.5 L 6.5 1 L 14.5 1 L 15 1.5 L 15 8.5 L 14.5 9 L 12 9 L 12 8 L 14 8 L 14 4 L 7 4 L 7 5 L 6 5 Z M 7 2 L 7 3 L 14 3 L 14 2 Z" style="fill: rgb(144, 144, 144);"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M 6.264 5.292 L 7.748 5.292 C 8.182 5.292 8.598 5.471 8.906 5.786 C 9.212 6.098 9.384 6.526 9.384 6.971 L 9.384 7.072 C 9.384 7.517 9.211 7.944 8.905 8.259 C 8.598 8.572 8.182 8.748 7.748 8.748 L 7.515 8.748 L 7.515 8.255 L 7.748 8.255 C 8.054 8.255 8.346 8.13 8.562 7.907 C 8.778 7.687 8.9 7.388 8.901 7.074 L 8.901 6.971 C 8.901 6.657 8.78 6.356 8.565 6.136 C 8.349 5.912 8.056 5.788 7.75 5.787 L 6.264 5.787 C 5.957 5.787 5.663 5.911 5.447 6.135 C 5.339 6.244 5.255 6.374 5.196 6.517 C 5.139 6.662 5.109 6.815 5.109 6.971 L 5.109 7.072 C 5.109 7.351 5.206 7.621 5.382 7.835 C 5.559 8.046 5.803 8.19 6.072 8.235 L 6.072 8.728 C 5.674 8.68 5.311 8.486 5.045 8.182 C 4.779 7.876 4.631 7.484 4.626 7.074 L 4.626 6.971 C 4.627 6.526 4.8 6.099 5.108 5.786 C 5.413 5.471 5.83 5.293 6.264 5.292 Z M 9.922 7.288 L 9.922 6.794 C 10.318 6.841 10.683 7.035 10.95 7.342 C 11.216 7.647 11.364 8.042 11.365 8.452 L 11.365 8.552 C 11.364 8.996 11.191 9.423 10.886 9.736 C 10.579 10.05 10.164 10.228 9.732 10.229 L 8.244 10.229 C 7.811 10.229 7.396 10.05 7.09 9.74 C 6.784 9.424 6.612 8.999 6.611 8.555 L 6.611 8.452 C 6.611 8.007 6.783 7.58 7.089 7.266 C 7.394 6.95 7.811 6.774 8.244 6.773 L 8.477 6.773 L 8.477 7.267 L 8.244 7.267 C 7.938 7.267 7.645 7.395 7.43 7.615 C 7.213 7.837 7.091 8.14 7.091 8.452 L 7.091 8.552 C 7.093 8.866 7.214 9.166 7.43 9.388 C 7.645 9.609 7.94 9.734 8.244 9.734 L 9.732 9.734 C 10.036 9.734 10.329 9.609 10.545 9.388 C 10.76 9.167 10.882 8.869 10.885 8.555 L 10.885 8.452 C 10.885 8.173 10.787 7.903 10.61 7.688 C 10.435 7.475 10.19 7.332 9.922 7.288 Z" style="fill: rgb(255, 217, 0);"/>
</svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 805 KiB

View File

@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M 15.01 3.001 L 15.01 14.669 L 14.51 15.252 L 1.51 15.252 L 1.01 14.669 L 1.01 1.835 L 1.51 1.252 L 6.51 1.252 L 6.86 1.427 L 7.71 2.418 L 14.5 2.418 Z M 14 7.657 L 14 5.907 L 13.999 5.907 L 13.999 4.056 L 13.996 4.056 L 14 3.597 L 7.5 3.597 L 7.14 3.422 L 6.29 2.43 L 2 2.43 L 2 7.086 L 1.99 7.086 L 1.99 14.086 L 13.99 14.086 L 13.99 12.325 Z" style="fill: rgb(144, 144, 144);"/>
<path d="M 10.379 10.001 L 10.867 10.001 L 12.693 8.114 L 12.693 7.613 L 11.776 6.673 L 11.297 6.673 L 10.051 7.952 L 6.632 7.952 L 6.632 7.068 L 7.902 5.759 L 7.902 5.259 L 6.536 3.844 L 6.042 3.844 L 3.307 6.673 L 3.307 7.174 L 4.675 8.588 L 5.159 8.588 L 5.94 7.775 L 5.94 11.87 L 6.283 12.221 L 9.464 12.221 L 9.464 12.589 L 10.373 13.536 L 10.859 13.536 L 12.687 11.65 L 12.687 11.146 L 11.767 10.207 L 11.291 10.207 L 10.018 11.513 L 6.597 11.513 L 6.597 8.687 L 9.464 8.687 L 9.464 9.024 L 10.379 10.001 Z M 11.536 7.422 L 11.966 7.868 L 10.6 9.281 L 10.169 8.835 L 11.536 7.422 Z M 11.536 10.956 L 11.966 11.402 L 10.6 12.815 L 10.169 12.371 L 11.536 10.956 Z M 4.914 7.838 L 4.032 6.918 L 6.283 4.594 L 7.172 5.504 L 4.914 7.838 Z" fill="#EE9D28" style=""/>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M 15 1 L 1 1 L 0.462 1.538 L 0.462 12.308 L 1 12.846 L 6.924 12.846 L 6.924 13.923 L 3.693 13.923 L 3.693 15 L 12.308 15 L 12.308 13.923 L 9.077 13.923 L 9.077 12.846 L 15 12.846 L 15.539 12.308 L 15.539 1.538 L 15 1 Z M 14.462 11.769 L 1.539 11.769 L 1.539 2.077 L 14.462 2.077 L 14.462 11.769 Z" style="fill: rgb(144, 144, 144);"/>
<line style="fill: rgb(253, 194, 93); stroke: rgb(157, 203, 226);" x1="6.217" y1="2.479" x2="6.217" y2="11.068"/>
<line style="fill: rgb(157, 203, 226); stroke: rgb(157, 203, 226);" x1="9.783" y1="11.068" x2="9.783" y2="2.479" transform="matrix(-1, 0, 0, -1, 19.566, 13.547)"/>
</svg>

After

Width:  |  Height:  |  Size: 808 B

View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M 10.952 3.091 L 15.09 3.091 L 15.636 3.636 L 15.636 13.455 L 15.09 14 L 0.908 14 L 0.363 13.455 L 0.363 3.636 L 0.908 3.091 L 5.046 3.091 L 5.977 2.159 L 6.363 2 L 9.636 2 L 10.022 2.159 L 10.952 3.091 Z M 1.454 12.909 L 14.545 12.909 L 14.545 4.182 L 10.727 4.182 L 10.34 4.023 L 9.41 3.091 L 6.589 3.091 L 5.658 4.023 L 5.272 4.182 L 1.454 4.182 L 1.454 12.909 Z M 3.09 5.273 C 2.982 5.273 2.877 5.305 2.787 5.365 C 2.698 5.425 2.628 5.51 2.586 5.609 C 2.545 5.709 2.534 5.819 2.555 5.925 C 2.576 6.03 2.628 6.128 2.705 6.204 C 2.781 6.28 2.878 6.332 2.984 6.353 C 3.09 6.374 3.199 6.363 3.299 6.322 C 3.399 6.281 3.484 6.211 3.544 6.121 C 3.604 6.032 3.636 5.926 3.636 5.818 C 3.636 5.674 3.578 5.535 3.476 5.432 C 3.374 5.33 3.235 5.273 3.09 5.273 Z M 7.999 6.364 C 8.431 6.364 8.853 6.492 9.212 6.731 C 9.57 6.971 9.85 7.312 10.015 7.711 C 10.18 8.109 10.223 8.548 10.139 8.971 C 10.055 9.394 9.847 9.783 9.542 10.088 C 9.237 10.393 8.848 10.601 8.425 10.685 C 8.002 10.769 7.563 10.726 7.164 10.561 C 6.766 10.396 6.425 10.116 6.185 9.758 C 5.946 9.399 5.818 8.977 5.818 8.545 C 5.818 7.967 6.047 7.412 6.457 7.003 C 6.866 6.594 7.421 6.364 7.999 6.364 Z M 7.999 5.273 C 7.352 5.273 6.719 5.465 6.181 5.824 C 5.643 6.184 5.223 6.695 4.976 7.293 C 4.728 7.891 4.663 8.549 4.79 9.184 C 4.916 9.819 5.227 10.402 5.685 10.86 C 6.143 11.317 6.726 11.629 7.361 11.755 C 7.996 11.882 8.654 11.817 9.252 11.569 C 9.85 11.321 10.361 10.902 10.721 10.364 C 11.08 9.825 11.272 9.193 11.272 8.545 C 11.272 7.677 10.927 6.845 10.314 6.231 C 9.7 5.618 8.867 5.273 7.999 5.273 Z" style="fill: rgb(144, 144, 144);"/>
<text style="font-size: 36; font-family: Roboto; white-space: pre;" transform="matrix(1, 0, 0, 1, -57.601505, 19.319807)">#ae4e97</text>
<path fill-rule="evenodd" clip-rule="evenodd" d="M 15.135 8.055 L 15.614 8.594 L 15.614 15.046 L 15.135 15.586 L 4.592 15.586 L 4.113 15.046 L 4.113 8.594 L 4.592 8.055 Z M 14.655 9.13 L 5.07 9.13 L 5.07 14.51 L 14.655 14.51 Z" style="fill: rgb(255, 0, 0);"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M 14.637 9.129 L 5.052 9.129 L 5.052 14.509 L 14.637 14.509 L 14.637 9.129 Z" style="fill: rgb(255, 255, 255); fill-opacity: 0.8;"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M 13.602 12.187 L 12.673 12.187 L 12.673 13.434 L 12.02 13.434 L 12.02 10.208 L 13.687 10.208 L 13.687 10.798 L 12.673 10.798 L 12.673 11.596 L 13.602 11.596 L 13.602 12.187 Z" style="fill: rgb(255, 0, 0);"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M 10.306 13.334 C 10.116 13.411 9.913 13.444 9.711 13.434 L 8.694 13.434 L 8.694 10.208 L 9.711 10.208 C 10.737 10.208 11.244 10.701 11.244 11.777 C 11.254 11.999 11.22 12.222 11.148 12.431 C 11.073 12.638 10.963 12.826 10.821 12.983 C 10.671 13.136 10.497 13.255 10.306 13.334 Z M 9.662 12.842 C 9.784 12.849 9.904 12.826 10.018 12.779 C 10.132 12.732 10.235 12.657 10.323 12.563 C 10.491 12.35 10.578 12.073 10.563 11.787 C 10.569 11.656 10.551 11.525 10.51 11.401 C 10.468 11.276 10.405 11.163 10.323 11.067 C 10.233 10.975 10.128 10.903 10.014 10.855 C 9.896 10.81 9.775 10.792 9.653 10.798 L 9.336 10.798 L 9.336 12.842 Z" style="fill: rgb(255, 0, 0);"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M 6.989 12.359 L 6.682 12.359 L 6.682 13.434 L 6.029 13.434 L 6.029 10.208 L 7.045 10.208 C 7.765 10.208 8.129 10.595 8.129 11.283 C 8.13 11.428 8.104 11.574 8.052 11.708 C 7.998 11.842 7.92 11.96 7.823 12.058 C 7.584 12.266 7.29 12.372 6.989 12.359 Z M 6.931 10.798 L 6.682 10.798 L 6.682 11.8 L 6.931 11.8 C 7.276 11.8 7.447 11.628 7.447 11.293 C 7.447 10.96 7.276 10.798 6.931 10.798 Z" style="fill: rgb(255, 0, 0);"/>
</svg>

After

Width:  |  Height:  |  Size: 3.7 KiB

View File

@ -0,0 +1,16 @@
<?xml version="1.0" encoding="utf-8"?>
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient gradientUnits="userSpaceOnUse" x1="5.949" y1="3.512" x2="5.949" y2="11.277" id="gradient-0" gradientTransform="matrix(1.00882, 0.376893, -0.390603, 1.060002, 3.079717, -3.261176)">
<stop offset="0" style="stop-color: rgb(209, 229, 238);"/>
<stop offset="1" style="stop-color: rgb(128, 192, 224);"/>
</linearGradient>
<linearGradient gradientUnits="userSpaceOnUse" x1="9.614" y1="3.582" x2="9.614" y2="11.225" id="gradient-1" gradientTransform="matrix(1.068376, 0.135417, -0.13514, 1.086787, 0.983697, -2.566455)">
<stop offset="0" style="stop-color: rgb(199, 229, 244);"/>
<stop offset="1" style="stop-color: rgb(102, 183, 223);"/>
</linearGradient>
</defs>
<path fill-rule="evenodd" clip-rule="evenodd" d="M 15 1 L 1 1 L 0.462 1.538 L 0.462 12.308 L 1 12.846 L 6.924 12.846 L 6.924 13.923 L 3.693 13.923 L 3.693 15 L 12.308 15 L 12.308 13.923 L 9.077 13.923 L 9.077 12.846 L 15 12.846 L 15.539 12.308 L 15.539 1.538 L 15 1 Z M 14.462 11.769 L 1.539 11.769 L 1.539 2.077 L 14.462 2.077 L 14.462 11.769 Z" style="fill: rgb(144, 144, 144);"/>
<polygon points="3.393 10.991 7.457 2.628 8.189 2.628 5.882 10.991" style="fill: url(#gradient-0);"/>
<polygon points="10.91 2.704 11.017 10.934 8.458 10.935 10.427 2.723" style="fill: url(#gradient-1);"/>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M 11 1.5 L 11 11.5 L 11.5 12 L 13.5 12 L 14 11.5 L 14 1.5 L 13.5 1 L 11.5 1 L 11 1.5 Z" style="fill: rgb(144, 144, 144);"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M 7 11.5 L 7 5.5 L 7.5 5 L 9.5 5 L 10 5.5 L 10 11.5 L 9.5 12 L 7.5 12 L 7 11.5 Z" style="fill: rgb(144, 144, 144);"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M 3 11.5 L 3 3.5 L 3.5 3 L 5.5 3 L 6 3.5 L 6 11.5 L 5.5 12 L 3.5 12 L 3 11.5 Z" style="fill: rgb(144, 144, 144);"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M 1.5 14 L 15 14 L 15 13 L 2 13 L 2 0 L 1 0 L 1 13.5 L 1.5 14 Z" style="fill: rgb(144, 144, 144);"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M 9.24 11.269 L 9.24 5.661 L 7.704 5.661 L 7.704 11.269 L 9.24 11.269 Z" style="fill: rgb(137, 209, 133);"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M 13.184 1.704 L 13.184 11.325 L 11.76 11.325 L 11.76 1.704 L 13.184 1.704 Z" style="fill: rgb(174, 78, 151);"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M 5.254 11.311 L 5.254 3.732 L 3.718 3.732 L 3.718 11.311 L 5.254 11.311 Z" style="fill: rgb(117, 190, 255);"/>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -5,7 +5,7 @@
<file>2DMaps16x16.png</file>
<file>3DView16x16.png</file>
<file>3DViewGeoMech16x16.png</file>
<file>3DWindow24x24.png</file>
<file>3DWindow.svg</file>
<file>AICDValve16x16.png</file>
<file>Annotations16x16.png</file>
<file>AnalysisPlot16x16.png</file>
@ -14,6 +14,8 @@
<file>AppLogo48x48.png</file>
<file>Axes16x16.png</file>
<file>BottomAxis16x16.png</file>
<file>CascadeWindows.svg</file>
<file>Case.svg</file>
<file>Cases16x16.png</file>
<file>Case24x24.png</file>
<file>Case48x48.png</file>
@ -39,8 +41,8 @@
<file>CrossSection16x16.png</file>
<file>CrossSections16x16.png</file>
<file>CumulativePhaseDist16x16.png</file>
<file>DownViewArrow.png</file>
<file>EastViewArrow.png</file>
<file>DownView.svg</file>
<file>EastView.svg</file>
<file>EclipseInput48x48.png</file>
<file>EdgeResult_1.png</file>
<file>EditableWell.png</file>
@ -84,12 +86,11 @@
<file>LasFile16x16.png</file>
<file>LeftAxis16x16.png</file>
<file>Legend.png</file>
<file>LinkView16x16.png</file>
<file>LinkView24x24.png</file>
<file>LinkView.svg</file>
<file>MainGrid16x16.png</file>
<file>MasterView16x16.png</file>
<file>Minus.png</file>
<file>NorthViewArrow.png</file>
<file>NorthView.svg</file>
<file>MultiPlot16x16.png</file>
<file>ObservedCSVDataFile16x16.png</file>
<file>ObservedDataFile16x16.png</file>
@ -97,12 +98,12 @@
<file>ObservedRSMDataFile16x16.png</file>
<file>OctaveScriptFile16x16.png</file>
<file>PagePreview16x16.png</file>
<file>PdfSave.png</file>
<file>Parallel24x24.png</file>
<file>PdfSave.svg</file>
<file>Parallel.svg</file>
<file>PerforationInterval16x16.png</file>
<file>PerforationIntervals16x16.png</file>
<file>Perspective24x24.png</file>
<file>PlotWindow24x24.png</file>
<file>Perspective.svg</file>
<file>PlotWindow.svg</file>
<file>Plus.png</file>
<file>PolylinesFromFile16x16.png</file>
<file>PythonScriptFile16x16.png</file>
@ -119,25 +120,23 @@
<file>Rows3.png</file>
<file>Rows4.png</file>
<file>RightAxis16x16.png</file>
<file>Ruler24x24.png</file>
<file>RulerPoly24x24.png</file>
<file>Save24x24.png</file>
<file>SaveAs24x24.png</file>
<file>SnapShot.png</file>
<file>SnapShotSave.png</file>
<file>SnapShotSaveViews.png</file>
<file>SouthViewArrow.png</file>
<file>Ruler.svg</file>
<file>RulerPoly.svg</file>
<file>Save.svg</file>
<file>SaveAs.svg</file>
<file>SnapShot.svg</file>
<file>SnapShotSave.svg</file>
<file>SnapShotSaveViews.svg</file>
<file>SouthView.svg</file>
<file>SplitterH.png</file>
<file>SplitterV.png</file>
<file>StepUpDown16x16.png</file>
<file>StepUpDownCorner16x16.png</file>
<file>SummaryCase16x16.png</file>
<file>SummaryCase48x48.png</file>
<file>SummaryCase.svg</file>
<file>SummaryCases16x16.png</file>
<file>SummaryCurve16x16.png</file>
<file>SummaryCurveFilter16x16.png</file>
<file>SummaryEnsemble16x16.png</file>
<file>SummaryEnsemble24x24.png</file>
<file>SummaryEnsemble.svg</file>
<file>SummaryGroup16x16.png</file>
<file>SummaryPlotLight16x16.png</file>
<file>SummaryPlots16x16.png</file>
@ -149,13 +148,13 @@
<file>TOFAccSatPlot16x16.png</file>
<file>TempLGR16x16.png</file>
<file>TextAnnotation16x16.png</file>
<file>TileWindows24x24.png</file>
<file>TileWindows.svg</file>
<file>ToggleOff16x16.png</file>
<file>ToggleOn16x16.png</file>
<file>ToggleOnOff16x16.png</file>
<file>ToggleOnOthersOff16x16.png</file>
<file>UnLinkView16x16.png</file>
<file>UpViewArrow.png</file>
<file>UnLinkView.svg</file>
<file>UpView.svg</file>
<file>Well.png</file>
<file>WellAllocLegend16x16.png</file>
<file>WellAllocPie16x16.png</file>
@ -173,10 +172,10 @@
<file>WellTargetPoint16x16.png</file>
<file>WellTargetPointTangent16x16.png</file>
<file>WellTargets.png</file>
<file>WestViewArrow.png</file>
<file>WestView.svg</file>
<file>Window16x16.png</file>
<file>ZoomAll16x16.png</file>
<file>calculator.png</file>
<file>ZoomAll.svg</file>
<file>Calculator.svg</file>
<file>chain.png</file>
<file>clipboard.png</file>
<file>disable_lighting_24x24.png</file>
@ -187,8 +186,13 @@
<file>draw_style_meshlines_24x24.png</file>
<file>draw_style_surface_24x24.png</file>
<file>draw_style_surface_w_fault_mesh_24x24.png</file>
<file>DrawStyleLines.svg</file>
<file>DrawStyleMeshLines.svg</file>
<file>DrawStyleSurface.svg</file>
<file>DrawLightingEnabled.svg</file>
<file>DrawLightingDisabled.svg</file>
<file>octave.png</file>
<file>openFolder24x24.png</file>
<file>OpenFolder.svg</file>
<file>statistics.png</file>
<file>themes/dark.qss</file>
<file>themes/default.qss</file>
@ -209,7 +213,8 @@
<file>themes/dark/checkbox-unchecked-disabled-20x20.png</file>
<file>themes/dark/checkbox-checked-disabled-20x20.png</file>
<file>themes/dark/checkbox-indeterminate-disabled-20x20.png</file>
<file>SummaryCase24x24.png</file>
<file>themes/dark/gripper.svg</file>
<file>themes/light/gripper.svg</file>
<file>themes/dark/checkbox-checked.svg</file>
<file>themes/dark/checkbox-checked-disabled.svg</file>
<file>themes/dark/checkbox-unchecked.svg</file>

View File

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="utf-8"?>
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient gradientUnits="userSpaceOnUse" x1="9.854" y1="1" x2="9.854" y2="15" id="gradient-0">
<stop offset="0" style="stop-color: rgb(223, 223, 223);"/>
<stop offset="1" style="stop-color: rgb(223, 223, 223);"/>
</linearGradient>
</defs>
<g transform="matrix(1.157394, 0, 0, 1, 1.260791, 0)">
<rect x="2.548" y="1" width="0.974" height="14" style="fill: rgb(117, 190, 255);"/>
</g>
<rect x="3.803" y="1" width="1.995" height="1.919" style="fill: rgb(117, 190, 255);"/>
<rect x="3.803" y="13.023" width="1.995" height="1.977" style="fill: rgb(117, 190, 255);"/>
<rect x="7.51" y="1" width="4.687" height="14" style="stroke: rgb(144, 144, 144); fill-opacity: 0.8; fill: url(#gradient-0);"/>
<line style="fill: rgb(253, 194, 93); stroke: rgb(144, 144, 144);" x1="7.51" y1="13.023" x2="9.543" y2="13.023"/>
<line style="fill: rgb(253, 194, 93); stroke: rgb(144, 144, 144);" x1="7.51" y1="2.919" x2="9.543" y2="2.919"/>
<line style="fill: rgb(253, 194, 93); stroke: rgb(144, 144, 144);" x1="7.51" y1="8.007" x2="9.543" y2="7.993"/>
<line style="fill: rgb(253, 194, 93); stroke: rgb(144, 144, 144);" x1="7.51" y1="5.377" x2="9.543" y2="5.377"/>
<line style="fill: rgb(253, 194, 93); stroke: rgb(144, 144, 144);" x1="7.524" y1="10.431" x2="9.557" y2="10.431"/>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -0,0 +1,29 @@
<?xml version="1.0" encoding="utf-8"?>
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient gradientUnits="userSpaceOnUse" x1="11.073" y1="1" x2="11.073" y2="15" id="gradient-0">
<stop offset="0" style="stop-color: rgb(255, 255, 255);"/>
<stop offset="1" style="stop-color: rgb(223, 223, 223);"/>
</linearGradient>
</defs>
<rect x="8.73" y="1" width="4.687" height="14" style="stroke: rgb(144, 144, 144); fill-opacity: 0.8; fill: url(#gradient-0);"/>
<line style="fill: rgb(253, 194, 93); stroke: rgb(144, 144, 144);" x1="8.73" y1="13.023" x2="10.763" y2="13.023"/>
<line style="fill: rgb(253, 194, 93); stroke: rgb(144, 144, 144);" x1="8.73" y1="2.919" x2="10.763" y2="2.919"/>
<line style="fill: rgb(253, 194, 93); stroke: rgb(144, 144, 144);" x1="8.73" y1="8.007" x2="10.763" y2="7.993"/>
<line style="fill: rgb(253, 194, 93); stroke: rgb(144, 144, 144);" x1="8.73" y1="5.377" x2="10.763" y2="5.377"/>
<line style="fill: rgb(253, 194, 93); stroke: rgb(144, 144, 144);" x1="8.73" y1="10.431" x2="10.763" y2="10.431"/>
<g transform="matrix(1, 0, 0, 0.904566, 0.93656, 0.769834)" style="">
<g transform="matrix(1, 0, 0, 0.96601, 0, -0.353146)" style="">
<rect x="1.829" y="5.818" width="1.93" height="1.98" style="fill: rgb(117, 190, 255);" transform="matrix(0.999783, 0.020817, 0.020817, -0.999783, -0.303515, 12.570394)"/>
<rect x="-1.822" y="-5.583" width="1.923" height="1.9" style="fill: rgb(117, 190, 255);" transform="matrix(0.999919, 0.012709, -0.004193, -1.000134, 6.551228, -3.031367)"/>
<rect x="3.289" y="2.695" width="1.043" height="4.491" style="fill: rgb(117, 190, 255);" transform="matrix(0.846425, 0.532508, 0.590974, -0.809643, -2.037156, 5.848013)"/>
<rect x="2.174" y="6.073" width="0.964" height="3.247" style="fill: rgb(117, 190, 255);"/>
</g>
<g transform="matrix(1, 0, 0, -1, 0, 16.360456)">
<rect x="1.829" y="5.818" width="1.93" height="1.98" style="fill: rgb(117, 190, 255);" transform="matrix(0.999783, 0.020817, 0.020817, -0.999783, -0.303515, 12.570394)"/>
<rect x="-1.822" y="-5.583" width="1.923" height="1.9" style="fill: rgb(117, 190, 255);" transform="matrix(0.999919, 0.012709, -0.004193, -1.000134, 6.551228, -3.031367)"/>
<rect x="3.289" y="2.695" width="1.043" height="4.491" style="fill: rgb(117, 190, 255);" transform="matrix(0.846425, 0.532508, 0.590974, -0.809643, -2.037156, 5.848013)"/>
<rect x="2.174" y="6.073" width="0.964" height="3.247" style="fill: rgb(117, 190, 255);"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.5 KiB

View File

@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M13.353 1.146L14.853 2.646L15 3V14.5L14.5 15H1.5L1 14.5V1.5L1.5 1H13L13.353 1.146ZM2 2V14H14V3.208L12.793 2H11V6H4V2H2ZM8 2V5H10V2H8Z" style="fill: rgb(144, 144, 144);"/>
</svg>

After

Width:  |  Height:  |  Size: 363 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.1 KiB

View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.04 1.32996L12.71 3L13 3.70996V4.04004H12.5L12 4.54004V3.70996L10.33 2.04004H10V6.04004H4V2.04004H2V12.04H5L4.5 13.04H2L1 12.04V2.04004L2 1.04004H10.33L11.04 1.32996ZM7 5H9V2H7V5ZM13.5 5L15 6.5L14.98 7.18994L9.47998 12.6899L9.34998 12.8101L8.97998 13.1801L8.88 13.27L5.88 14.77L5.20996 14.1L6.70996 11.1L6.80005 11L7.17004 10.63L7.29004 10.5L12.79 5H13.5ZM7.28003 12.24L6.76001 13.24L7.80005 12.76L7.28003 12.24ZM7.96997 11.21L8.76001 12L13.91 6.84998L13.12 6.06006L7.96997 11.21Z" style="fill: rgb(144, 144, 144);"/>
<polygon points="7.886000156402588 11.178999900817871 13.109999656677246 5.927999973297119 14.083999633789062 6.874000072479248 8.859999656677246 12.138999938964844 7.886000156402588 11.164999961853027" style="fill: rgb(251, 176, 0);"/>
<polygon points="6.602 13.283 7.251 12.083 7.957 12.831 6.602 13.297" style="fill: rgb(251, 176, 0);"/>
</svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 11 KiB

View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M 16 14 L 14.769 14 L 14.769 13.76 L 14.769 2 L 16 2 L 16 14 Z" fill="#75BEFF" style="" transform="matrix(-1, 0, 0, -1, 30.769, 16)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M 14.769 14 L 14.769 2.181 L 7.385 8.119 Z M 13.539 5 L 13.539 11.181 L 9.587 8.119 Z" fill="#75BEFF" style="" transform="matrix(-1, 0, 0, -1, 22.154, 16.181)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M 7.385 14 L 7.385 2.181 L 0 8.119 Z M 6.154 5 L 6.154 11.181 L 2.203 8.119 Z" fill="#75BEFF" style="" transform="matrix(-1, 0, 0, -1, 7.385, 16.181)"/>
</svg>

After

Width:  |  Height:  |  Size: 744 B

View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M 1.231 2 L 0 2 L 0 2.24 L 0 14 L 1.231 14 L 1.231 2 Z" fill="#75BEFF" style=""/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M 8.615 2.181 L 8.615 14 L 1.231 8.062 Z M 7.385 11.181 L 7.385 5 L 3.433 8.062 Z" fill="#75BEFF" style=""/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M 16 2.181 L 16 14 L 8.615 8.062 Z M 14.769 11.181 L 14.769 5 L 10.818 8.062 Z" fill="#75BEFF" style=""/>
</svg>

After

Width:  |  Height:  |  Size: 591 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M 10.706 2.09 L 14.5 2.09 L 15 2.635 L 15 12.456 L 14.5 13 L 1.499 13 L 1 12.456 L 1 2.635 L 1.499 2.09 L 5.293 2.09 L 6.145 1.159 L 6.499 1 L 9.5 1 L 9.854 1.159 L 10.706 2.09 Z M 2 11.911 L 13.999 11.911 L 13.999 3.182 L 10.5 3.182 L 10.146 3.023 L 9.293 2.09 L 6.706 2.09 L 5.853 3.023 L 5.5 3.182 L 2 3.182 L 2 11.911 Z M 3.5 4.273 C 3.401 4.273 3.305 4.305 3.222 4.363 C 3.141 4.425 3.077 4.512 3.038 4.609 C 3 4.708 2.99 4.818 3.011 4.926 C 3.029 5.03 3.077 5.128 3.147 5.204 C 3.216 5.281 3.306 5.332 3.403 5.352 C 3.5 5.375 3.599 5.364 3.691 5.322 C 3.783 5.281 3.86 5.21 3.916 5.119 C 3.971 5.032 4 4.926 4 4.818 C 4 4.673 3.947 4.536 3.854 4.434 C 3.759 4.331 3.632 4.273 3.5 4.273 Z M 7.999 5.364 C 8.395 5.364 8.782 5.491 9.11 5.731 C 9.439 5.971 9.696 6.312 9.847 6.709 C 9.999 7.109 10.039 7.548 9.962 7.971 C 9.884 8.395 9.693 8.784 9.414 9.088 C 9.134 9.393 8.778 9.601 8.389 9.685 C 8.002 9.769 7.6 9.727 7.234 9.56 C 6.869 9.396 6.557 9.115 6.337 8.759 C 6.118 8.399 6 7.976 6 7.545 C 6 6.967 6.211 6.412 6.585 6.001 C 6.961 5.593 7.47 5.364 7.999 5.364 Z M 7.999 4.273 C 7.407 4.273 6.827 4.466 6.333 4.824 C 5.84 5.184 5.456 5.695 5.229 6.294 C 5.001 6.89 4.941 7.548 5.057 8.183 C 5.174 8.819 5.458 9.403 5.879 9.859 C 6.298 10.317 6.833 10.629 7.414 10.755 C 7.997 10.883 8.6 10.817 9.148 10.568 C 9.696 10.321 10.165 9.901 10.494 9.364 C 10.824 8.827 10.999 8.193 10.999 7.545 C 10.999 6.678 10.684 5.844 10.121 5.232 C 9.559 4.617 8.796 4.273 7.999 4.273 Z" style="fill: rgb(144, 144, 144);"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M 14.933 6.911 L 14.933 7.445 L 15.551 7.98 L 15.551 14.938 L 14.933 15.473 L 8.76 15.473 L 8.143 14.938 L 8.143 7.98 L 8.76 7.445 L 8.76 6.911 L 9.377 6.911 L 9.377 7.445 L 10.612 7.445 L 10.612 6.911 L 11.229 6.911 L 11.229 7.445 L 12.464 7.445 L 12.464 6.911 L 13.081 6.911 L 13.081 7.445 L 14.317 7.445 L 14.317 6.911 Z M 8.76 14.938 L 14.933 14.938 L 14.933 7.98 L 8.76 7.98 Z" style="fill: rgb(174, 78, 151);"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M 8.78 14.943 L 14.953 14.943 L 14.953 7.986 L 8.78 7.986 L 8.78 14.943 Z" style="fill: rgb(255, 255, 255); fill-opacity: 0.8;"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M 9.995 13.332 L 13.698 13.332 L 13.698 13.868 L 9.995 13.868 L 9.995 13.332 Z" style="fill: rgb(174, 78, 151);"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M 13.698 11.192 L 9.995 11.192 L 9.995 11.727 L 13.698 11.727 L 13.698 11.192 Z" style="fill: rgb(174, 78, 151);"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M 9.995 9.052 L 13.698 9.052 L 13.698 9.587 L 9.995 9.587 L 9.995 9.052 Z" style="fill: rgb(174, 78, 151);"/>
</svg>

After

Width:  |  Height:  |  Size: 2.8 KiB

View File

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M 10.707 2.091 L 14.5 2.091 L 15 2.636 L 15 12.455 L 14.5 13 L 1.5 13 L 1 12.455 L 1 2.636 L 1.5 2.091 L 5.293 2.091 L 6.146 1.159 L 6.5 1 L 9.5 1 L 9.854 1.159 L 10.707 2.091 Z M 2 11.909 L 14 11.909 L 14 3.182 L 10.5 3.182 L 10.146 3.023 L 9.293 2.091 L 6.707 2.091 L 5.854 3.023 L 5.5 3.182 L 2 3.182 L 2 11.909 Z M 3.5 4.273 C 3.401 4.273 3.304 4.305 3.222 4.365 C 3.14 4.425 3.076 4.51 3.038 4.609 C 3 4.709 2.99 4.819 3.01 4.925 C 3.029 5.03 3.077 5.128 3.146 5.204 C 3.216 5.28 3.305 5.332 3.402 5.353 C 3.499 5.374 3.6 5.363 3.691 5.322 C 3.783 5.281 3.861 5.211 3.916 5.121 C 3.971 5.032 4 4.926 4 4.818 C 4 4.674 3.947 4.535 3.854 4.432 C 3.76 4.33 3.633 4.273 3.5 4.273 Z M 8 5.364 C 8.396 5.364 8.782 5.492 9.111 5.731 C 9.44 5.971 9.696 6.312 9.848 6.711 C 9.999 7.109 10.039 7.548 9.962 7.971 C 9.884 8.394 9.694 8.783 9.414 9.088 C 9.135 9.393 8.778 9.601 8.39 9.685 C 8.002 9.769 7.6 9.726 7.235 9.561 C 6.869 9.396 6.557 9.116 6.337 8.758 C 6.117 8.399 6 7.977 6 7.545 C 6 6.967 6.211 6.412 6.586 6.003 C 6.961 5.594 7.47 5.364 8 5.364 Z M 8 4.273 C 7.407 4.273 6.827 4.465 6.333 4.824 C 5.84 5.184 5.455 5.695 5.228 6.293 C 5.001 6.891 4.942 7.549 5.058 8.184 C 5.173 8.819 5.459 9.402 5.879 9.86 C 6.298 10.317 6.833 10.629 7.415 10.755 C 7.997 10.882 8.6 10.817 9.148 10.569 C 9.696 10.321 10.165 9.902 10.494 9.364 C 10.824 8.825 11 8.193 11 7.545 C 11 6.677 10.684 5.845 10.121 5.231 C 9.559 4.618 8.796 4.273 8 4.273 Z" style="fill: rgb(144, 144, 144);"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M 14.708 7.545 L 15.521 8.391 L 15.6 8.589 L 15.6 15.08 L 15.33 15.361 L 8.286 15.361 L 8.015 15.08 L 8.015 7.743 L 8.286 7.461 L 14.519 7.461 Z M 8.557 8.027 L 8.557 14.797 L 15.059 14.797 L 15.059 8.705 L 14.406 8.027 L 13.434 8.027 L 13.434 10.285 L 9.64 10.285 L 9.64 8.027 Z M 11.807 8.027 L 11.807 9.719 L 12.89 9.719 L 12.89 8.027 Z" style="fill: rgb(251, 176, 0);"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M 8.551 8.021 L 8.551 14.79 L 15.053 14.79 L 15.053 8.699 L 14.4 8.021 L 13.429 8.021 L 13.429 10.277 L 9.634 10.277 L 9.634 8.021 L 8.551 8.021 Z" style="fill: rgb(255, 255, 255); fill-opacity: 0.8;"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M 11.812 8.034 L 11.812 9.726 L 12.895 9.726 L 12.895 8.034 L 11.812 8.034 Z" style="fill: rgb(255, 255, 255); fill-opacity: 0.68;"/>
</svg>

After

Width:  |  Height:  |  Size: 2.5 KiB

View File

@ -0,0 +1,13 @@
<?xml version="1.0" encoding="utf-8"?>
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M 10.707 2.091 L 14.5 2.091 L 15 2.636 L 15 12.455 L 14.5 13 L 1.5 13 L 1 12.455 L 1 2.636 L 1.5 2.091 L 5.293 2.091 L 6.146 1.159 L 6.5 1 L 9.5 1 L 9.854 1.159 L 10.707 2.091 Z M 2 11.909 L 14 11.909 L 14 3.182 L 10.5 3.182 L 10.146 3.023 L 9.293 2.091 L 6.707 2.091 L 5.854 3.023 L 5.5 3.182 L 2 3.182 L 2 11.909 Z M 3.5 4.273 C 3.401 4.273 3.304 4.305 3.222 4.365 C 3.14 4.425 3.076 4.51 3.038 4.609 C 3 4.709 2.99 4.819 3.01 4.925 C 3.029 5.03 3.077 5.128 3.146 5.204 C 3.216 5.28 3.305 5.332 3.402 5.353 C 3.499 5.374 3.6 5.363 3.691 5.322 C 3.783 5.281 3.861 5.211 3.916 5.121 C 3.971 5.032 4 4.926 4 4.818 C 4 4.674 3.947 4.535 3.854 4.432 C 3.76 4.33 3.633 4.273 3.5 4.273 Z M 8 5.364 C 8.396 5.364 8.782 5.492 9.111 5.731 C 9.44 5.971 9.696 6.312 9.848 6.711 C 9.999 7.109 10.039 7.548 9.962 7.971 C 9.884 8.394 9.694 8.783 9.414 9.088 C 9.135 9.393 8.778 9.601 8.39 9.685 C 8.002 9.769 7.6 9.726 7.235 9.561 C 6.869 9.396 6.557 9.116 6.337 8.758 C 6.117 8.399 6 7.977 6 7.545 C 6 6.967 6.211 6.412 6.586 6.003 C 6.961 5.594 7.47 5.364 8 5.364 Z M 8 4.273 C 7.407 4.273 6.827 4.465 6.333 4.824 C 5.84 5.184 5.455 5.695 5.228 6.293 C 5.001 6.891 4.942 7.549 5.058 8.184 C 5.173 8.819 5.459 9.402 5.879 9.86 C 6.298 10.317 6.833 10.629 7.415 10.755 C 7.997 10.882 8.6 10.817 9.148 10.569 C 9.696 10.321 10.165 9.902 10.494 9.364 C 10.824 8.825 11 8.193 11 7.545 C 11 6.677 10.684 5.845 10.121 5.231 C 9.559 4.618 8.796 4.273 8 4.273 Z" style="fill: rgb(144, 144, 144);"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M 12.15 5.956 L 12.868 6.706 L 12.938 6.882 L 12.938 12.633 L 12.699 12.882 L 6.481 12.882 L 6.242 12.633 L 6.242 6.132 L 6.481 5.882 L 11.983 5.882 Z M 6.721 6.384 L 6.721 12.382 L 12.46 12.382 L 12.46 6.984 L 11.883 6.384 L 11.025 6.384 L 11.025 8.384 L 7.678 8.384 L 7.678 6.384 Z M 9.589 6.384 L 9.589 7.883 L 10.545 7.883 L 10.545 6.384 Z" style="fill: rgb(213, 149, 0);"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M 6.715 6.378 L 6.715 12.376 L 12.455 12.376 L 12.455 6.979 L 11.878 6.378 L 11.021 6.378 L 11.021 8.377 L 7.672 8.377 L 7.672 6.378 L 6.715 6.378 Z" style="fill: rgb(255, 255, 255); fill-opacity: 0.85;"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M 9.594 6.39 L 9.594 7.889 L 10.55 7.889 L 10.55 6.39 L 9.594 6.39 Z" style="fill: rgb(255, 255, 255); fill-opacity: 0.68;"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M 13.522 7.131 L 14.24 7.881 L 14.309 8.056 L 14.309 13.808 L 14.071 14.057 L 7.853 14.057 L 7.614 13.808 L 7.614 7.307 L 7.853 7.057 L 13.356 7.057 Z M 8.093 7.558 L 8.093 13.557 L 13.831 13.557 L 13.831 8.159 L 13.255 7.558 L 12.397 7.558 L 12.397 9.559 L 9.049 9.559 L 9.049 7.558 Z M 10.961 7.558 L 10.961 9.058 L 11.918 9.058 L 11.918 7.558 Z" style="fill: rgb(245, 172, 0);"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M 8.086 7.553 L 8.086 13.551 L 13.826 13.551 L 13.826 8.154 L 13.25 7.553 L 12.392 7.553 L 12.392 9.552 L 9.043 9.552 L 9.043 7.553 L 8.086 7.553 Z" style="fill: rgb(255, 255, 255); fill-opacity: 0.85;"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M 10.965 7.565 L 10.965 9.064 L 11.922 9.064 L 11.922 7.565 L 10.965 7.565 Z" style="fill: rgb(255, 255, 255); fill-opacity: 0.68;"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M 14.894 8.369 L 15.612 9.119 L 15.682 9.294 L 15.682 15.046 L 15.443 15.295 L 9.225 15.295 L 8.986 15.046 L 8.986 8.545 L 9.225 8.295 L 14.728 8.295 Z M 9.465 8.796 L 9.465 14.795 L 15.203 14.795 L 15.203 9.397 L 14.628 8.796 L 13.769 8.796 L 13.769 10.797 L 10.421 10.797 L 10.421 8.796 Z M 12.334 8.796 L 12.334 10.296 L 13.29 10.296 L 13.29 8.796 Z" style="fill: rgb(251, 176, 0);"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M 9.46 8.791 L 9.46 14.789 L 15.199 14.789 L 15.199 9.392 L 14.623 8.791 L 13.765 8.791 L 13.765 10.79 L 10.416 10.79 L 10.416 8.791 L 9.46 8.791 Z" style="fill: rgb(255, 255, 255); fill-opacity: 0.85;"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M 12.338 8.803 L 12.338 10.302 L 13.294 10.302 L 13.294 8.803 L 12.338 8.803 Z" style="fill: rgb(255, 255, 255); fill-opacity: 0.68;"/>
</svg>

After

Width:  |  Height:  |  Size: 4.2 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 805 KiB

View File

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M 2.241 12.532 C 2.699 12.532 3.282 12.548 3.714 12.339 C 3.908 12.247 4.162 12.447 4.34 12.298 C 4.631 12.054 5.066 12.26 5.339 11.954 C 6.047 11.163 6.942 10.233 7.565 9.189 C 7.861 8.693 8.469 8.438 8.909 8.438 C 8.986 8.438 9.243 8.368 9.306 8.438 C 9.64 8.81 10.087 8.997 10.432 9.382 C 10.579 9.547 10.68 9.819 10.817 10.003 C 11.319 10.677 11.827 11.273 12.352 11.933 C 12.602 12.247 12.914 12.447 13.222 12.576 C 13.348 12.629 13.65 12.606 13.735 12.748 C 13.735 12.718 13.947 12.694 13.977 12.694 C 14.045 12.651 14.114 12.651 14.182 12.651" style="fill: rgb(216, 216, 216); fill-opacity: 0; stroke: rgb(128, 70, 0); stroke-linejoin: round; stroke-width: 0.6px;"/>
<path d="M 11.646 2.853 L 11.646 2.853" style="stroke: rgb(0, 0, 0); fill: rgb(216, 216, 216); stroke-width: 0.6px;"/>
<path d="M 2.307 9.699 C 2.765 9.699 3.347 9.713 3.779 9.505 C 3.973 9.412 4.228 9.612 4.405 9.462 C 4.696 9.219 5.132 9.424 5.405 9.118 C 6.113 8.328 7.008 7.399 7.631 6.353 C 7.927 5.86 8.534 5.603 8.975 5.603 C 9.051 5.603 9.308 5.533 9.372 5.603 C 9.705 5.976 10.153 6.161 10.498 6.547 C 10.645 6.711 10.745 6.986 10.882 7.169 C 11.385 7.841 11.893 8.438 12.418 9.098 C 12.668 9.412 12.979 9.612 13.288 9.742 C 13.414 9.793 13.716 9.77 13.801 9.913 C 13.801 9.882 14.013 9.86 14.043 9.86 C 14.111 9.817 14.179 9.817 14.248 9.817" style="fill: rgb(216, 216, 216); fill-opacity: 0; stroke-linejoin: round; stroke: rgb(255, 140, 0); stroke-width: 0.6px;"/>
<path d="M 2.263 6.673 C 2.721 6.673 3.304 6.689 3.736 6.481 C 3.93 6.388 4.184 6.587 4.362 6.438 C 4.653 6.194 5.089 6.399 5.361 6.095 C 6.069 5.304 6.964 4.375 7.587 3.329 C 7.883 2.835 8.491 2.578 8.931 2.578 C 9.008 2.578 9.265 2.509 9.329 2.578 C 9.662 2.952 10.109 3.137 10.454 3.523 C 10.601 3.686 10.702 3.96 10.839 4.144 C 11.341 4.817 11.85 5.414 12.374 6.072 C 12.625 6.388 12.936 6.587 13.244 6.716 C 13.371 6.768 13.672 6.746 13.757 6.888 C 13.757 6.858 13.97 6.835 14 6.835 C 14.067 6.792 14.136 6.792 14.205 6.792" style="fill: rgb(216, 216, 216); fill-opacity: 0; stroke-linejoin: round; stroke: rgb(150, 84, 3); stroke-width: 0.6px;"/>
<line style="fill: rgb(253, 194, 93); stroke: rgb(144, 144, 144);" x1="1.378" y1="14.337" x2="1.352" y2="2.051" transform="matrix(-1, 0, 0, -1, 2.73, 16.388)"/>
<line style="fill: rgb(253, 194, 93); stroke: rgb(144, 144, 144);" x1="0.871" y1="14.161" x2="14.262" y2="13.999"/>
</svg>

After

Width:  |  Height:  |  Size: 2.5 KiB

View File

@ -0,0 +1,13 @@
<?xml version="1.0" encoding="utf-8"?>
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M 2.241 12.532 C 2.699 12.532 3.282 12.548 3.714 12.339 C 3.908 12.247 4.162 12.447 4.34 12.298 C 4.631 12.054 5.066 12.26 5.339 11.954 C 6.047 11.163 6.942 10.233 7.565 9.189 C 7.861 8.693 8.469 8.438 8.909 8.438 C 8.986 8.438 9.243 8.368 9.306 8.438 C 9.64 8.81 10.087 8.997 10.432 9.382 C 10.579 9.547 10.68 9.819 10.817 10.003 C 11.319 10.677 11.827 11.273 12.352 11.933 C 12.602 12.247 12.914 12.447 13.222 12.576 C 13.348 12.629 13.65 12.606 13.735 12.748 C 13.735 12.718 13.947 12.694 13.977 12.694 C 14.045 12.651 14.114 12.651 14.182 12.651" style="fill: rgb(216, 216, 216); fill-opacity: 0; stroke: rgb(128, 70, 0); stroke-linejoin: round; stroke-width: 0.6px;"/>
<path d="M 11.646 2.853 L 11.646 2.853" style="stroke: rgb(0, 0, 0); fill: rgb(216, 216, 216); stroke-width: 0.6px;"/>
<path d="M 2.307 9.699 C 2.765 9.699 3.347 9.713 3.779 9.505 C 3.973 9.412 4.228 9.612 4.405 9.462 C 4.696 9.219 5.132 9.424 5.405 9.118 C 6.113 8.328 7.008 7.399 7.631 6.353 C 7.927 5.86 8.534 5.603 8.975 5.603 C 9.051 5.603 9.308 5.533 9.372 5.603 C 9.705 5.976 10.153 6.161 10.498 6.547 C 10.645 6.711 10.745 6.986 10.882 7.169 C 11.385 7.841 11.893 8.438 12.418 9.098 C 12.668 9.412 12.979 9.612 13.288 9.742 C 13.414 9.793 13.716 9.77 13.801 9.913 C 13.801 9.882 14.013 9.86 14.043 9.86 C 14.111 9.817 14.179 9.817 14.248 9.817" style="fill: rgb(216, 216, 216); fill-opacity: 0; stroke-linejoin: round; stroke: rgb(255, 140, 0); stroke-width: 0.6px;"/>
<path d="M 2.263 6.673 C 2.721 6.673 3.304 6.689 3.736 6.481 C 3.93 6.388 4.184 6.587 4.362 6.438 C 4.653 6.194 5.089 6.399 5.361 6.095 C 6.069 5.304 6.964 4.375 7.587 3.329 C 7.883 2.835 8.491 2.578 8.931 2.578 C 9.008 2.578 9.265 2.509 9.329 2.578 C 9.662 2.952 10.109 3.137 10.454 3.523 C 10.601 3.686 10.702 3.96 10.839 4.144 C 11.341 4.817 11.85 5.414 12.374 6.072 C 12.625 6.388 12.936 6.587 13.244 6.716 C 13.371 6.768 13.672 6.746 13.757 6.888 C 13.757 6.858 13.97 6.835 14 6.835 C 14.067 6.792 14.136 6.792 14.205 6.792" style="fill: rgb(216, 216, 216); fill-opacity: 0; stroke-linejoin: round; stroke: rgb(150, 84, 3); stroke-width: 0.6px;"/>
<line style="fill: rgb(253, 194, 93); stroke: rgb(144, 144, 144);" x1="1.378" y1="14.337" x2="1.352" y2="2.051" transform="matrix(-1, 0, 0, -1, 2.73, 16.388)"/>
<line style="fill: rgb(253, 194, 93); stroke: rgb(144, 144, 144);" x1="0.871" y1="14.161" x2="14.262" y2="13.999"/>
<g transform="matrix(1, 0, 0, 1, 0.373431, -0.180163)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M 15.741 8.433 L 15.741 10.135 L 15.47 10.419 L 15.2 10.419 L 15.2 15.24 L 14.93 15.524 L 8.985 15.524 L 8.714 15.24 L 8.714 10.419 L 8.444 10.419 L 8.174 10.135 L 8.174 8.433 L 8.444 8.15 L 15.47 8.15 Z M 13.579 11.553 L 10.336 11.553 L 10.336 12.12 L 13.579 12.12 Z" style="fill: rgb(251, 176, 0); fill-opacity: 0.95;"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M 14.93 9.851 L 8.985 9.851 L 8.714 9.851 L 8.714 8.717 L 15.2 8.717 L 15.2 9.851 L 14.93 9.851 Z" style="fill: rgb(255, 192, 44); fill-opacity: 0.95;"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.1 KiB

View File

@ -0,0 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M 15 1 L 1 1 L 0.462 1.538 L 0.462 12.308 L 1 12.846 L 6.924 12.846 L 6.924 13.923 L 3.693 13.923 L 3.693 15 L 12.308 15 L 12.308 13.923 L 9.077 13.923 L 9.077 12.846 L 15 12.846 L 15.539 12.308 L 15.539 1.538 L 15 1 Z M 14.462 11.769 L 1.539 11.769 L 1.539 2.077 L 14.462 2.077 L 14.462 11.769 Z" style="fill: rgb(144, 144, 144);"/>
<rect x="7.977" y="2.159" width="6.492" height="5.26" style="stroke: rgb(0, 0, 0); stroke-width: 0.2px; fill: rgb(251, 176, 0);"/>
<rect x="8.026" y="2.194" width="6.407" height="1.124" style="stroke: rgb(0, 0, 0); stroke-width: 0.1px; fill: rgb(205, 205, 205);"/>
<rect x="1.5" y="2.16" width="6.492" height="5.26" style="stroke: rgb(0, 0, 0); stroke-width: 0.2px; fill: rgb(117, 190, 255);"/>
<rect x="1.55" y="2.195" width="6.407" height="1.124" style="stroke: rgb(0, 0, 0); stroke-width: 0.1px; fill: rgb(205, 205, 205);"/>
<rect x="1.485" y="6.94" width="6.492" height="4.918" style="stroke: rgb(0, 0, 0); stroke-width: 0.2px; fill: rgb(174, 78, 151);"/>
<rect x="1.535" y="6.973" width="6.407" height="0.918" style="stroke: rgb(0, 0, 0); stroke-width: 0.1px; fill: rgb(205, 205, 205);"/>
<rect x="7.977" y="6.916" width="6.492" height="4.943" style="stroke: rgb(0, 0, 0); stroke-width: 0.2px; fill: rgb(137, 209, 133);"/>
<rect x="8.026" y="6.949" width="6.407" height="0.936" style="stroke: rgb(0, 0, 0); stroke-width: 0.1px; fill: rgb(205, 205, 205);"/>
</svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 740 KiB

View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M 15 1 L 1 1 L 0.462 1.538 L 0.462 12.308 L 1 12.846 L 6.924 12.846 L 6.924 13.923 L 3.693 13.923 L 3.693 15 L 12.308 15 L 12.308 13.923 L 9.077 13.923 L 9.077 12.846 L 15 12.846 L 15.539 12.308 L 15.539 1.538 L 15 1 Z M 14.462 11.769 L 1.539 11.769 L 1.539 2.077 L 14.462 2.077 L 14.462 11.769 Z" style="fill: rgb(144, 144, 144);"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M 7.258 6.724 L 7.258 10.708 L 8.741 10.708 L 8.741 6.724 L 10.09 8.067 L 11.244 6.918 L 8.338 4.023 L 7.662 4.023 L 4.756 6.918 L 5.91 8.067 Z" style="fill: rgb(251, 176, 0);"/>
<rect x="4.183" y="-4.002" width="7.632" height="0.912" style="fill: rgb(137, 209, 133);" transform="matrix(1, 0, 0, -1, 0, 0)"/>
</svg>

After

Width:  |  Height:  |  Size: 888 B

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 805 KiB

View File

@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M 12.028 6.149 C 12.123 7.566 11.668 8.967 10.758 10.058 L 15.018 14.318 L 14.318 15.028 L 10.058 10.758 C 8.967 11.668 7.566 12.123 6.149 12.028 C 4.731 11.932 3.404 11.293 2.446 10.244 C 1.487 9.195 0.969 7.817 1.001 6.396 C 1.033 4.975 1.612 3.622 2.617 2.617 C 3.622 1.612 4.975 1.033 6.396 1.001 C 7.817 0.969 9.195 1.487 10.244 2.446 C 11.293 3.404 11.932 4.731 12.028 6.149 Z M 6.578 11.038 C 7.77 11.035 8.914 10.561 9.758 9.718 L 9.718 9.738 C 10.145 9.321 10.485 8.823 10.718 8.274 C 10.952 7.725 11.074 7.134 11.078 6.538 C 11.078 5.648 10.814 4.778 10.319 4.038 C 9.825 3.298 9.122 2.721 8.3 2.38 C 7.477 2.039 6.573 1.95 5.7 2.124 C 4.827 2.298 4.025 2.726 3.396 3.356 C 2.766 3.985 2.338 4.787 2.164 5.66 C 1.99 6.533 2.08 7.437 2.42 8.26 C 2.761 9.082 3.337 9.785 4.077 10.279 C 4.817 10.774 5.688 11.038 6.578 11.038 Z" style="fill: rgb(144, 144, 144);"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M 9.01749 7.0376 L 9.01749 6.0376 L 7.01749 6.0376 L 7.01749 4.0376 L 6.01749 4.0376 L 6.01749 6.0376 L 4.01749 6.0376 L 4.01749 7.0376 L 6.01749 7.0376 L 6.01749 9.0376 L 7.01749 9.0376 L 7.01749 7.0376 L 9.01749 7.0376 Z" style="fill: rgb(174, 78, 151);"/>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -147,9 +147,17 @@ QToolButton {
background-color: $backgroundColor1;
color: $textColor;
border-width : 0px;
padding: 3px;
padding:8px;
}
QToolButton:checked {
background-color: $backgroundColor3;
color: $textColor;
border-width : 0px;
padding: 8px;
}
QLabel {
background-color: transparent;
}
@ -250,6 +258,10 @@ QToolBar QWidget {
border-color: $borderColor;
}
QToolBar::handle {
image: url(:/themes/dark/gripper.svg);
}
QMenuBar::item:selected {
background-color: $primaryColor;
color: $textColor;
@ -287,7 +299,8 @@ QToolBar QToolButton {
}
QToolBar QToolButton:hover {
background-color: $backgroundColor1;
background-color: $primaryColor;
border-width: 0px;
}
QLCDNumber {

View File

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect x="3.8" width="2.8" height="2.8" fill="#C5C5C5" y="1"/>
<rect x="3.8" y="6.6" width="2.8" height="2.8" fill="#C5C5C5"/>
<rect x="3.8" y="12.2" width="2.8" height="2.8" fill="#C5C5C5"/>
<rect x="9.4" width="2.8" height="2.8" fill="#C5C5C5" y="1"/>
<rect x="9.4" y="6.6" width="2.8" height="2.8" fill="#C5C5C5"/>
<rect x="9.4" y="12.2" width="2.8" height="2.8" fill="#C5C5C5"/>
</svg>

After

Width:  |  Height:  |  Size: 535 B

View File

@ -165,6 +165,10 @@ QToolBar QWidget {
border-color: $borderColor;
}
QToolBar::handle {
image: url(:/themes/light/gripper.svg);
}
QMenu::item:selected {
background-color: #bbd9f2;
}

View File

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect x="3.8" width="2.8" height="2.8" fill="#424242" y="1"/>
<rect x="3.8" y="6.6" width="2.8" height="2.8" fill="#424242"/>
<rect x="3.8" y="12.2" width="2.8" height="2.8" fill="#424242"/>
<rect x="9.4" width="2.8" height="2.8" fill="#424242" y="1"/>
<rect x="9.4" y="6.6" width="2.8" height="2.8" fill="#424242"/>
<rect x="9.4" y="12.2" width="2.8" height="2.8" fill="#424242"/>
</svg>

After

Width:  |  Height:  |  Size: 535 B

View File

@ -306,7 +306,7 @@ void RiuMainWindow::createActions()
m_mockModelCustomizedAction = new QAction( "Customized Mock Model", this );
m_mockInputModelAction = new QAction( "Input Mock Model", this );
m_snapshotAllViewsToFile = new QAction( QIcon( ":/SnapShotSaveViews.png" ), "Snapshot All Views To File", this );
m_snapshotAllViewsToFile = new QAction( QIcon( ":/SnapShotSaveViews.svg" ), "Snapshot All Views To File", this );
m_createCommandObject = new QAction( "Create Command Object", this );
m_showRegressionTestDialog = new QAction( "Regression Test Dialog", this );
@ -325,27 +325,27 @@ void RiuMainWindow::createActions()
connect( m_executePaintEventPerformanceTest, SIGNAL( triggered() ), SLOT( slotExecutePaintEventPerformanceTest() ) );
// View actions
m_viewFromNorth = new QAction( QIcon( ":/SouthViewArrow.png" ), "Look South", this );
m_viewFromNorth = new QAction( QIcon( ":/SouthView.svg" ), "Look South", this );
m_viewFromNorth->setToolTip( "Look South (Ctrl+Alt+S)" );
caf::CmdFeature::applyShortcutWithHintToAction( m_viewFromNorth, QKeySequence( tr( "Ctrl+Alt+S" ) ) );
m_viewFromSouth = new QAction( QIcon( ":/NorthViewArrow.png" ), "Look North", this );
m_viewFromSouth = new QAction( QIcon( ":/NorthView.svg" ), "Look North", this );
m_viewFromSouth->setToolTip( "Look North (Ctrl+Alt+N)" );
caf::CmdFeature::applyShortcutWithHintToAction( m_viewFromSouth, QKeySequence( tr( "Ctrl+Alt+N" ) ) );
m_viewFromEast = new QAction( QIcon( ":/WestViewArrow.png" ), "Look West", this );
m_viewFromEast = new QAction( QIcon( ":/WestView.svg" ), "Look West", this );
m_viewFromEast->setToolTip( "Look West (Ctrl+Alt+W)" );
caf::CmdFeature::applyShortcutWithHintToAction( m_viewFromEast, QKeySequence( tr( "Ctrl+Alt+W" ) ) );
m_viewFromWest = new QAction( QIcon( ":/EastViewArrow.png" ), "Look East", this );
m_viewFromWest = new QAction( QIcon( ":/EastView.svg" ), "Look East", this );
m_viewFromWest->setToolTip( "Look East (Ctrl+Alt+E)" );
caf::CmdFeature::applyShortcutWithHintToAction( m_viewFromWest, QKeySequence( tr( "Ctrl+Alt+E" ) ) );
m_viewFromAbove = new QAction( QIcon( ":/DownViewArrow.png" ), "Look Down", this );
m_viewFromAbove = new QAction( QIcon( ":/DownView.svg" ), "Look Down", this );
m_viewFromAbove->setToolTip( "Look Down (Ctrl+Alt+D)" );
caf::CmdFeature::applyShortcutWithHintToAction( m_viewFromAbove, QKeySequence( tr( "Ctrl+Alt+D" ) ) );
m_viewFromBelow = new QAction( QIcon( ":/UpViewArrow.png" ), "Look Up", this );
m_viewFromBelow = new QAction( QIcon( ":/UpView.svg" ), "Look Up", this );
m_viewFromBelow->setToolTip( "Look Up (Ctrl+Alt+U)" );
caf::CmdFeature::applyShortcutWithHintToAction( m_viewFromBelow, QKeySequence( tr( "Ctrl+Alt+U" ) ) );
@ -363,27 +363,24 @@ void RiuMainWindow::createActions()
// Draw style actions
m_dsActionGroup = new QActionGroup( this );
m_drawStyleLinesAction = new QAction( QIcon( ":/draw_style_lines_24x24.png" ), "&Mesh Only", this );
m_drawStyleLinesAction = new QAction( QIcon( ":/DrawStyleLines.svg" ), "&Mesh Only", this );
// connect(m_drawStyleLinesAction, SIGNAL(triggered()), SLOT(slotDrawStyleLines()));
m_dsActionGroup->addAction( m_drawStyleLinesAction );
m_drawStyleLinesSolidAction = new QAction( QIcon( ":/draw_style_meshlines_24x24.png" ), "Mesh And Surfaces", this );
m_drawStyleLinesSolidAction = new QAction( QIcon( ":/DrawStyleMeshLines.svg" ), "Mesh And Surfaces", this );
// connect(m_drawStyleLinesSolidAction, SIGNAL(triggered()), SLOT(slotDrawStyleLinesSolid()));
m_dsActionGroup->addAction( m_drawStyleLinesSolidAction );
m_drawStyleFaultLinesSolidAction =
new QAction( QIcon( ":/draw_style_surface_w_fault_mesh_24x24.png" ), "Fault Mesh And Surfaces", this );
m_dsActionGroup->addAction( m_drawStyleFaultLinesSolidAction );
m_drawStyleSurfOnlyAction = new QAction( QIcon( ":/draw_style_surface_24x24.png" ), "&Surface Only", this );
m_drawStyleSurfOnlyAction = new QAction( QIcon( ":/DrawStyleSurface.svg" ), "&Surface Only", this );
new QAction( QIcon( ":/draw_style_surface_w_fault_mesh_24x24.png" ), "Fault Mesh And Surfaces", this );
// connect(m_drawStyleSurfOnlyAction, SIGNAL(triggered()), SLOT(slotDrawStyleSurfOnly()));
m_dsActionGroup->addAction( m_drawStyleSurfOnlyAction );
connect( m_dsActionGroup, SIGNAL( triggered( QAction* ) ), SLOT( slotDrawStyleChanged( QAction* ) ) );
m_disableLightingAction = new QAction( QIcon( ":/disable_lighting_24x24.png" ), "&Disable Results Lighting", this );
m_disableLightingAction->setCheckable( true );
connect( m_disableLightingAction, SIGNAL( toggled( bool ) ), SLOT( slotDisableLightingAction( bool ) ) );
m_drawStyleFaultLinesSolidAction =
new QAction( QIcon( ":/draw_style_surface_w_fault_mesh_24x24.png" ), "Fault Mesh And Surfaces", this );
m_dsActionGroup->addAction( m_drawStyleFaultLinesSolidAction );
m_drawStyleHideGridCellsAction = new QAction( QIcon( ":/draw_style_faults_24x24.png" ), "&Hide Grid Cells", this );
m_drawStyleHideGridCellsAction->setCheckable( true );
@ -398,6 +395,11 @@ void RiuMainWindow::createActions()
m_showWellCellsAction->setCheckable( true );
m_showWellCellsAction->setToolTip( "Show Well Cells" );
connect( m_showWellCellsAction, SIGNAL( toggled( bool ) ), SLOT( slotShowWellCellsAction( bool ) ) );
m_enableLightingAction = new QAction( QIcon( ":/DrawLightingEnabled.svg" ), "&Enable Results Lighting", this );
m_enableLightingAction->setCheckable( true );
connect( m_enableLightingAction, SIGNAL( toggled( bool ) ), SLOT( slotToggleLightingAction( bool ) ) );
// m_dsActionGroup->addAction( m_enableLightingAction );
}
//--------------------------------------------------------------------------------------------------
@ -429,7 +431,7 @@ void RiuMainWindow::createMenus()
importEclipseMenu->addAction( cmdFeatureMgr->action( "RicCreateGridCaseGroupFromFilesFeature" ) );
importMenu->addSeparator();
QMenu* importSummaryMenu = importMenu->addMenu( QIcon( ":/SummaryCase48x48.png" ), "Summary Cases" );
QMenu* importSummaryMenu = importMenu->addMenu( QIcon( ":/SummaryCase.svg" ), "Summary Cases" );
importSummaryMenu->addAction( cmdFeatureMgr->action( "RicImportSummaryCaseFeature" ) );
importSummaryMenu->addAction( cmdFeatureMgr->action( "RicImportSummaryCasesFeature" ) );
importSummaryMenu->addAction( cmdFeatureMgr->action( "RicImportSummaryGroupFeature" ) );
@ -633,8 +635,8 @@ void RiuMainWindow::createToolBars()
dsToolBar->addAction( m_drawStyleLinesAction );
dsToolBar->addAction( m_drawStyleLinesSolidAction );
dsToolBar->addAction( m_drawStyleSurfOnlyAction );
dsToolBar->addAction( m_enableLightingAction );
dsToolBar->addAction( m_drawStyleFaultLinesSolidAction );
dsToolBar->addAction( m_disableLightingAction );
dsToolBar->addAction( m_drawStyleHideGridCellsAction );
dsToolBar->addAction( m_toggleFaultsLabelAction );
dsToolBar->addAction( m_showWellCellsAction );
@ -1390,6 +1392,7 @@ void RiuMainWindow::slotBuildWindowActions()
m_windowMenu->addSeparator();
QAction* cascadeWindowsAction = new QAction( "Cascade Windows", this );
cascadeWindowsAction->setIcon( QIcon( ":/CascadeWindows.svg" ) );
connect( cascadeWindowsAction, SIGNAL( triggered() ), m_mdiArea, SLOT( cascadeSubWindows() ) );
QAction* closeAllSubWindowsAction = new QAction( "Close All Windows", this );
@ -1581,14 +1584,23 @@ void RiuMainWindow::refreshDrawStyleActions()
m_drawStyleLinesSolidAction->setEnabled( is3dView );
m_drawStyleSurfOnlyAction->setEnabled( is3dView );
m_drawStyleFaultLinesSolidAction->setEnabled( is3dView );
m_disableLightingAction->setEnabled( is3dView );
m_enableLightingAction->setEnabled( is3dView );
bool lightingDisabledInView = view ? view->isLightingDisabled() : false;
bool lightingEnabled = view ? !view->isLightingDisabled() : true;
m_disableLightingAction->blockSignals( true );
m_disableLightingAction->setChecked( lightingDisabledInView );
m_disableLightingAction->blockSignals( false );
m_enableLightingAction->blockSignals( true );
m_enableLightingAction->setChecked( lightingEnabled );
if ( lightingEnabled )
{
m_enableLightingAction->setIcon( QIcon( ":/DrawLightingEnabled.svg" ) );
}
else
{
m_enableLightingAction->setIcon( QIcon( ":/DrawLightingDisabled.svg" ) );
}
m_enableLightingAction->blockSignals( false );
m_drawStyleHideGridCellsAction->setEnabled( is3dGridView );
if ( is3dGridView )
{
@ -1632,13 +1644,14 @@ void RiuMainWindow::refreshDrawStyleActions()
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
void RiuMainWindow::slotDisableLightingAction( bool disable )
void RiuMainWindow::slotToggleLightingAction( bool enable )
{
Rim3dView* view = RiaApplication::instance()->activeReservoirView();
if ( view )
{
view->disableLighting( disable );
view->disableLighting( !enable );
}
refreshDrawStyleActions();
}
//--------------------------------------------------------------------------------------------------

View File

@ -210,7 +210,7 @@ private slots:
void slotDrawStyleChanged( QAction* activatedAction );
void slotToggleHideGridCellsAction( bool );
void slotToggleFaultLabelsAction( bool );
void slotDisableLightingAction( bool );
void slotToggleLightingAction( bool );
void slotShowWellCellsAction( bool doAdd );
@ -255,7 +255,7 @@ private:
QSpinBox* m_scaleFactor;
QActionGroup* m_dsActionGroup;
QAction* m_disableLightingAction;
QAction* m_enableLightingAction;
QAction* m_drawStyleHideGridCellsAction;
QAction* m_toggleFaultsLabelAction;
QAction* m_drawStyleLinesAction;

View File

@ -258,7 +258,7 @@ void RiuPlotMainWindow::createMenus()
#endif
importMenu->addSeparator();
QMenu* importSummaryMenu = importMenu->addMenu( QIcon( ":/SummaryCase24x24.png" ), "Summary Cases" );
QMenu* importSummaryMenu = importMenu->addMenu( QIcon( ":/SummaryCase.svg" ), "Summary Cases" );
importSummaryMenu->addAction( cmdFeatureMgr->action( "RicImportSummaryCaseFeature" ) );
importSummaryMenu->addAction( cmdFeatureMgr->action( "RicImportSummaryCasesFeature" ) );
importSummaryMenu->addAction( cmdFeatureMgr->action( "RicImportSummaryGroupFeature" ) );

View File

@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M 14 9.2 L 9.2 9.2 L 9.2 14 L 6.8 14 L 6.8 9.2 L 2 9.2 L 2 6.8 L 6.8 6.8 L 6.8 2 L 9.2 2 L 9.2 6.8 L 14 6.8 Z" style="fill: rgb(255, 115, 0); stroke-width: 0.4px;"/>
</svg>

After

Width:  |  Height:  |  Size: 318 B

View File

@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M 7 2 L 7 14 L 3.5 14 L 3.5 2 Z M 12.5 14 L 9 14 L 9 2 L 12.5 2 Z" fill="#75BEFF" style="stroke-width: 0.5px;"/>
</svg>

After

Width:  |  Height:  |  Size: 265 B

View File

@ -0,0 +1,3 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M4 2V13.8199L13 7.88L4 2ZM5.5 4.81995L10.3101 7.88L5.5 11V4.81995Z" fill="#89D185"/>
</svg>

After

Width:  |  Height:  |  Size: 197 B

View File

@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.75 7.99988C12.75 10.4852 10.7353 12.4999 8.24999 12.4999C6.41795 12.4999 4.84162 11.4051 4.13953 9.83404L2.74882 10.3989C3.67446 12.5185 5.78923 13.9999 8.24999 13.9999C11.5637 13.9999 14.25 11.3136 14.25 7.99988C14.25 4.68617 11.5637 1.99988 8.24999 1.99988C6.3169 1.99988 4.59732 2.91406 3.5 4.33367V2.49988H2V6.49988L2.75 7.24988H6.25V5.74988H4.35201C5.13008 4.40482 6.58436 3.49988 8.24999 3.49988C10.7353 3.49988 12.75 5.5146 12.75 7.99988Z" fill="#89D185" style="stroke-width: 0.5px;"/>
</svg>

After

Width:  |  Height:  |  Size: 689 B

View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M 16 14 L 14.769 14 L 14.769 13.76 L 14.769 2 L 16 2 L 16 14 Z" fill="#75BEFF" style="" transform="matrix(-1, 0, 0, -1, 30.769, 16)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M 14.769 14 L 14.769 2.181 L 7.385 8.119 Z M 13.539 5 L 13.539 11.181 L 9.587 8.119 Z" fill="#75BEFF" style="" transform="matrix(-1, 0, 0, -1, 22.154, 16.181)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M 7.385 14 L 7.385 2.181 L 0 8.119 Z M 6.154 5 L 6.154 11.181 L 2.203 8.119 Z" fill="#75BEFF" style="" transform="matrix(-1, 0, 0, -1, 7.385, 16.181)"/>
</svg>

After

Width:  |  Height:  |  Size: 744 B

View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M 1.231 2 L 0 2 L 0 2.24 L 0 14 L 1.231 14 L 1.231 2 Z" fill="#75BEFF" style=""/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M 8.615 2.181 L 8.615 14 L 1.231 8.062 Z M 7.385 11.181 L 7.385 5 L 3.433 8.062 Z" fill="#75BEFF" style=""/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M 16 2.181 L 16 14 L 8.615 8.062 Z M 14.769 11.181 L 14.769 5 L 10.818 8.062 Z" fill="#75BEFF" style=""/>
</svg>

After

Width:  |  Height:  |  Size: 591 B

View File

@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M 14.5 9.5 L 1.5 9.5 L 1.5 6.5 L 14.5 6.5 Z" style="fill: rgb(137, 209, 133); stroke-width: 0.4px;"/>
</svg>

After

Width:  |  Height:  |  Size: 254 B

View File

@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M 1.482 2.09 L 1.482 13.91 L 10.482 7.97 L 1.482 2.09 Z M 2.982 4.91 L 7.792 7.97 L 2.982 11.09 L 2.982 4.91 Z" fill="#89D185"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M 13.143 8.872 L 14.518 9.165 L 14.493 10.776 L 13.111 11.028 L 13.874 12.21 L 12.718 13.333 L 11.559 12.537 L 11.261 13.91 L 9.652 13.885 L 9.398 12.504 L 8.217 13.264 L 7.091 12.105 L 7.893 10.948 L 6.518 10.653 L 6.543 9.043 L 7.924 8.792 L 7.16 7.607 L 8.32 6.486 L 9.477 7.282 L 9.772 5.908 L 11.384 5.932 L 11.638 7.316 L 12.82 6.555 L 13.943 7.711 Z M 9.107 9.28 C 8.988 9.568 8.952 9.882 9.006 10.195 C 9.058 10.503 9.203 10.788 9.413 11.015 C 9.624 11.24 9.894 11.393 10.194 11.461 C 10.491 11.53 10.801 11.503 11.08 11.384 C 11.362 11.268 11.607 11.07 11.776 10.813 C 11.952 10.551 12.05 10.249 12.055 9.931 C 12.057 9.513 11.901 9.106 11.617 8.804 C 11.335 8.501 10.947 8.329 10.539 8.319 C 10.237 8.315 9.938 8.403 9.682 8.572 C 9.43 8.744 9.23 8.992 9.107 9.28 Z" style="fill: rgb(174, 78, 151); stroke-width: 0.4px;"/>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -0,0 +1,3 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M13.5 2H12V2.24001L12 14L13.5 14L13.5 2ZM10 2.18094V14L0.999998 8.06218L10 2.18094ZM3.68522 8.06218L8.49976 5L8.49976 11.1809L3.68522 8.06218Z" fill="#75BEFF"/>
</svg>

After

Width:  |  Height:  |  Size: 313 B

View File

@ -0,0 +1,3 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M2.5 2H4V2.24001L4 14L2.5 14L2.5 2ZM6 2.18094V14L15 8.06218L6 2.18094ZM12.3148 8.06218L7.50023 5L7.50023 11.1809L12.3148 8.06218Z" fill="#75BEFF"/>
</svg>

After

Width:  |  Height:  |  Size: 300 B

View File

@ -8,12 +8,22 @@
<file>SkipToEnd.png</file>
<file>SkipToStart.png</file>
<file>RepeatFromStart.png</file>
<file>RepeatFwdBwd.png</file>
<file>PlayBwd.png</file>
<file>Slow.png</file>
<file>Fast.png</file>
<file>Speed.png</file>
<file>Play.svg</file>
<file>Pause.svg</file>
<file>StepFwd.svg</file>
<file>StepBwd.svg</file>
<file>SkipToEnd.svg</file>
<file>SkipToStart.svg</file>
<file>RepeatFromStart.svg</file>
<file>Slow.svg</file>
<file>Fast.svg</file>
<file>Speed.svg</file>
<file>PlayBwd.png</file>
<file>SlowHorizontal.png</file>
<file>FastHorizontal.png</file>
<file>Speed.png</file>
<file>FastHorizontal.png</file>
<file>RepeatFwdBwd.png</file>
</qresource>
</RCC>

View File

@ -76,32 +76,32 @@ void AnimationToolBar::init()
m_fastFrameRate = 20;
// Create actions and widgets
m_animSkipToStartAction = new QAction( QIcon( ":/cafAnimControl/SkipToStart.png" ), tr( "Skip to Start" ), this );
m_animStepBackwardAction = new QAction( QIcon( ":/cafAnimControl/StepBwd.png" ), tr( "Step Backward" ), this );
m_animPauseAction = new QAction( QIcon( ":/cafAnimControl/Pause.png" ), tr( "Pause" ), this );
m_animPlayAction = new QAction( QIcon( ":/cafAnimControl/Play.png" ), tr( "Play" ), this );
m_animSkipToStartAction = new QAction( QIcon( ":/cafAnimControl/SkipToStart.svg" ), tr( "Skip to Start" ), this );
m_animStepBackwardAction = new QAction( QIcon( ":/cafAnimControl/StepBwd.svg" ), tr( "Step Backward" ), this );
m_animPauseAction = new QAction( QIcon( ":/cafAnimControl/Pause.svg" ), tr( "Pause" ), this );
m_animPlayAction = new QAction( QIcon( ":/cafAnimControl/Play.svg" ), tr( "Play" ), this );
m_animPlayPauseButton = new QToolButton( this );
m_animPlayPauseButton->setIcon( m_animPlayAction->icon() );
m_animPlayPauseButton->setToolTip( m_animPlayAction->toolTip() );
QObject::connect( m_animPlayPauseButton, SIGNAL( clicked() ), this, SLOT( playPauseChanged() ) );
m_animStepForwardAction = new QAction( QIcon( ":/cafAnimControl/StepFwd.png" ), tr( "Step Forward" ), this );
m_animSkipToEndAction = new QAction( QIcon( ":/cafAnimControl/SkipToEnd.png" ), tr( "Skip to End" ), this );
m_animStepForwardAction = new QAction( QIcon( ":/cafAnimControl/StepFwd.svg" ), tr( "Step Forward" ), this );
m_animSkipToEndAction = new QAction( QIcon( ":/cafAnimControl/SkipToEnd.svg" ), tr( "Skip to End" ), this );
m_animRepeatFromStartAction =
new QAction( QIcon( ":/cafAnimControl/RepeatFromStart.png" ), tr( "Repeat From start" ), this );
new QAction( QIcon( ":/cafAnimControl/RepeatFromStart.svg" ), tr( "Repeat From start" ), this );
m_animRepeatFromStartAction->setCheckable( true );
m_animSpeedButton = new PopupMenuButton( this );
m_animSpeedButton->setIcon( QIcon( ":/cafAnimControl/Speed.png" ) );
m_animSpeedButton->setIcon( QIcon( ":/cafAnimControl/Speed.svg" ) );
m_animSpeedButton->setToolTip( "Adjust Animation Speed" );
m_frameRateSlowLabel = new QLabel( this );
m_frameRateSlowLabel->setPixmap( QPixmap( ":/cafAnimControl/SlowHorizontal.png" ) );
m_frameRateSlowLabel->setPixmap( QPixmap( ":/cafAnimControl/Slow.svg" ) );
m_frameRateSlowLabel->setToolTip( tr( "Slow" ) );
m_frameRateFastLabel = new QLabel( this );
m_frameRateFastLabel->setPixmap( QPixmap( ":/cafAnimControl/FastHorizontal.png" ) );
m_frameRateFastLabel->setPixmap( QPixmap( ":/cafAnimControl/Fast.svg" ) );
m_frameRateFastLabel->setToolTip( tr( "Fast" ) );
m_frameRateFastLabel->setAlignment( Qt::AlignRight | Qt::AlignVCenter );