From 1197c48ed3045e09107d140225e2a76edfc173be Mon Sep 17 00:00:00 2001 From: John Levon Date: Thu, 29 Aug 2002 08:43:06 +0000 Subject: [PATCH] small change git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5167 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/frontends/qt2/ChangeLog | 6 ++++++ src/frontends/qt2/QtView.C | 9 +++++---- src/frontends/qt2/TODO | 13 +++++-------- 3 files changed, 16 insertions(+), 12 deletions(-) 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