| 1525 | } |
| 1526 | |
| 1527 | QColor QHexView::getReadableColor(QColor c) const { |
| 1528 | QPalette palette = this->palette(); |
| 1529 | return QHexView::isColorLight(c) |
| 1530 | ? palette.color(QPalette::Normal, QPalette::WindowText) |
| 1531 | : palette.color(QPalette::Normal, QPalette::HighlightedText); |
| 1532 | } |
| 1533 | |
| 1534 | QByteArray QHexView::selectedBytes() const { |
| 1535 | return m_hexcursor->hasSelection() |