// -*- Mode: C++; indent-tabs-mode: nil; tab-width: 2 -*- /* * Copyright (C) 2014 Canonical Ltd * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License version 3 as * published by the Free Software Foundation. * * This program 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 for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * * Authored by: Brandon Schaefer */ #ifndef EM_CONVERTER_H #define EM_CONVERTER_H #include namespace unity { class EMConverter { public: typedef std::shared_ptr Ptr; EMConverter(int font_size = 0, double dpi = 96.0); bool SetFontSize(int font_size); bool SetDPI(double dpi); int GetFontSize() const; double GetDPI() const; double CP(int pixels) const; double DPIScale() const; double PtToPx(int pt); private: void UpdatePixelsPerEM(); void UpdateBasePixelsPerEM(); double EMToPixels(double em) const; double PixelsToBaseEM(int pixels) const; double pixels_per_em_; double base_pixels_per_em_; double dpi_; int font_size_; }; } // namespace unity #endif // EM_CONVERTER_H