Re: scrolling (three questions)

2003-10-30 Thread Angus Leeming
Ronald Florence wrote:

 Angus Leeming [EMAIL PROTECTED] writes:
 
 You should find that the xforms frontend does have a more
 manageable scrolling behaviour.
 
 I've used LyX from before version 1.0, with xforms and qt frontends,
 and don't remember the scrolling ever being satisfactory.  I wish it
 were better, but have from necessity developed -- as I suspect other
 LyX users have -- workarounds.  Why can't the scrolling be fixed? 
 It would be very useful to be able to mark large blocks of text with
 the mouse.

It was fixed only in the last major release, 1.3.x, and only in the 
xforms frontend. The fix is trivial (for Qt too) and requires that 
LyX responds only to a subset of mouse events from the underlying 
X11, MacOS or Win32 graphics libraries. In the xforms frontend we use 
a timer, so:
// The timer runs for 200ms
static Timer timer(200);
if (timer.running())
return;
timer.start();
dispatch(mouse_event_to_the_lyx_core);

This could go in, almost as is, to the mouseEventHandler in 
QContentPane.C. Feel free to try ;-)

-- 
Angus



Re: scrolling (three questions)

2003-10-30 Thread Angus Leeming
Ronald Florence wrote:

 Angus Leeming [EMAIL PROTECTED] writes:
 
 You should find that the xforms frontend does have a more
 manageable scrolling behaviour.
 
 I've used LyX from before version 1.0, with xforms and qt frontends,
 and don't remember the scrolling ever being satisfactory.  I wish it
 were better, but have from necessity developed -- as I suspect other
 LyX users have -- workarounds.  Why can't the scrolling be fixed? 
 It would be very useful to be able to mark large blocks of text with
 the mouse.

It was fixed only in the last major release, 1.3.x, and only in the 
xforms frontend. The fix is trivial (for Qt too) and requires that 
LyX responds only to a subset of mouse events from the underlying 
X11, MacOS or Win32 graphics libraries. In the xforms frontend we use 
a timer, so:
// The timer runs for 200ms
static Timer timer(200);
if (timer.running())
return;
timer.start();
dispatch(mouse_event_to_the_lyx_core);

This could go in, almost as is, to the mouseEventHandler in 
QContentPane.C. Feel free to try ;-)

-- 
Angus



Re: scrolling (three questions)

2003-10-30 Thread Angus Leeming
Ronald Florence wrote:

> Angus Leeming <[EMAIL PROTECTED]> writes:
> 
>> You should find that the xforms frontend does have a more
>> manageable scrolling behaviour.
> 
> I've used LyX from before version 1.0, with xforms and qt frontends,
> and don't remember the scrolling ever being satisfactory.  I wish it
> were better, but have from necessity developed -- as I suspect other
> LyX users have -- workarounds.  Why can't the scrolling be fixed? 
> It would be very useful to be able to mark large blocks of text with
> the mouse.

It was fixed only in the last major release, 1.3.x, and only in the 
xforms frontend. The fix is trivial (for Qt too) and requires that 
LyX responds only to a subset of mouse events from the underlying 
X11, MacOS or Win32 graphics libraries. In the xforms frontend we use 
a timer, so:
// The timer runs for 200ms
static Timer timer(200);
if (timer.running())
return;
timer.start();
dispatch(mouse_event_to_the_lyx_core);

This could go in, almost as is, to the mouseEventHandler in 
QContentPane.C. Feel free to try ;-)

-- 
Angus



scrolling (three questions)

2003-10-29 Thread Vladimir Smagley
So, what you are saying - there is no way to slow down scrolling? Sounds 
strange, since
scrolling is done right even in very primitive text editors...

Kayvan A. Sylvan wrote:

On Tue, Oct 28, 2003 at 02:58:35PM -0700, Vladimir Smagley wrote:
 

1) When I use mouse to highlight large chunks of text (bigger than 
the size of open Lyx window),
scrolling goes too fast, by the time I stop highlighting, I usually 
go far far away from the place where
I intended to stop. Is there any way to slow down scrolling while 
highlighting using mouse?
   

It's easier to use the shift key. Click on where you want to start 
highlighting, then hold the shift-key down and press page-down. You can
use the down and up-arrows and cursor movement keys to move the selection
end-point around.

You can try looking at http://www.lyx.org/help for your other
questions. I don't know the answers off the top of my head.
			---Kayvan
 





Re: scrolling (three questions)

