1 /* BEGIN_COMMON_COPYRIGHT_HEADER
2  * (c)LGPL2+
3  *
4  * LXQt - a lightweight, Qt based, desktop toolset
5  * https://lxqt.org
6  *
7  * Copyright: 2012 Razor team
8  * Authors:
9  *   Luís Pereira <luis.artur.pereira@gmail.com>
10  *
11  * This program or library is free software; you can redistribute it
12  * and/or modify it under the terms of the GNU Lesser General Public
13  * License as published by the Free Software Foundation; either
14  * version 2.1 of the License, or (at your option) any later version.
15  *
16  * This library is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
19  * Lesser General Public License for more details.
20 
21  * You should have received a copy of the GNU Lesser General
22  * Public License along with this library; if not, write to the
23  * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
24  * Boston, MA 02110-1301 USA
25  *
26  * END_COMMON_COPYRIGHT_HEADER */
27 
28 #ifndef LXQTPANELLIMITS_H
29 #define LXQTPANELLIMITS_H
30 
31 #define PANEL_DEFAULT_SIZE 32
32 #define PANEL_MINIMUM_SIZE 16
33 #define PANEL_MAXIMUM_SIZE 200
34 #define PANEL_HIDE_SIZE 4
35 
36 #define PANEL_DEFAULT_ICON_SIZE 22
37 #define PANEL_DEFAULT_LINE_COUNT 1
38 
39 #define PANEL_DEFAULT_BACKGROUND_COLOR "#CCCCCC"
40 
41 #define PANEL_HIDE_DELAY 500
42 #define PANEL_HIDE_FIRST_TIME (5000 - PANEL_HIDE_DELAY)
43 
44 #define PANEL_SHOW_DELAY 0
45 
46 #define SETTINGS_SAVE_DELAY 3000
47 #endif // LXQTPANELLIMITS_H
48