Re: Cursor in LyX 2 beta4

2011-03-04 Thread Richard Heck

On 03/03/2011 11:09 PM, Greg Kise wrote:

Hi,

Any way to increase the cursor size--or improve visibility in LyX 2 
beta4?


I would love to have a cursor that is easier to find.

This is controlled by Qt4 configuration, however that is done on your 
platform.


rh



Re: Cursor in LyX 2 beta4

2011-03-04 Thread Abdelrazak Younes

On 03/04/2011 02:01 PM, Richard Heck wrote:

On 03/03/2011 11:09 PM, Greg Kise wrote:

Hi,

Any way to increase the cursor size--or improve visibility in LyX 2
beta4?

I would love to have a cursor that is easier to find.


This is controlled by Qt4 configuration, however that is done on your
platform.


No, this is hardcoded in LyX, in GuiWorkArea.cpp, 2 pixel wide for 
Windows platform and 1 pixel for the rest of the world:


#ifdef Q_WS_WIN
int const CursorWidth = 2;
#else
int const CursorWidth = 1;
#endif

Abdel.



Re: Cursor in LyX 2 beta4

2011-03-04 Thread Pavel Sanda
Abdelrazak Younes wrote:
 #ifdef Q_WS_WIN
 int const CursorWidth = 2;
 #else
 int const CursorWidth = 1;
 #endif

considering how trivial is this change and how many times it was asked,
i would accept patch for RC variable even for 2.0.

pavel


Re: Cursor in LyX 2 beta4

2011-03-04 Thread Jean-Marc Lasgouttes

Le 04/03/11 17:04, Pavel Sanda a écrit :

Abdelrazak Younes wrote:

#ifdef Q_WS_WIN
int const CursorWidth = 2;
#else
int const CursorWidth = 1;
#endif


considering how trivial is this change and how many times it was asked,
i would accept patch for RC variable even for 2.0.


Or some code that honors Qt configuration, maybe...

JMarc


Re: Cursor in LyX 2 beta4

2011-03-04 Thread Marcelo Acuña
 No, this is hardcoded in LyX, in GuiWorkArea.cpp, 2 pixel
 wide for 
 Windows platform and 1 pixel for the rest of the world:
 
 #ifdef Q_WS_WIN
 int const CursorWidth = 2;
 #else
 int const CursorWidth = 1;
 #endif
 
 Abdel.

 Thanks!
 I changed 1 by 4, compiled and I get the wanted cursor.

Marcelo





Re: Cursor in LyX 2 beta4

2011-03-04 Thread Richard Heck

On 03/03/2011 11:09 PM, Greg Kise wrote:

Hi,

Any way to increase the cursor size--or improve visibility in LyX 2 
beta4?


I would love to have a cursor that is easier to find.

This is controlled by Qt4 configuration, however that is done on your 
platform.


rh



Re: Cursor in LyX 2 beta4

2011-03-04 Thread Abdelrazak Younes

On 03/04/2011 02:01 PM, Richard Heck wrote:

On 03/03/2011 11:09 PM, Greg Kise wrote:

Hi,

Any way to increase the cursor size--or improve visibility in LyX 2
beta4?

I would love to have a cursor that is easier to find.


This is controlled by Qt4 configuration, however that is done on your
platform.


No, this is hardcoded in LyX, in GuiWorkArea.cpp, 2 pixel wide for 
Windows platform and 1 pixel for the rest of the world:


#ifdef Q_WS_WIN
int const CursorWidth = 2;
#else
int const CursorWidth = 1;
#endif

Abdel.



Re: Cursor in LyX 2 beta4

2011-03-04 Thread Pavel Sanda
Abdelrazak Younes wrote:
 #ifdef Q_WS_WIN
 int const CursorWidth = 2;
 #else
 int const CursorWidth = 1;
 #endif

considering how trivial is this change and how many times it was asked,
i would accept patch for RC variable even for 2.0.

pavel


Re: Cursor in LyX 2 beta4

2011-03-04 Thread Jean-Marc Lasgouttes