2003-10-29 Thread Angus Leeming
Vladimir Smagley wrote:
 So, what you are saying - there is no way to slow down scrolling?
 Sounds strange, since
 scrolling is done right even in very primitive text editors...

Let's just say that the guys implementing the Qt frontend had more 
important things to do. Like provide a Qt frontend in the first 
place. Remember, this is the very first version of LyX where you 
don't have to use xforms.

You should find that the xforms frontend does have a more manageable 
scrolling behaviour.

-- 
Angus




Re: scrolling (three questions)

2003-10-29 Thread Ronald Florence
Angus Leeming [EMAIL PROTECTED] writes:

 You should find that the xforms frontend does have a more manageable 
 scrolling behaviour.

I've used LyX from before version 1.0, with xforms and qt frontends,
and don't remember the scrolling ever being satisfactory.  I wish it
were better, but have from necessity developed -- as I suspect other
LyX users have -- workarounds.  Why can't the scrolling be fixed?  It
would be very useful to be able to mark large blocks of text with the
mouse.
-- 

Ronald Florence www.18james.com



Re: scrolling (three questions)

2003-10-29 Thread John Levon
On Wed, Oct 29, 2003 at 08:31:20PM -0500, Ronald Florence wrote:

 LyX users have -- workarounds.  Why can't the scrolling be fixed?  It
 would be very useful to be able to mark large blocks of text with the
 mouse.

It could be fixed. It just needs somebody to do it.

john

-- 
Khendon's Law:
If the same point is made twice by the same person, the thread is over.


scrolling (three questions)

2003-10-29 Thread Vladimir Smagley
So, what you are saying - there is no way to slow down scrolling? Sounds 
strange, since
scrolling is done right even in very primitive text editors...

Kayvan A. Sylvan wrote:

On Tue, Oct 28, 2003 at 02:58:35PM -0700, Vladimir Smagley wrote:
 

1) When I use mouse to highlight large chunks of text (bigger than 
the size of open Lyx window),
scrolling goes too fast, by the time I stop highlighting, I usually 
go far far away from the place where
I intended to stop. Is there any way to slow down scrolling while 
highlighting using mouse?
   

It's easier to use the shift key. Click on where you want to start 
highlighting, then hold the shift-key down and press page-down. You can
use the down and up-arrows and cursor movement keys to move the selection
end-point around.

You can try looking at http://www.lyx.org/help for your other
questions. I don't know the answers off the top of my head.
			---Kayvan
 





Re: scrolling (three questions)

2003-10-29 Thread Angus Leeming
Vladimir Smagley wrote:
 So, what you are saying - there is no way to slow down scrolling?
 Sounds strange, since
 scrolling is done right even in very primitive text editors...

Let's just say that the guys implementing the Qt frontend had more 
important things to do. Like provide a Qt frontend in the first 
place. Remember, this is the very first version of LyX where you 
don't have to use xforms.

You should find that the xforms frontend does have a more manageable 
scrolling behaviour.

-- 
Angus




Re: scrolling (three questions)

2003-10-29 Thread Ronald Florence
Angus Leeming [EMAIL PROTECTED] writes:

 You should find that the xforms frontend does have a more manageable 
 scrolling behaviour.

I've used LyX from before version 1.0, with xforms and qt frontends,
and don't remember the scrolling ever being satisfactory.  I wish it
were better, but have from necessity developed -- as I suspect other
LyX users have -- workarounds.  Why can't the scrolling be fixed?  It
would be very useful to be able to mark large blocks of text with the
mouse.
-- 

Ronald Florence www.18james.com



Re: scrolling (three questions)

2003-10-29 Thread John Levon
On Wed, Oct 29, 2003 at 08:31:20PM -0500, Ronald Florence wrote:

 LyX users have -- workarounds.  Why can't the scrolling be fixed?  It
 would be very useful to be able to mark large blocks of text with the
 mouse.

It could be fixed. It just needs somebody to do it.

john

-- 
Khendon's Law:
If the same point is made twice by the same person, the thread is over.


scrolling (three questions)

2003-10-29 Thread Vladimir Smagley
So, what you are saying - there is no way to slow down scrolling? Sounds 
strange, since
scrolling is done right even in very primitive text editors...

Kayvan A. Sylvan wrote:

On Tue, Oct 28, 2003 at 02:58:35PM -0700, Vladimir Smagley wrote:
 

