// Copyright(c) 2017-2018 Alejandro Sirgo Rica & Contributors
//
// This file is part of Flameshot.
//
// Flameshot is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// Flameshot is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with Flameshot. If not, see .
#pragma once
#include "capturebutton.h"
#include
#include
#include
class CaptureButton;
class QRect;
class QPoint;
class ButtonHandler : public QObject {
Q_OBJECT
public:
ButtonHandler(const QVector&, QObject *parent = nullptr);
explicit ButtonHandler(QObject *parent = nullptr);
void hideSectionUnderMouse(const QPoint &p);
bool isVisible() const;
bool buttonsAreInside() const;
size_t size() const;
void setButtons(const QVector);
bool contains(const QPoint &p) const;
void updateScreenRegions(const QVector &rects);
void updateScreenRegions(const QRect &rect);
public slots:
void updatePosition(const QRect &selection);
void hide();
void show();
private:
QVector horizontalPoints(const QPoint ¢er, const int elements,
const bool leftToRight) const;
QVector verticalPoints(const QPoint ¢er, const int elements,
const bool upToDown) const;
QRect intersectWithAreas(const QRect &rect);
QVector m_vectorButtons;
QRegion m_screenRegions;
QRect m_selection;
int m_separator;
int m_buttonExtendedSize;
int m_buttonBaseSize;
bool m_buttonsAreInside;
bool m_blockedRight;
bool m_blockedLeft;
bool m_blockedBotton;
bool m_blockedTop;
bool m_oneHorizontalBlocked;
bool m_horizontalyBlocked;
bool m_allSidesBlocked;
// aux methods
void init();
void resetRegionTrack();
void updateBlockedSides();
void expandSelection();
void positionButtonsInside(int index);
void ensureSelectionMinimunSize();
void moveButtonsToPoints(const QVector &points, int &index);
void adjustHorizontalCenter(QPoint ¢er);
};