File indexing completed on 2024-05-12 05:40:39

0001 /*
0002     Cahoots is a crossplatform real-time collaborative text editor.
0003 
0004     Copyright (C) 2010 Chris Dimpfl, Anandi Hira, David Vega
0005 
0006     This program is free software: you can redistribute it and/or modify
0007     it under the terms of the GNU General Public License as published by
0008     the Free Software Foundation, either version 3 of the License, or
0009     (at your option) any later version.
0010 
0011     This program is distributed in the hope that it will be useful,
0012     but WITHOUT ANY WARRANTY; without even the implied warranty of
0013     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
0014     GNU General Public License for more details.
0015 
0016     You should have received a copy of the GNU General Public License
0017     along with this program.  If not, see <http://www.gnu.org/licenses/>.
0018 */
0019 #ifndef UTILITIES_H
0020 #define UTILITIES_H
0021 
0022 #include "rwidgets_global.h"
0023 #include <QString>
0024 class RWIDGET_EXPORT Utilities
0025 {
0026 public:
0027     Utilities();
0028     // Fonts:
0029     static QString s_codeFont;
0030     static int s_codeFontSize;
0031     static QString s_labelFont;
0032     static int s_labelFontSize;
0033     static QString s_chatFont;
0034     static int s_chatFontSize;
0035 
0036     static QString getSystem();
0037 };
0038 
0039 #endif // UTILITIES_H