1) When I use mouse to highlight large chunks of text (bigger than 
the size of open Lyx window),
scrolling goes too fast, by the time I stop highlighting, I usually 
go far far away from the place where
I intended to stop. Is there any way to slow down scrolling while 
highlighting using mouse?
   

It's easier to use the shift key. Click on where you want to start 
highlighting, then hold the shift-key down and press page-down. You can
use the down and up-arrows and cursor movement keys to move the selection
end-point around.

You can try looking at http://www.lyx.org/help for your other
questions. I don't know the answers off the top of my head.
			---Kayvan
 





Re: scrolling (three questions)

2003-10-29 Thread Angus Leeming
Vladimir Smagley wrote:
> So, what you are saying - there is no way to slow down scrolling?
> Sounds strange, since
> scrolling is done right even in very primitive text editors...

Let's just say that the guys implementing the Qt frontend had more 
important things to do. Like provide a Qt frontend in the first 
place. Remember, this is the very first version of LyX where you 
don't have to use xforms.

You should find that the xforms frontend does have a more manageable 
scrolling behaviour.

-- 
Angus




Re: scrolling (three questions)

2003-10-29 Thread Ronald Florence
Angus Leeming <[EMAIL PROTECTED]> writes:

> You should find that the xforms frontend does have a more manageable 
> scrolling behaviour.

I've used LyX from before version 1.0, with xforms and qt frontends,
and don't remember the scrolling ever being satisfactory.  I wish it
were better, but have from necessity developed -- as I suspect other
LyX users have -- workarounds.  Why can't the scrolling be fixed?  It
would be very useful to be able to mark large blocks of text with the
mouse.
-- 

Ronald Florence www.18james.com



Re: scrolling (three questions)

2003-10-29 Thread John Levon
On Wed, Oct 29, 2003 at 08:31:20PM -0500, Ronald Florence wrote:

> LyX users have -- workarounds.  Why can't the scrolling be fixed?  It
> would be very useful to be able to mark large blocks of text with the
> mouse.

It could be fixed. It just needs somebody to do it.

john

-- 
Khendon's Law:
If the same point is made twice by the same person, the thread is over.


Three questions

2003-10-28 Thread Vladimir Smagley
Hello,

I'm writing dissertation using Lyx. So far Lyx seems to be a pleasant 
thing to work with.
I have a few problems although, they are not complete showstoppers, 
there is always a way
to get around, but still, they are quite annoying, I wonder if somebody 
would know any fix.

1) When I use mouse to highlight large hanks of text (bigger than the 
size of open Lyx window),
scrolling goes too fast, by the time I stop highlighting, I usually go 
far far away from the place where
I intended to stop. Is there any way to slow down scrolling while 
highlighting using mouse?

2) I have a separate file for every chapter of my dissertation, also the 
main file that includes all
the pieces of the dissertation. The cool thing is that when I use 
dvi-viewer to see whole dissertation, all
chapters appear on the menu bar under Documents. The problem is that 
when  I do spell checking
for one chapter, then start doing spellchecking for another - Lyx 
crashes. I have to restart Lyx after
spellchecking of every chapter.

3) note is a very useful option. Problem is that sometimes I would 
like to print a chapter together with the
notes - is it possible to do?

Thank you, I appreciate your help.
Vladimir




Re: three questions

2003-10-28 Thread Vladimir Smagley
Sorry, I've forgot to mention all the specs...
lyx-1.3.3-1rh9_qt
eMachine Intel Celeron 633 Mhz, 256Mb Ram
RedHat 9.0
John Sheahan wrote:

Its probably including the version of lyx you are using and the platform
its running on would help people answer your questions.
regards,  john

On Wed, 2003-10-29 at 05:56, Vladimir Smagley wrote:
 

Hello,

I'm writing dissertation using Lyx. So far Lyx seems to be a pleasant 
thing to work with.
I have a few problems although, they are not complete showstoppers, 
there is always a way
to get around, but still, they are quite annoying, I wonder if 
somebody would know any fix.

1) When I use mouse to highlight large chunks of text (bigger than 
the size of open Lyx window),
scrolling goes too fast, by the time I stop highlighting, I usually 
go far far away from the place where
I intended to stop. Is there any way to slow down scrolling while 
highlighting using mouse?

2) I have a separate file for every chapter of my dissertation, also 
the main file that includes all
the pieces of the dissertation. The cool thing is that when I use 
dvi-viewer to see whole dissertation, all
chapters appear on the menu bar under Documents. The problem is 
that when  I do spell checking
for one chapter, then start doing spellchecking for another - Lyx 
crashes. I have to restart Lyx after
spellchecking of every chapter.

