diff --git a/src/frontends/qt2/ChangeLog b/src/frontends/qt2/ChangeLog index 690440c089..19d6cbfde2 100644 --- a/src/frontends/qt2/ChangeLog +++ b/src/frontends/qt2/ChangeLog @@ -1,3 +1,9 @@ +2002-08-29 John Levon + + * QtView.C: add back in allow/prohibitInput (for now) + + * TODO: update + 2002-08-29 John Levon * Toolbar_pimpl.C: mathed math-insert - skip diff --git a/src/frontends/qt2/QtView.C b/src/frontends/qt2/QtView.C index 0cb50062d9..b9bd3d30a8 100644 --- a/src/frontends/qt2/QtView.C +++ b/src/frontends/qt2/QtView.C @@ -141,15 +141,16 @@ void QtView::show(int x, int y, string const & title) } +// it's not at all clear that these are actually +// needed anywhere in the source. Something to +// check on a rainy day. void QtView::prohibitInput() const { - // FIXME - //setFocusPolicy(QWidget::NoFocus); + setFocusPolicy(QWidget::NoFocus); } void QtView::allowInput() const { - // FIXME - //setFocusPolicy(QWidget::strongFocus); + setFocusPolicy(QWidget::strongFocus); } diff --git a/src/frontends/qt2/TODO b/src/frontends/qt2/TODO index 0d106a9564..852047d46e 100644 --- a/src/frontends/qt2/TODO +++ b/src/frontends/qt2/TODO @@ -57,6 +57,11 @@ QLyXKeySym - getISOEncoded - get this to work (*) + +QMathsPanel + + - implement me (*) + QPreferences - implement me (*) @@ -65,14 +70,6 @@ QSendTo - implement me -QShowInfo - - - dunno about this one - QTabular - implement me (need MVC) (*) - -QtView - - - decide what to do about prohibit/allowInput