mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-24 08:34:08 +00:00
64 lines
1.4 KiB
C++
64 lines
1.4 KiB
C++
|
/* This file is (c) 2012 Tvangeste <i.4m.l33t@yandex.ru>
|
||
|
* Part of GoldenDict. Licensed under GPLv3 or later, see the LICENSE file */
|
||
|
|
||
|
#ifndef EXTLINEEDIT_H
|
||
|
#define EXTLINEEDIT_H
|
||
|
|
||
|
#include <QLineEdit>
|
||
|
#include <QAbstractButton>
|
||
|
|
||
|
class IconButton: public QAbstractButton
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
Q_PROPERTY(QPixmap pixmap READ pixmap WRITE setPixmap)
|
||
|
|
||
|
public:
|
||
|
explicit IconButton(QWidget * parent = 0);
|
||
|
void paintEvent(QPaintEvent * event);
|
||
|
void setPixmap(const QPixmap & pixmap) { m_pixmap = pixmap; update(); }
|
||
|
QPixmap pixmap() const { return m_pixmap; }
|
||
|
|
||
|
private:
|
||
|
QPixmap m_pixmap;
|
||
|
};
|
||
|
|
||
|
class ExtLineEdit : public QLineEdit
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
Q_ENUMS(Side)
|
||
|
|
||
|
public:
|
||
|
enum Side { Left = 0, Right = 1 };
|
||
|
|
||
|
explicit ExtLineEdit(QWidget * parent = 0);
|
||
|
~ExtLineEdit();
|
||
|
|
||
|
QPixmap buttonPixmap(Side side) const;
|
||
|
void setButtonPixmap(Side side, const QPixmap &pixmap);
|
||
|
|
||
|
void setButtonVisible(Side side, bool visible);
|
||
|
bool isButtonVisible(Side side) const;
|
||
|
|
||
|
void setButtonToolTip(Side side, const QString &);
|
||
|
void setButtonFocusPolicy(Side side, Qt::FocusPolicy policy);
|
||
|
|
||
|
signals:
|
||
|
void leftButtonClicked();
|
||
|
void rightButtonClicked();
|
||
|
|
||
|
private slots:
|
||
|
void iconClicked();
|
||
|
|
||
|
protected:
|
||
|
virtual void resizeEvent( QResizeEvent * e );
|
||
|
|
||
|
private:
|
||
|
void updateMargins();
|
||
|
void updateButtonPositions();
|
||
|
QPixmap pixmaps[2];
|
||
|
IconButton * iconButtons[2];
|
||
|
bool iconEnabled[2];
|
||
|
};
|
||
|
|
||
|
#endif // EXTLINEEDIT_H
|