Changed clang format to new agreement

This commit is contained in:
Jeremy Borgman
2020-09-23 20:39:30 -05:00
committed by borgmanJeremy
parent 2cbccc3d0a
commit 0d5386edd4
167 changed files with 8567 additions and 9081 deletions

View File

@@ -25,76 +25,66 @@ namespace {
SelectionTool::SelectionTool(QObject* parent)
: AbstractTwoPointTool(parent)
{
m_supportsDiagonalAdj = true;
m_supportsDiagonalAdj = true;
}
bool
SelectionTool::closeOnButtonPressed() const
bool SelectionTool::closeOnButtonPressed() const
{
return false;
return false;
}
QIcon
SelectionTool::icon(const QColor& background, bool inEditor) const
QIcon SelectionTool::icon(const QColor& background, bool inEditor) const
{
Q_UNUSED(inEditor);
return QIcon(iconPath(background) + "square-outline.svg");
Q_UNUSED(inEditor);
return QIcon(iconPath(background) + "square-outline.svg");
}
QString
SelectionTool::name() const
QString SelectionTool::name() const
{
return tr("Rectangular Selection");
return tr("Rectangular Selection");
}
ToolType
SelectionTool::nameID() const
ToolType SelectionTool::nameID() const
{
return ToolType::SELECTION;
return ToolType::SELECTION;
}
QString
SelectionTool::description() const
QString SelectionTool::description() const
{
return tr("Set Selection as the paint tool");
return tr("Set Selection as the paint tool");
}
CaptureTool*
SelectionTool::copy(QObject* parent)
CaptureTool* SelectionTool::copy(QObject* parent)
{
return new SelectionTool(parent);
return new SelectionTool(parent);
}
void
SelectionTool::process(QPainter& painter,
const QPixmap& pixmap,
bool recordUndo)
void SelectionTool::process(QPainter& painter,
const QPixmap& pixmap,
bool recordUndo)
{
if (recordUndo) {
updateBackup(pixmap);
}
painter.setPen(QPen(m_color, m_thickness));
painter.drawRect(QRect(m_points.first, m_points.second));
if (recordUndo) {
updateBackup(pixmap);
}
painter.setPen(QPen(m_color, m_thickness));
painter.drawRect(QRect(m_points.first, m_points.second));
}
void
SelectionTool::paintMousePreview(QPainter& painter,
const CaptureContext& context)
void SelectionTool::paintMousePreview(QPainter& painter,
const CaptureContext& context)
{
painter.setPen(QPen(context.color, PADDING_VALUE + context.thickness));
painter.drawLine(context.mousePos, context.mousePos);
painter.setPen(QPen(context.color, PADDING_VALUE + context.thickness));
painter.drawLine(context.mousePos, context.mousePos);
}
void
SelectionTool::drawStart(const CaptureContext& context)
void SelectionTool::drawStart(const CaptureContext& context)
{
m_color = context.color;
m_thickness = context.thickness + PADDING_VALUE;
m_points.first = context.mousePos;
m_points.second = context.mousePos;
m_color = context.color;
m_thickness = context.thickness + PADDING_VALUE;
m_points.first = context.mousePos;
m_points.second = context.mousePos;
}
void
SelectionTool::pressed(const CaptureContext& context)
void SelectionTool::pressed(const CaptureContext& context)
{
Q_UNUSED(context);
Q_UNUSED(context);
}