File: NumberEdit.cpp

package info (click to toggle)
edb-debugger 1.3.0-2.2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 5,124 kB
  • sloc: cpp: 46,241; xml: 4,998; ansic: 3,088; sh: 52; asm: 33; makefile: 5
file content (40 lines) | stat: -rw-r--r-- 1,116 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40

#include "NumberEdit.h"
#include "util/Font.h"
#include <QApplication>

namespace ODbgRegisterView {

NumberEdit::NumberEdit(int column, int colSpan, QWidget *parent)
	: QLineEdit(parent), column_(column), colSpan_(colSpan) {
}

int NumberEdit::column() const {
	return column_;
}

int NumberEdit::colSpan() const {
	return colSpan_;
}

void NumberEdit::setNaturalWidthInChars(int nChars) {
	naturalWidthInChars_ = nChars;
}

QSize NumberEdit::minimumSizeHint() const {
	return sizeHint();
}

QSize NumberEdit::sizeHint() const {

	const auto baseHint = QLineEdit::sizeHint();
	// taking long enough reference char to make enough room even in presence of inner shadows like in Oxygen style
	const auto charWidth       = Font::maxWidth(QFontMetrics(font()));
	const auto textMargins     = this->textMargins();
	const auto contentsMargins = this->contentsMargins();
	int customWidth            = charWidth * naturalWidthInChars_ + textMargins.left() + contentsMargins.left() + textMargins.right() + contentsMargins.right();

	return QSize(customWidth, baseHint.height()).expandedTo(QApplication::globalStrut());
}

}