3) note is a very useful option. Problem is that sometimes I would 
like to print a chapter together with the
notes - is it possible to do?

Thank you, I appreciate your help.
Vladimir
  





Re: three questions

2003-10-28 Thread Kayvan A. Sylvan
On Tue, Oct 28, 2003 at 02:58:35PM -0700, Vladimir Smagley wrote:
 1) When I use mouse to highlight large chunks of text (bigger than 
 the size of open Lyx window),
 scrolling goes too fast, by the time I stop highlighting, I usually 
 go far far away from the place where
 I intended to stop. Is there any way to slow down scrolling while 
 highlighting using mouse?

It's easier to use the shift key. Click on where you want to start 
highlighting, then hold the shift-key down and press page-down. You can
use the down and up-arrows and cursor movement keys to move the selection
end-point around.

You can try looking at http://www.lyx.org/help for your other
questions. I don't know the answers off the top of my head.

---Kayvan
-- 
Kayvan A. Sylvan  | Proud husband of   | Father to my kids:
Sylvan Associates, Inc.   | Laura Isabella Sylvan  | Katherine Yelena (8/8/89)
http://sylvan.com/~kayvan | crown of her husband | Robin Gregory (2/28/92)


Three questions

2003-10-28 Thread Vladimir Smagley
Hello,

I'm writing dissertation using Lyx. So far Lyx seems to be a pleasant 
thing to work with.
I have a few problems although, they are not complete showstoppers, 
there is always a way
to get around, but still, they are quite annoying, I wonder if somebody 
would know any fix.

1) When I use mouse to highlight large hanks of text (bigger than the 
size of open Lyx window),
scrolling goes too fast, by the time I stop highlighting, I usually go 
far far away from the place where
I intended to stop. Is there any way to slow down scrolling while 
highlighting using mouse?

2) I have a separate file for every chapter of my dissertation, also the 
main file that includes all
the pieces of the dissertation. The cool thing is that when I use 
dvi-viewer to see whole dissertation, all
chapters appear on the menu bar under Documents. The problem is that 
when  I do spell checking
for one chapter, then start doing spellchecking for another - Lyx 
crashes. I have to restart Lyx after
spellchecking of every chapter.

3) note is a very useful option. Problem is that sometimes I would 
like to print a chapter together with the
notes - is it possible to do?

Thank you, I appreciate your help.
Vladimir




Re: three questions

2003-10-28 Thread Vladimir Smagley
Sorry, I've forgot to mention all the specs...
lyx-1.3.3-1rh9_qt
eMachine Intel Celeron 633 Mhz, 256Mb Ram
RedHat 9.0
John Sheahan wrote:

Its probably including the version of lyx you are using and the platform
its running on would help people answer your questions.
regards,  john

On Wed, 2003-10-29 at 05:56, Vladimir Smagley wrote:
 

Hello,

I'm writing dissertation using Lyx. So far Lyx seems to be a pleasant 
thing to work with.
I have a few problems although, they are not complete showstoppers, 
there is always a way
to get around, but still, they are quite annoying, I wonder if 
somebody would know any fix.

1) When I use mouse to highlight large chunks of text (bigger than 
the size of open Lyx window),
scrolling goes too fast, by the time I stop highlighting, I usually 
go far far away from the place where
I intended to stop. Is there any way to slow down scrolling while 
highlighting using mouse?

2) I have a separate file for every chapter of my dissertation, also 
the main file that includes all
the pieces of the dissertation. The cool thing is that when I use 
dvi-viewer to see whole dissertation, all
chapters appear on the menu bar under Documents. The problem is 
that when  I do spell checking
for one chapter, then start doing spellchecking for another - Lyx 
crashes. I have to restart Lyx after
spellchecking of every chapter.

3) note is a very useful option. Problem is that sometimes I would 
like to print a chapter together with the
notes - is it possible to do?

Thank you, I appreciate your help.
Vladimir
  





Re: three questions

2003-10-28 Thread Kayvan A. Sylvan
On Tue, Oct 28, 2003 at 02:58:35PM -0700, Vladimir Smagley wrote:
 1) When I use mouse to highlight large chunks of text (bigger than 
 the size of open Lyx window),
 scrolling goes too fast, by the time I stop highlighting, I usually 
 go far far away from the place where
 I intended to stop. Is there any way to slow down scrolling while 
 highlighting using mouse?

