14 lines
263 B
C++
14 lines
263 B
C++
#include "colorwidget.h"
|
|
#include <iostream>
|
|
|
|
using std::cout;
|
|
using std::endl;
|
|
|
|
ColorWidget::ColorWidget(QWidget * parent) : QWidget(parent) {
|
|
}
|
|
|
|
void ColorWidget::mouseDoubleClickEvent(QMouseEvent * e) {
|
|
Q_UNUSED(e);
|
|
emit this->doubleClickedSignal();
|
|
}
|