]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt4/qt_helpers.cpp
Make a string translatable
[lyx.git] / src / frontends / qt4 / qt_helpers.cpp
index 1e3befc79fffb040e7d7091802ac02aae468c244..f7ec99b13169432163956b37b3e4402031e27710 100644 (file)
@@ -35,6 +35,7 @@
 #include "support/PathChanger.h"
 #include "support/Systemcall.h"
 
+#include <QApplication>
 #include <QCheckBox>
 #include <QComboBox>
 #include <QLineEdit>
@@ -230,6 +231,27 @@ void setValid(QWidget * widget, bool valid)
        }
 }
 
+
+void focusAndHighlight(QAbstractItemView * w)
+{
+       w->setFocus();
+       w->setCurrentIndex(w->currentIndex());
+       w->scrollTo(w->currentIndex());
+}
+
+
+void setMessageColour(list<QWidget *> highlighted, list<QWidget *> plain)
+{
+       QPalette pal = QApplication::palette();
+       QPalette newpal(pal.color(QPalette::Active, QPalette::HighlightedText),
+                       pal.color(QPalette::Active, QPalette::Highlight));
+       for (QWidget * w : highlighted)
+               w->setPalette(newpal);
+       for (QWidget * w : plain)
+               w->setPalette(pal);
+}
+
+
 /// wrapper to hide the change of method name to setSectionResizeMode
 void setSectionResizeMode(QHeaderView * view,
     int logicalIndex, QHeaderView::ResizeMode mode) {
@@ -614,17 +636,16 @@ QString formatToolTip(QString text, int em)
        QFont const font = QToolTip::font();
        int const px_width = em * QFontMetrics(font).width("M");
        // Determine the ideal width of the tooltip
-    QTextDocument td("");
-    td.setHtml(text);
-    td.setDefaultFont(QToolTip::font());
-    td.setTextWidth(px_width);
-    double best_width = td.idealWidth();
+       QTextDocument td("");
+       td.setHtml(text);
+       td.setDefaultFont(QToolTip::font());
+       td.setTextWidth(px_width);
+       double best_width = td.idealWidth();
        // Set the line wrapping with appropriate width
        return QString("<html><body><table><tr>"
                       "<td align=justify width=%1>%2</td>"
                       "</tr></table></body></html>")
                .arg(QString::number(int(best_width) + 1), text);
-       return text;
 }