It's easier to use the shift key. Click on where you want to start 
highlighting, then hold the shift-key down and press page-down. You can
use the down and up-arrows and cursor movement keys to move the selection
end-point around.

You can try looking at http://www.lyx.org/help for your other
questions. I don't know the answers off the top of my head.

---Kayvan
-- 
Kayvan A. Sylvan  | Proud husband of   | Father to my kids:
Sylvan Associates, Inc.   | Laura Isabella Sylvan  | Katherine Yelena (8/8/89)
http://sylvan.com/~kayvan | crown of her husband | Robin Gregory (2/28/92)


Three questions

2003-10-28 Thread Vladimir Smagley
Hello,

I'm writing dissertation using Lyx. So far Lyx seems to be a pleasant 
thing to work with.
I have a few problems although, they are not complete showstoppers, 
there is always a way
to get around, but still, they are quite annoying, I wonder if somebody 
would know any fix.

1) When I use mouse to highlight large hanks of text (bigger than the 
size of open Lyx window),
scrolling goes too fast, by the time I stop highlighting, I usually go 
far far away from the place where
I intended to stop. Is there any way to slow down scrolling while 
highlighting using mouse?

2) I have a separate file for every chapter of my dissertation, also the 
main file that includes all
the pieces of the dissertation. The cool thing is that when I use 
dvi-viewer to see whole dissertation, all
chapters appear on the menu bar under "Documents". The problem is that 
when  I do spell checking
for one chapter, then start doing spellchecking for another - Lyx 
crashes. I have to restart Lyx after
spellchecking of every chapter.

3) "note" is a very useful option. Problem is that sometimes I would 
like to print a chapter together with the
notes - is it possible to do?

Thank you, I appreciate your help.
Vladimir




Re: three questions

2003-10-28 Thread Vladimir Smagley
Sorry, I've forgot to mention all the specs...
lyx-1.3.3-1rh9_qt
eMachine Intel Celeron 633 Mhz, 256Mb Ram
RedHat 9.0
John Sheahan wrote:

Its probably including the version of lyx you are using and the platform
its running on would help people answer your questions.
regards,  john

On Wed, 2003-10-29 at 05:56, Vladimir Smagley wrote:
 

Hello,

I'm writing dissertation using Lyx. So far Lyx seems to be a pleasant 
thing to work with.
I have a few problems although, they are not complete showstoppers, 
there is always a way
to get around, but still, they are quite annoying, I wonder if 
somebody would know any fix.

1) When I use mouse to highlight large chunks of text (bigger than 
the size of open Lyx window),
scrolling goes too fast, by the time I stop highlighting, I usually 
go far far away from the place where
I intended to stop. Is there any way to slow down scrolling while 
highlighting using mouse?

2) I have a separate file for every chapter of my dissertation, also 
the main file that includes all
the pieces of the dissertation. The cool thing is that when I use 
dvi-viewer to see whole dissertation, all
chapters appear on the menu bar under "Documents". The problem is 
that when  I do spell checking
for one chapter, then start doing spellchecking for another - Lyx 
crashes. I have to restart Lyx after
spellchecking of every chapter.

3) "note" is a very useful option. Problem is that sometimes I would 
like to print a chapter together with the
notes - is it possible to do?

Thank you, I appreciate your help.
Vladimir
  





Re: three questions

2003-10-28 Thread Kayvan A. Sylvan
On Tue, Oct 28, 2003 at 02:58:35PM -0700, Vladimir Smagley wrote:
> >>1) When I use mouse to highlight large chunks of text (bigger than 
> >>the size of open Lyx window),
> >>scrolling goes too fast, by the time I stop highlighting, I usually 
> >>go far far away from the place where
> >>I intended to stop. Is there any way to slow down scrolling while 
> >>highlighting using mouse?

It's easier to use the shift key. Click on where you want to start 
highlighting, then hold the shift-key down and press page-down. You can
use the down and up-arrows and cursor movement keys to move the selection
end-point around.

You can try looking at http://www.lyx.org/help for your other
questions. I don't know the answers off the top of my head.

---Kayvan
-- 
Kayvan A. Sylvan  | Proud husband of   | Father to my kids:
Sylvan Associates, Inc.   | Laura Isabella Sylvan  | Katherine Yelena (8/8/89)
http://sylvan.com/~kayvan | "crown of her husband" | Robin Gregory (2/28/92)