Re: Single-paragraph redraw

2006-12-05 Thread Andre Poenitz
aragraph need to > be updated. (BufferView.h/C) > > /// \sa WorkArea > /// \retval (false, xxx) if no redraw is required > /// \retval (true, true) if a single paragraph redraw is needed > /// \retval (true, false) if a full redraw is needed > st

Re: Single-paragraph redraw

2006-12-04 Thread Bo Peng
> >1. mouse_motion returns (true, true) when a single paragraph need to > >be updated. (BufferView.h/C) > > > >/// \sa WorkArea > >/// \retval (false, xxx) if no redraw is required > >/// \retval (true, true) if a single paragraph redraw is needed &

Re: Single-paragraph redraw

2006-12-04 Thread Martin Vermeer
>1. mouse_motion returns (true, true) when a single paragraph need to > >be updated. (BufferView.h/C) > > > >/// \sa WorkArea > >/// \retval (false, xxx) if no redraw is required > >/// \retval (true, true) if a single paragraph redraw is needed &

Re: Single-paragraph redraw

2006-12-04 Thread Abdelrazak Younes
Then, the comment of workAreaDispatch needs to be updated. /// \sa WorkArea /// \retval (false, xxx) if no redraw is required This one is correct. /// \retval (true, true) if a single paragraph redraw is needed This one should be: a redraw is needed and FYI, only one par

Re: Single-paragraph redraw

2006-12-04 Thread Bo Peng
// \sa WorkArea /// \retval (false, xxx) if no redraw is required /// \retval (true, true) if a single paragraph redraw is needed /// \retval (true, false) if a full redraw is needed std::pair workAreaDispatch(FuncRequest const & ev); Bo

Re: Single-paragraph redraw

2006-12-04 Thread Abdelrazak Younes
/// \retval (false, xxx) if no redraw is required /// \retval (true, true) if a single paragraph redraw is needed /// \retval (true, false) if a full redraw is needed std::pair workAreaDispatch(FuncRequest const & ev); Please understand that the second boolean (singlepar) is ignored in

Single-paragraph redraw

2006-12-04 Thread Bo Peng
(false, xxx) if no redraw is required /// \retval (true, true) if a single paragraph redraw is needed /// \retval (true, false) if a full redraw is needed std::pair workAreaDispatch(FuncRequest const & ev); 2. In WorkArea::dispatch(FuncRequest const & cmd0) , the sec