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





SIGSEGV signal

2011-03-04 Thread Marcelo Acuña
Hello,
 lyx 2.0 beta 4 with debian squeeze:
 when I marked tables with mouse I get SIGSEGV signal error.
 Anyone do have same problem?


Marcelo Acuña
 visitá mi sitio web http://www.aleph-uno.com.ar 
==





Re: Rotate pdf

2011-03-04 Thread gdd
gdd gerry at danilatos.com writes:

The graying out happens with new documents when graphics are
inserted the first time.  By saving the document and exiting lyx and then re-
opening the same document, the problem disappears:  The size and orientation 
is not grayed out any more, and work is possible normally.






Re: Position and Rotation inoperable (dimmed) in LYX 1.6.9

2011-03-04 Thread gdd
gdd gerry at danilatos.com writes:

The graying out happens only with new documents when graphics are
inserted the first time.  By saving the document and exiting lyx and then re-
opening the same document, the problem disappears:  The size and orientation 
is not grayed out any more, and work is possible normally.






Re: Vertically center a rotated cell within multirows [SOLVED]

2011-03-04 Thread Nikos Alexandris
Paul:

  If you're using the rotate cell button in the table toolbar, the
  problem is that the multirow command is being nested inside the sideways
  environment; you need the nesting in the opposite order.  Try
  deselecting the rotation button in the toolbar and use something like
  the following inside the cell (I'll use tildes to denote start/end of
  ERT):
  
  ~\multirow{2}{*}{\begin{sideways}~ your text ~\end{sideways}}~
  
  You'll need to add \usepackage{rotating} to the preamble (or trick LyX
  into doing it by rotating an empty cell in the table), and you may need
  to add a little space after your text (say, a hard space or two) to get
  perfect centering.


Nikos:

...
 I use manual ERT for cell rotations (always). The only (important I guess)
 difference  is that you suggest to use the {\begin{sideways} I'll
 give it a try and report back.

Yep, it works! Thank you Paul, Nikos!


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





SIGSEGV signal

2011-03-04 Thread Marcelo Acuña
Hello,
 lyx 2.0 beta 4 with debian squeeze:
 when I marked tables with mouse I get SIGSEGV signal error.
 Anyone do have same problem?


Marcelo Acuña
 visitá mi sitio web http://www.aleph-uno.com.ar 
==





Re: Rotate pdf

2011-03-04 Thread gdd
gdd gerry at danilatos.com writes:

The graying out happens with new documents when graphics are
inserted the first time.  By saving the document and exiting lyx and then re-
opening the same document, the problem disappears:  The size and orientation 
is not grayed out any more, and work is possible normally.






Re: Position and Rotation inoperable (dimmed) in LYX 1.6.9

2011-03-04 Thread gdd
gdd gerry at danilatos.com writes:

The graying out happens only with new documents when graphics are
inserted the first time.  By saving the document and exiting lyx and then re-
opening the same document, the problem disappears:  The size and orientation 
is not grayed out any more, and work is possible normally.






Re: Vertically center a rotated cell within multirows [SOLVED]

2011-03-04 Thread Nikos Alexandris
Paul:

  If you're using the rotate cell button in the table toolbar, the
  problem is that the multirow command is being nested inside the sideways
  environment; you need the nesting in the opposite order.  Try
  deselecting the rotation button in the toolbar and use something like
  the following inside the cell (I'll use tildes to denote start/end of
  ERT):
  
  ~\multirow{2}{*}{\begin{sideways}~ your text ~\end{sideways}}~
  
  You'll need to add \usepackage{rotating} to the preamble (or trick LyX
  into doing it by rotating an empty cell in the table), and you may need
  to add a little space after your text (say, a hard space or two) to get
  perfect centering.


Nikos:

...
 I use manual ERT for cell rotations (always). The only (important I guess)
 difference  is that you suggest to use the {\begin{sideways} I'll
 give it a try and report back.

Yep, it works! Thank you Paul, Nikos!


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





SIGSEGV signal

2011-03-04 Thread Marcelo Acuña
Hello,
 lyx 2.0 beta 4 with debian squeeze:
 when I marked tables with mouse I get SIGSEGV signal error.
 Anyone do have same problem?


Marcelo Acuña
 visitá mi sitio web http://www.aleph-uno.com.ar 
==





Re: Rotate pdf

2011-03-04 Thread gdd
gdd  danilatos.com> writes:

The graying out happens with new documents when graphics are
inserted the first time.  By saving the document and exiting lyx and then re-
opening the same document, the problem disappears:  The "size and orientation" 
is not grayed out any more, and work is possible normally.






Re: Position and Rotation inoperable (dimmed) in LYX 1.6.9

2011-03-04 Thread gdd
gdd  danilatos.com> writes:

The graying out happens only with new documents when graphics are
inserted the first time.  By saving the document and exiting lyx and then re-
opening the same document, the problem disappears:  The "size and orientation" 
is not grayed out any more, and work is possible normally.






Re: Vertically center a rotated cell within multirows [SOLVED]

2011-03-04 Thread Nikos Alexandris
Paul:

> > If you're using the "rotate cell" button in the table toolbar, the
> > problem is that the multirow command is being nested inside the sideways
> > environment; you need the nesting in the opposite order.  Try
> > deselecting the rotation button in the toolbar and use something like
> > the following inside the cell (I'll use tildes to denote start/end of
> > ERT):
> > 
> > ~\multirow{2}{*}{\begin{sideways}~ your text ~\end{sideways}}~
> > 
> > You'll need to add \usepackage{rotating} to the preamble (or trick LyX
> > into doing it by rotating an empty cell in the table), and you may need
> > to add a little space after your text (say, a hard space or two) to get
> > perfect centering.


Nikos:

...
> I use manual ERT for cell rotations (always). The only (important I guess)
> difference  is that you suggest to use the "{\begin{sideways}...". I'll
> give it a try and report back.

Yep, it works! Thank you Paul, Nikos!