Files
create/src/Mod/TechDraw/Gui/PreferencesGui.h
2020-04-24 11:13:49 -04:00

70 lines
2.6 KiB
C++

/***************************************************************************
* Copyright (c) 2020 WandererFan <wandererfan@gmail.com> *
* *
* This file is part of the FreeCAD CAx development system. *
* *
* This library is free software; you can redistribute it and/or *
* modify it under the terms of the GNU Library General Public *
* License as published by the Free Software Foundation; either *
* version 2 of the License, or (at your option) any later version. *
* *
* This library 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 Library General Public License for more details. *
* *
* You should have received a copy of the GNU Library General Public *
* License along with this library; see the file COPYING.LIB. If not, *
* write to the Free Software Foundation, Inc., 59 Temple Place, *
* Suite 330, Boston, MA 02111-1307, USA *
* *
***************************************************************************/
#ifndef _PreferencesGui_h_
#define _PreferencesGui_h_
class QFont;
class QString;
class QColor;
#include <Mod/TechDraw/App/Preferences.h>
namespace TechDrawGui
{
//getters for parameters used in multiple places.
class TechDrawGuiExport PreferencesGui {
public:
static QFont labelFontQFont();
static int labelFontSizePX();
static int dimFontSizePX();
static QColor normalQColor();
static QColor selectQColor();
static QColor preselectQColor();
static App::Color sectionLineColor();
static QColor sectionLineQColor();
static App::Color centerColor();
static QColor centerQColor();
static QColor vertexQColor();
static App::Color leaderColor();
static QColor leaderQColor();
static App::Color dimColor();
static QColor dimQColor();
static int dimArrowStyle();
static double dimArrowSize();
static double edgeFuzz();
static Qt::PenStyle sectionLineStyle();
static int mattingStyle();
static QString weldingDirectory();
};
} //end namespace TechDrawGui
#endif