mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
Rename ApplicationCode to ApplicationLibCode
This commit is contained in:
124
ApplicationLibCode/Application/RiaFontCache.cpp
Normal file
124
ApplicationLibCode/Application/RiaFontCache.cpp
Normal file
@@ -0,0 +1,124 @@
|
||||
/////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Copyright (C) 2017 Statoil ASA
|
||||
//
|
||||
// ResInsight is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// ResInsight is distributed in the hope that it will be useful, but WITHOUT ANY
|
||||
// WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
// FITNESS FOR A PARTICULAR PURPOSE.
|
||||
//
|
||||
// See the GNU General Public License at <http://www.gnu.org/licenses/gpl.html>
|
||||
// for more details.
|
||||
//
|
||||
/////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#include "RiaFontCache.h"
|
||||
|
||||
#include "RiaGuiApplication.h"
|
||||
|
||||
#include "cafFixedAtlasFont.h"
|
||||
|
||||
#include <QDesktopWidget>
|
||||
#include <cmath>
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
caf::FixedAtlasFont::FontSize mapToAtlasFontSize( int pointSize )
|
||||
{
|
||||
if ( pointSize >= 6 && pointSize < 8 )
|
||||
return caf::FixedAtlasFont::POINT_SIZE_6;
|
||||
else if ( pointSize >= 8 && pointSize < 10 )
|
||||
return caf::FixedAtlasFont::POINT_SIZE_8;
|
||||
else if ( pointSize >= 10 && pointSize < 12 )
|
||||
return caf::FixedAtlasFont::POINT_SIZE_10;
|
||||
else if ( pointSize >= 12 && pointSize < 14 )
|
||||
return caf::FixedAtlasFont::POINT_SIZE_12;
|
||||
else if ( pointSize >= 14 && pointSize < 16 )
|
||||
return caf::FixedAtlasFont::POINT_SIZE_14;
|
||||
else if ( pointSize >= 16 && pointSize < 20 )
|
||||
return caf::FixedAtlasFont::POINT_SIZE_16;
|
||||
else if ( pointSize >= 20 && pointSize < 28 )
|
||||
return caf::FixedAtlasFont::POINT_SIZE_24;
|
||||
|
||||
return caf::FixedAtlasFont::POINT_SIZE_32;
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
std::map<caf::FixedAtlasFont::FontSize, cvf::ref<caf::FixedAtlasFont>> RiaFontCache::ms_fonts;
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
cvf::ref<caf::FixedAtlasFont> RiaFontCache::getFont( FontSize pointFontSize )
|
||||
{
|
||||
int pointSize = caf::FontTools::absolutePointSize( pointFontSize );
|
||||
return getFont( pointSize );
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
cvf::ref<caf::FixedAtlasFont> RiaFontCache::getFont( int pointSize )
|
||||
{
|
||||
int currentDPI = 96;
|
||||
if ( RiaGuiApplication::isRunning() )
|
||||
{
|
||||
currentDPI = RiaGuiApplication::desktop()->logicalDpiX();
|
||||
}
|
||||
// the Fixed Atlas Fonts appear to be assuming a DPI of 96, so we need scaling.
|
||||
double scaling = currentDPI / 96.0;
|
||||
int scaledSize = scaling * pointSize;
|
||||
auto atlasFontSize = mapToAtlasFontSize( scaledSize );
|
||||
|
||||
auto existing_it = ms_fonts.find( atlasFontSize );
|
||||
if ( existing_it == ms_fonts.end() )
|
||||
{
|
||||
auto newFont = new caf::FixedAtlasFont( atlasFontSize );
|
||||
bool inserted = false;
|
||||
std::tie( existing_it, inserted ) = ms_fonts.insert( std::make_pair( atlasFontSize, newFont ) );
|
||||
CAF_ASSERT( inserted );
|
||||
}
|
||||
return existing_it->second;
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
/// In the 2019 releases the font size was stored as an enum value rather than actual size
|
||||
/// Use this method for legacy conversion
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
RiaFontCache::FontSize RiaFontCache::legacyEnumToPointSize( int enumValue )
|
||||
{
|
||||
switch ( enumValue )
|
||||
{
|
||||
case 0:
|
||||
return FontSize::FONT_SIZE_8;
|
||||
case 1:
|
||||
return FontSize::FONT_SIZE_10;
|
||||
case 2:
|
||||
return FontSize::FONT_SIZE_12;
|
||||
case 3:
|
||||
return FontSize::FONT_SIZE_14;
|
||||
case 4:
|
||||
return FontSize::FONT_SIZE_16;
|
||||
case 5:
|
||||
return FontSize::FONT_SIZE_24;
|
||||
case 6:
|
||||
return FontSize::FONT_SIZE_32;
|
||||
default:
|
||||
return FontSize::FONT_SIZE_8;
|
||||
}
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
void RiaFontCache::clear()
|
||||
{
|
||||
ms_fonts.clear();
|
||||
}
|
Reference in New Issue
Block a user