14 * |
14 * |
15 * You should have received a copy of the GNU General Public License |
15 * You should have received a copy of the GNU General Public License |
16 * along with this program. If not, see <http://www.gnu.org/licenses/>. |
16 * along with this program. If not, see <http://www.gnu.org/licenses/>. |
17 * ===================================================================== |
17 * ===================================================================== |
18 * |
18 * |
19 * colorSelectDialog.cpp: Color selector box. |
19 * colorSelectDialog.cxx: Color selector box. |
20 */ |
20 */ |
21 |
21 |
22 #include <QGraphicsScene> |
22 #include <QGraphicsScene> |
23 #include <QGraphicsItem> |
23 #include <QGraphicsItem> |
24 #include <QMouseEvent> |
24 #include <QMouseEvent> |
29 #include "ColorSelector.h" |
29 #include "ColorSelector.h" |
30 #include "Colors.h" |
30 #include "Colors.h" |
31 #include "Configuration.h" |
31 #include "Configuration.h" |
32 #include "Misc.h" |
32 #include "Misc.h" |
33 #include "ui_colorsel.h" |
33 #include "ui_colorsel.h" |
34 #include "moc_ColorSelector.cpp" |
34 #include "moc_ColorSelector.cxx" |
35 |
35 |
36 static const int g_numColumns = 16; |
36 static const int g_numColumns = 16; |
37 static const int g_squareSize = 32; |
37 static const int g_squareSize = 32; |
38 |
38 |
39 extern_cfg (String, gl_maincolor); |
39 extern_cfg (String, gl_maincolor); |