Blame src/lib/adwaitawidgetexplorer.h

Packit Bot 052d53
/*************************************************************************
Packit Bot 052d53
 * Copyright (C) 2014 by Hugo Pereira Da Costa <hugo.pereira@free.fr>    *
Packit Bot 052d53
 *                                                                       *
Packit Bot 052d53
 * This program is free software; you can redistribute it and/or modify  *
Packit Bot 052d53
 * it under the terms of the GNU General Public License as published by  *
Packit Bot 052d53
 * the Free Software Foundation; either version 2 of the License, or     *
Packit Bot 052d53
 * (at your option) any later version.                                   *
Packit Bot 052d53
 *                                                                       *
Packit Bot 052d53
 * This program is distributed in the hope that it will be useful,       *
Packit Bot 052d53
 * but WITHOUT ANY WARRANTY; without even the implied warranty of        *
Packit Bot 052d53
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
Packit Bot 052d53
 * GNU General Public License for more details.                          *
Packit Bot 052d53
 *                                                                       *
Packit Bot 052d53
 * You should have received a copy of the GNU General Public License     *
Packit Bot 052d53
 * along with this program; if not, write to the                         *
Packit Bot 052d53
 * Free Software Foundation, Inc.,                                       *
Packit Bot 052d53
 * 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA .        *
Packit Bot 052d53
 *************************************************************************/
Packit Bot 052d53
Packit Bot 052d53
#ifndef ADWAITA_WIDGET_EXPLORER_H
Packit Bot 052d53
#define ADWAITA_WIDGET_EXPLORER_H
Packit Bot 052d53
Packit Bot 052d53
#include "adwaitaqt_export.h"
Packit Bot 052d53
Packit Bot 052d53
#include <QEvent>
Packit Bot 052d53
#include <QMap>
Packit Bot 052d53
#include <QObject>
Packit Bot 052d53
#include <QSet>
Packit Bot 052d53
#include <QWidget>
Packit Bot 052d53
Packit Bot 052d53
namespace Adwaita
Packit Bot 052d53
{
Packit Bot 052d53
//* print widget's and parent's information on mouse click
Packit Bot 052d53
class ADWAITAQT_EXPORT WidgetExplorer : public QObject
Packit Bot 052d53
{
Packit Bot 052d53
    Q_OBJECT
Packit Bot 052d53
public:
Packit Bot 052d53
    //* constructor
Packit Bot 052d53
    explicit WidgetExplorer(QObject *parent);
Packit Bot 052d53
Packit Bot 052d53
    //* enable
Packit Bot 052d53
    bool enabled() const;
Packit Bot 052d53
Packit Bot 052d53
    //* enable
Packit Bot 052d53
    void setEnabled(bool);
Packit Bot 052d53
Packit Bot 052d53
    //* widget rects
Packit Bot 052d53
    void setDrawWidgetRects(bool value)
Packit Bot 052d53
    {
Packit Bot 052d53
        _drawWidgetRects = value;
Packit Bot 052d53
    }
Packit Bot 052d53
Packit Bot 052d53
    //* event filter
Packit Bot 052d53
    virtual bool eventFilter(QObject *object, QEvent *event);
Packit Bot 052d53
Packit Bot 052d53
protected:
Packit Bot 052d53
    //* event type
Packit Bot 052d53
    QString eventType(const QEvent::Type &type) const;
Packit Bot 052d53
Packit Bot 052d53
    //* print widget information
Packit Bot 052d53
    QString widgetInformation(const QWidget *widget) const;
Packit Bot 052d53
Packit Bot 052d53
private:
Packit Bot 052d53
    //* enable state
Packit Bot 052d53
    bool _enabled;
Packit Bot 052d53
Packit Bot 052d53
    //* widget rects
Packit Bot 052d53
    bool _drawWidgetRects;
Packit Bot 052d53
Packit Bot 052d53
    //* map event types to string
Packit Bot 052d53
    QMap<QEvent::Type, QString> _eventTypes;
Packit Bot 052d53
};
Packit Bot 052d53
Packit Bot 052d53
} // namespace Adwaita
Packit Bot 052d53
Packit Bot 052d53
#endif // ADWAITA_WIDGET_EXPLORER_H