| 794 | qint64 QHexView::lastLine() const { return qMax<qint64>(0, this->lines() - 1); } |
| 795 | |
| 796 | qreal QHexView::hexColumnWidth() const { |
| 797 | int l = 0; |
| 798 | |
| 799 | for(auto i = 0u; i < m_options.linelength; i += m_options.grouplength) |
| 800 | l += (2 * m_options.grouplength) + 1; |
| 801 | |
| 802 | return this->getNCellsWidth(l); |
| 803 | } |
| 804 | |
| 805 | unsigned int QHexView::addressWidth() const { |
| 806 | if(!m_hexdocument || m_options.addresswidth) |
no test coverage detected