Le 04/03/11 17:04, Pavel Sanda a écrit :

Abdelrazak Younes wrote:

#ifdef Q_WS_WIN
int const CursorWidth = 2;
#else
int const CursorWidth = 1;
#endif


considering how trivial is this change and how many times it was asked,
i would accept patch for RC variable even for 2.0.


Or some code that honors Qt configuration, maybe...

JMarc


Re: Cursor in LyX 2 beta4

2011-03-04 Thread Marcelo Acuña
 No, this is hardcoded in LyX, in GuiWorkArea.cpp, 2 pixel
 wide for 
 Windows platform and 1 pixel for the rest of the world:
 
 #ifdef Q_WS_WIN
 int const CursorWidth = 2;
 #else
 int const CursorWidth = 1;
 #endif
 
 Abdel.

 Thanks!
 I changed 1 by 4, compiled and I get the wanted cursor.

Marcelo





Re: Cursor in LyX 2 beta4

2011-03-04 Thread Richard Heck

On 03/03/2011 11:09 PM, Greg Kise wrote:

Hi,

Any way to increase the cursor size--or improve visibility in LyX 2 
beta4?


I would love to have a cursor that is easier to find.

This is controlled by Qt4 configuration, however that is done on your 
platform.


rh



Re: Cursor in LyX 2 beta4

2011-03-04 Thread Abdelrazak Younes

On 03/04/2011 02:01 PM, Richard Heck wrote:

On 03/03/2011 11:09 PM, Greg Kise wrote:

Hi,

Any way to increase the cursor size--or improve visibility in LyX 2
beta4?

I would love to have a cursor that is easier to find.


This is controlled by Qt4 configuration, however that is done on your
platform.


No, this is hardcoded in LyX, in GuiWorkArea.cpp, 2 pixel wide for 
Windows platform and 1 pixel for the rest of the world:


#ifdef Q_WS_WIN
int const CursorWidth = 2;
#else
int const CursorWidth = 1;
#endif

Abdel.



Re: Cursor in LyX 2 beta4

2011-03-04 Thread Pavel Sanda
Abdelrazak Younes wrote:
> #ifdef Q_WS_WIN
> int const CursorWidth = 2;
> #else
> int const CursorWidth = 1;
> #endif

considering how trivial is this change and how many times it was asked,
i would accept patch for RC variable even for 2.0.

pavel


Re: Cursor in LyX 2 beta4

2011-03-04 Thread Jean-Marc Lasgouttes

Le 04/03/11 17:04, Pavel Sanda a écrit :

Abdelrazak Younes wrote:

#ifdef Q_WS_WIN
int const CursorWidth = 2;
#else
int const CursorWidth = 1;
#endif


considering how trivial is this change and how many times it was asked,
i would accept patch for RC variable even for 2.0.


Or some code that honors Qt configuration, maybe...

JMarc


Re: Cursor in LyX 2 beta4

2011-03-04 Thread Marcelo Acuña
> No, this is hardcoded in LyX, in GuiWorkArea.cpp, 2 pixel
> wide for 
> Windows platform and 1 pixel for the rest of the world:
> 
> #ifdef Q_WS_WIN
> int const CursorWidth = 2;
> #else
> int const CursorWidth = 1;
> #endif
> 
> Abdel.

 Thanks!
 I changed 1 by 4, compiled and I get the wanted cursor.

Marcelo





Cursor in LyX 2 beta4

2011-03-03 Thread Greg Kise

Hi,

Any way to increase the cursor size--or improve visibility in LyX 2  
beta4?


I would love to have a cursor that is easier to find.

Thanks!
~greg




Cursor in LyX 2 beta4

2011-03-03 Thread Greg Kise

Hi,

Any way to increase the cursor size--or improve visibility in LyX 2  
beta4?


I would love to have a cursor that is easier to find.

Thanks!
~greg




Cursor in LyX 2 beta4

2011-03-03 Thread Greg Kise

Hi,

Any way to increase the cursor size--or improve visibility in LyX 2  
beta4?


I would love to have a cursor that is easier to find.

Thanks!
~greg