--- a/src/ColorSelector.cc Wed Mar 05 02:24:05 2014 +0200 +++ b/src/ColorSelector.cc Wed Mar 05 02:33:58 2014 +0200 @@ -39,7 +39,7 @@ extern_cfg (Float, gl_maincolor_alpha); // ============================================================================= -// ----------------------------------------------------------------------------- +// ============================================================================= ColorSelector::ColorSelector (int defval, QWidget* parent) : QDialog (parent) { // Remove the default color if it's invalid @@ -66,14 +66,14 @@ } // ============================================================================= -// ----------------------------------------------------------------------------- +// ============================================================================= ColorSelector::~ColorSelector() { delete ui; } // ============================================================================= -// ----------------------------------------------------------------------------- +// ============================================================================= void ColorSelector::drawScene() { const int numCols = g_numColumns; @@ -124,21 +124,21 @@ } // ============================================================================= -// ----------------------------------------------------------------------------- +// ============================================================================= int ColorSelector::numRows() const { return (MAX_COLORS / g_numColumns); } // ============================================================================= -// ----------------------------------------------------------------------------- +// ============================================================================= int ColorSelector::viewportWidth() const { return g_numColumns * g_squareSize + 21; } // ============================================================================= -// ----------------------------------------------------------------------------- +// ============================================================================= void ColorSelector::drawColorInfo() { if (!getSelection()) @@ -151,7 +151,7 @@ } // ============================================================================= -// ----------------------------------------------------------------------------- +// ============================================================================= void ColorSelector::resizeEvent (QResizeEvent* ev) { // If this is the first resize, check if we need to scroll down to see the @@ -175,7 +175,7 @@ } // ============================================================================= -// ----------------------------------------------------------------------------- +// ============================================================================= void ColorSelector::mousePressEvent (QMouseEvent* event) { QPointF scenepos = ui->viewport->mapToScene (event->pos()); @@ -195,7 +195,7 @@ } // ============================================================================= -// ----------------------------------------------------------------------------- +// ============================================================================= bool ColorSelector::selectColor (int& val, int defval, QWidget* parent) { ColorSelector dlg (defval, parent);