]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt4/LengthCombo.h
Use the command-alternatives sequence as defined in menus.bind
[lyx.git] / src / frontends / qt4 / LengthCombo.h
index 1701dcfa0fc73a20b57909f9ca17ad06ed1420ca..2545a9660634a9baa792110229c7a2cf38210691 100644 (file)
@@ -14,7 +14,7 @@
 
 #include <QComboBox>
 
-#include "VSpace.h"
+#include "Length.h"
 
 
 namespace lyx {
@@ -30,7 +30,7 @@ public:
        LengthCombo(QWidget * parent);
 
        /// set the current item from unit
-       virtual void setCurrentItem(lyx::Length::UNIT unit);
+       void setCurrentItem(lyx::Length::UNIT unit);
        /// set the current item from length string
        virtual void setCurrentItem(QString const & item);
        /// set the current item from int
@@ -40,11 +40,13 @@ public:
        /// enable the widget
        virtual void setEnabled(bool b);
        /// use the %-items?
-       virtual void noPercents();
+       void noPercents();
+       /// Remove EM, EX and MU units
+       void removeFontDependent();
        /// remove a unit from the combo
-       virtual void removeUnit(lyx::Length::UNIT unit);
+       void removeUnit(lyx::Length::UNIT unit);
        /// add a unit to the combo
-       virtual void addUnit(lyx::Length::UNIT unit);
+       void addUnit(lyx::Length::UNIT unit);
 
 protected Q_SLOTS:
        virtual void hasActivated(int index);
@@ -54,7 +56,7 @@ Q_SIGNALS:
 };
 
 
-} // namesapce frontend
+} // namespace frontend
 } // namespace lyx
 
 #endif // LENGTHCOMBO_H