lyx_mirror/src/frontends/qt4/FancyLineEdit.h

114 lines
2.9 KiB
C
Raw Normal View History

/**
* \file fancylineedit.h
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* \author Nokia Corporation (qt-info@nokia.com)
*
* Full author contact details are available in file CREDITS.
*
*/
// Code taken from the Qt Creator project and customized a little
#ifndef FANCYLINEEDIT_H
#define FANCYLINEEDIT_H
#include <QLineEdit>
#include <QAbstractButton>
namespace lyx {
namespace frontend {
class FancyLineEditPrivate;
class IconButton: public QAbstractButton
{
Q_OBJECT
Q_PROPERTY(float iconOpacity READ iconOpacity WRITE setIconOpacity)
Q_PROPERTY(bool autoHide READ hasAutoHide WRITE setAutoHide)
Q_PROPERTY(QPixmap pixmap READ pixmap WRITE setPixmap)
public:
2017-02-26 22:15:50 +01:00
explicit IconButton(QWidget *parent = 0);
void paintEvent(QPaintEvent *event);
void setPixmap(const QPixmap &pixmap) { m_pixmap = pixmap; update(); }
QPixmap pixmap() const { return m_pixmap; }
float iconOpacity() { return m_iconOpacity; }
void setIconOpacity(float value) { m_iconOpacity = value; update(); }
void animateShow(bool visible);
void setAutoHide(bool hide) { m_autoHide = hide; }
bool hasAutoHide() const { return m_autoHide; }
private:
2017-02-26 22:15:50 +01:00
float m_iconOpacity;
bool m_autoHide;
QPixmap m_pixmap;
};
/* A line edit with an embedded pixmap on one side that is connected to
* a menu. Additionally, it can display a grayed hintText (like "Type Here to")
* when not focused and empty. When connecting to the changed signals and
* querying text, one has to be aware that the text is set to that hint
* text if isShowingHintText() returns true (that is, does not contain
* valid user input).
*/
class FancyLineEdit : public QLineEdit
{
Q_DISABLE_COPY(FancyLineEdit)
Q_OBJECT
Q_ENUMS(Side)
public:
2017-02-26 22:15:50 +01:00
enum Side {Left = 0, Right = 1};
Q_SIGNALS:
2017-02-26 22:15:50 +01:00
void buttonClicked(Side side);
void leftButtonClicked();
void rightButtonClicked();
void downPressed();
public:
2017-02-26 22:15:50 +01:00
explicit FancyLineEdit(QWidget *parent = 0);
~FancyLineEdit();
2017-02-26 22:15:50 +01:00
QPixmap buttonPixmap(Side side) const;
void setButtonPixmap(Side side, const QPixmap &pixmap);
2017-02-26 22:15:50 +01:00
QMenu *buttonMenu(Side side) const;
void setButtonMenu(Side side, QMenu *menu);
2017-02-26 22:15:50 +01:00
void setButtonVisible(Side side, bool visible);
bool isButtonVisible(Side side) const;
2017-02-26 22:15:50 +01:00
void setButtonToolTip(Side side, const QString &);
void setButtonFocusPolicy(Side side, Qt::FocusPolicy policy);
2017-02-26 22:15:50 +01:00
// Set whether tabbing in will trigger the menu.
void setMenuTabFocusTrigger(Side side, bool v);
bool hasMenuTabFocusTrigger(Side side) const;
2017-02-26 22:15:50 +01:00
// Set if icon should be hidden when text is empty
void setAutoHideButton(Side side, bool h);
bool hasAutoHideButton(Side side) const;
private Q_SLOTS:
2017-02-26 22:15:50 +01:00
void checkButtons(const QString &);
void iconClicked();
protected:
2017-02-26 22:15:50 +01:00
virtual void resizeEvent(QResizeEvent *e);
virtual void keyPressEvent(QKeyEvent *e);
private:
2017-02-26 22:15:50 +01:00
void updateMargins();
void updateButtonPositions();
2017-02-26 22:15:50 +01:00
FancyLineEditPrivate *m_d;
QString m_oldText;
};
}
}
#endif // FANCYLINEEDIT_H