2011-09-23 22:06:21 +02:00
|
|
|
/* ============================================================
|
|
|
|
* QupZilla - WebKit based browser
|
2014-01-11 16:11:42 +01:00
|
|
|
* Copyright (C) 2010-2014 David Rosca <nowrep@gmail.com>
|
2011-09-23 22:06:21 +02:00
|
|
|
*
|
|
|
|
* This program 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.
|
|
|
|
*
|
|
|
|
* This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
* ============================================================ */
|
2011-09-11 19:15:06 +02:00
|
|
|
#ifndef TOOLBUTTON_H
|
|
|
|
#define TOOLBUTTON_H
|
|
|
|
|
|
|
|
#include <QToolButton>
|
2014-04-19 13:10:20 +02:00
|
|
|
#include <QTimer>
|
2011-09-11 19:15:06 +02:00
|
|
|
|
2014-02-26 20:03:20 +01:00
|
|
|
#include "qzcommon.h"
|
2012-02-29 18:33:50 +01:00
|
|
|
|
2014-02-19 22:12:32 +01:00
|
|
|
class QUPZILLA_EXPORT ToolButton : public QToolButton
|
2011-09-11 19:15:06 +02:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
2012-02-29 18:33:50 +01:00
|
|
|
|
2011-09-11 19:15:06 +02:00
|
|
|
Q_PROPERTY(QSize fixedsize READ size WRITE setFixedSize)
|
|
|
|
Q_PROPERTY(int fixedwidth READ width WRITE setFixedWidth)
|
|
|
|
Q_PROPERTY(int fixedheight READ height WRITE setFixedHeight)
|
2014-04-19 13:10:20 +02:00
|
|
|
Q_PROPERTY(QPixmap multiIcon READ multiIcon WRITE setMultiIcon)
|
2011-09-11 19:15:06 +02:00
|
|
|
Q_PROPERTY(QIcon icon READ icon WRITE setIcon)
|
|
|
|
Q_PROPERTY(QString themeIcon READ themeIcon WRITE setThemeIcon)
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit ToolButton(QWidget* parent = 0);
|
|
|
|
|
2014-04-19 12:06:48 +02:00
|
|
|
// MultiIcon - Image containing pixmaps for all button states
|
2014-04-19 13:10:20 +02:00
|
|
|
QPixmap multiIcon() const;
|
2014-04-19 12:06:48 +02:00
|
|
|
void setMultiIcon(const QPixmap &icon);
|
2011-09-11 19:15:06 +02:00
|
|
|
|
2014-04-19 12:06:48 +02:00
|
|
|
// ThemeIcon - Standard QToolButton with theme icon
|
|
|
|
QString themeIcon() const;
|
|
|
|
void setThemeIcon(const QString &icon);
|
2011-09-11 19:15:06 +02:00
|
|
|
|
2014-04-19 13:10:20 +02:00
|
|
|
// Icon - Standard QToolButton with icon
|
|
|
|
QIcon icon() const;
|
2014-04-19 12:06:48 +02:00
|
|
|
void setIcon(const QIcon &icon);
|
2014-04-19 13:10:20 +02:00
|
|
|
|
|
|
|
// Menu - Menu is handled in ToolButton and is not passed to QToolButton
|
|
|
|
// There won't be menu indicator shown in the button
|
|
|
|
// QToolButton::MenuButtonPopup is not supported
|
|
|
|
QMenu* menu() const;
|
2014-04-19 12:06:48 +02:00
|
|
|
void setMenu(QMenu* menu);
|
2011-09-11 19:15:06 +02:00
|
|
|
|
2014-04-19 13:10:20 +02:00
|
|
|
// Align the right corner of menu to the right corner of button
|
2013-03-08 21:01:55 +01:00
|
|
|
bool showMenuInside() const;
|
2014-04-19 13:46:23 +02:00
|
|
|
void setShowMenuInside(bool enable);
|
|
|
|
|
|
|
|
// Set the button to look as it was in toolbar
|
|
|
|
// (it now only sets the correct icon size)
|
|
|
|
bool toolbarButtonLook() const;
|
|
|
|
void setToolbarButtonLook(bool enable);
|
2013-11-26 14:14:36 +01:00
|
|
|
|
2011-09-11 19:15:06 +02:00
|
|
|
signals:
|
2011-10-18 21:07:58 +02:00
|
|
|
void middleMouseClicked();
|
2011-12-07 15:17:21 +01:00
|
|
|
void controlClicked();
|
2013-12-24 00:57:01 +01:00
|
|
|
void doubleClicked();
|
2011-09-11 19:15:06 +02:00
|
|
|
|
2014-04-19 13:46:23 +02:00
|
|
|
// It is needed to use these signals with ShowMenuInside
|
2014-03-07 23:20:31 +01:00
|
|
|
void aboutToShowMenu();
|
2014-04-19 13:10:20 +02:00
|
|
|
void aboutToHideMenu();
|
2014-03-07 23:20:31 +01:00
|
|
|
|
2014-02-13 15:27:02 +01:00
|
|
|
private slots:
|
|
|
|
void menuAboutToHide();
|
2014-04-19 13:10:20 +02:00
|
|
|
void showMenu();
|
2014-02-13 15:27:02 +01:00
|
|
|
|
2011-12-17 14:30:54 +01:00
|
|
|
protected:
|
2011-11-06 17:01:23 +01:00
|
|
|
void mousePressEvent(QMouseEvent* e);
|
2011-12-07 15:17:21 +01:00
|
|
|
void mouseReleaseEvent(QMouseEvent* e);
|
2013-12-24 00:57:01 +01:00
|
|
|
void mouseDoubleClickEvent(QMouseEvent* e);
|
2014-04-19 12:06:48 +02:00
|
|
|
void paintEvent(QPaintEvent* e);
|
2011-12-17 14:30:54 +01:00
|
|
|
|
|
|
|
private:
|
2011-09-11 19:15:06 +02:00
|
|
|
QPixmap m_normalIcon;
|
|
|
|
QPixmap m_hoverIcon;
|
|
|
|
QPixmap m_activeIcon;
|
|
|
|
QPixmap m_disabledIcon;
|
|
|
|
QString m_themeIcon;
|
2014-04-19 13:10:20 +02:00
|
|
|
QTimer m_pressTimer;
|
|
|
|
QMenu* m_menu;
|
|
|
|
|
2014-04-19 13:46:23 +02:00
|
|
|
enum Options {
|
|
|
|
MultiIconOption = 1,
|
|
|
|
ShowMenuInsideOption = 2,
|
|
|
|
ToolBarLookOption = 4
|
|
|
|
};
|
|
|
|
Q_DECLARE_FLAGS(OptionsFlags, Options)
|
2014-04-19 15:30:14 +02:00
|
|
|
OptionsFlags m_options;
|
2011-09-11 19:15:06 +02:00
|
|
|
};
|
|
|
|
|
2014-04-19 15:30:14 +02:00
|
|
|
|
2011-09-11 19:15:06 +02:00
|
|
|
#endif // TOOLBUTTON_H
|