File indexing completed on 2024-04-28 05:32:12

0001 #ifndef oxygenmetrics_h
0002 #define oxygenmetrics_h
0003 
0004 /*
0005 * this file is part of the oxygen gtk engine
0006 * SPDX-FileCopyrightText: 2010 Hugo Pereira Da Costa <hugo.pereira@free.fr>
0007 * SPDX-FileCopyrightText: 2010 Ruslan Kabatsayev <b7.10110111@gmail.com>
0008 *
0009 * SPDX-License-Identifier: LGPL-2.0-or-later
0010 */
0011 
0012 namespace Oxygen
0013 {
0014 
0015     //! metrics
0016     /*! these are copied from the old KStyle WidgetProperties */
0017     enum Metrics
0018     {
0019 
0020         /*
0021         checkbox. Do not change, unless
0022         changing the actual cached pixmap size
0023         */
0024         CheckBox_Size = 21,
0025 
0026         // slider groove height
0027         Slider_GrooveWidth = 7,
0028 
0029         // menu vertical offset
0030         Menu_VerticalOffset = 1,
0031 
0032         /*
0033         entries size margins. Do not change, unless
0034         changing the corresponding oxygen-entry-margins style
0035         in gtkrc
0036         */
0037         Entry_SideMargin = 3
0038 
0039     };
0040 }
0041 
0042 #endif