kwave  18.07.70
Colors.h
Go to the documentation of this file.
1 /***************************************************************************
2  Colors.h - Kwave color sets
3  -------------------
4  begin : Sat Oct 05 2013
5  copyright : (C) 2013 by Thomas Eschenbacher
6  email : Thomas.Eschenbacher@gmx.de
7  ***************************************************************************/
8 
9 /***************************************************************************
10  * *
11  * This program is free software; you can redistribute it and/or modify *
12  * it under the terms of the GNU General Public License as published by *
13  * the Free Software Foundation; either version 2 of the License, or *
14  * (at your option) any later version. *
15  * *
16  ***************************************************************************/
17 
18 #ifndef COLORS_H
19 #define COLORS_H
20 
21 #include "config.h"
22 
23 #include <QtGlobal>
24 #include <QColor>
25 
26 namespace Kwave
27 {
28  class Colors
29  {
30  public:
31  typedef struct {
33  QColor background;
34 
36  QColor sample;
37 
39  QColor interpolated;
40 
42  QColor zero;
43 
45  QColor zero_unused;
46  } ColorSet;
47 
49  static Q_DECL_EXPORT ColorSet Normal;
50 
52  static Q_DECL_EXPORT ColorSet Disabled;
53 
54  };
55 }
56 
57 #endif /* COLORS_H */
58 
59 //***************************************************************************
60 //***************************************************************************
Definition: App.h:33
static Q_DECL_EXPORT ColorSet Disabled
Definition: Colors.h:52
static Q_DECL_EXPORT ColorSet Normal
Definition: Colors.h:49