2016-03-22 12:20:20 +03:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2016 by Daniel Molkentin <danimo@owncloud.com>
|
|
|
|
*
|
|
|
|
* 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 2 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.
|
|
|
|
*/
|
|
|
|
|
2016-04-12 17:24:06 +03:00
|
|
|
#include <QStyle>
|
|
|
|
#include <QStyleOptionFrame>
|
|
|
|
|
2016-03-22 12:20:20 +03:00
|
|
|
#include "postfixlineedit.h"
|
|
|
|
|
|
|
|
namespace OCC {
|
|
|
|
|
2016-04-12 17:24:06 +03:00
|
|
|
const int horizontalMargin(4);
|
|
|
|
const int verticalMargin(4);
|
2016-03-22 12:20:20 +03:00
|
|
|
|
|
|
|
PostfixLineEdit::PostfixLineEdit(QWidget *parent)
|
2016-04-12 17:24:06 +03:00
|
|
|
: QLineEdit(parent)
|
2016-03-22 12:20:20 +03:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void PostfixLineEdit::setPostfix(const QString &postfix)
|
|
|
|
{
|
|
|
|
_postfix = postfix;
|
2016-04-12 17:24:06 +03:00
|
|
|
QFontMetricsF fm(font());
|
|
|
|
QMargins tm = textMargins();
|
|
|
|
tm.setRight(tm.right() + fm.width(_postfix) + verticalMargin);
|
|
|
|
setTextMargins(tm);
|
2016-03-22 12:20:20 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
QString PostfixLineEdit::postfix() const
|
|
|
|
{
|
|
|
|
return _postfix;
|
|
|
|
}
|
|
|
|
|
2016-04-12 17:24:06 +03:00
|
|
|
QString PostfixLineEdit::fullText() const
|
2016-03-22 12:20:20 +03:00
|
|
|
{
|
2016-04-12 17:24:06 +03:00
|
|
|
return text() + _postfix;
|
2016-03-22 12:20:20 +03:00
|
|
|
}
|
|
|
|
|
2016-04-12 17:24:06 +03:00
|
|
|
void PostfixLineEdit::setFullText(const QString &text)
|
2016-03-22 12:20:20 +03:00
|
|
|
{
|
2016-04-12 17:24:06 +03:00
|
|
|
QString prefixString = text;
|
|
|
|
if (prefixString.endsWith(postfix())) {
|
|
|
|
prefixString.chop(postfix().length());
|
2016-03-22 12:20:20 +03:00
|
|
|
}
|
2016-04-12 17:24:06 +03:00
|
|
|
setText(prefixString);
|
2016-03-22 12:20:20 +03:00
|
|
|
}
|
|
|
|
|
2016-04-12 17:24:06 +03:00
|
|
|
void PostfixLineEdit::paintEvent(QPaintEvent *pe)
|
2016-03-22 12:20:20 +03:00
|
|
|
{
|
2016-04-12 17:24:06 +03:00
|
|
|
QLineEdit::paintEvent(pe);
|
|
|
|
QPainter p(this);
|
|
|
|
|
|
|
|
//
|
|
|
|
p.setPen(palette().color(QPalette::Disabled, QPalette::Text));
|
|
|
|
QFontMetricsF fm(font());
|
|
|
|
int start = rect().right() - fm.width(_postfix);
|
|
|
|
QStyleOptionFrame panel;
|
|
|
|
initStyleOption(&panel);
|
|
|
|
QRect r = style()->subElementRect(QStyle::SE_LineEditContents, &panel, this);
|
|
|
|
r.setTop(r.top() + horizontalMargin - 1);
|
|
|
|
QRect postfixRect(r);
|
|
|
|
|
|
|
|
postfixRect.setLeft(start - verticalMargin);
|
|
|
|
p.drawText(postfixRect, _postfix);
|
2016-03-22 12:20:20 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace OCC
|