Re: No Mouse scrolling in LyX 2.0 - Mac?

2010-06-29 Thread BH
On Tuesday, June 29, 2010, Pavel Sanda wrote: > Rob Oakes wrote: >> There also appears to be a key binding issue for the "Home" and "End" keys.   >> The Mac equivalents are Option + RIght Arrow for "End" and Option + Left >> Arrow for "Home".  Instead, the current bindings require the Function (F

Re: Using Qt Constructs in Core

2010-06-29 Thread Richard Heck
On 06/29/2010 01:04 PM, Andre Poenitz wrote: Maybe we should try to shed some light on the issue. In struct Foo { std::vector f; }; the type 'Foo' is "incomplete" until the definition is finished, i.e. basically up to the location of the '}'. std::vector requires T t

Re: Using Qt Constructs in Core

2010-06-29 Thread Andre Poenitz
On Tue, Jun 29, 2010 at 10:42:36AM -0400, Richard Heck wrote: > > >Thanks for the pointers. Sorry for not providing more context about > >what I am trying to accomplish. The addition of a vector into the > >TocItem class was to give me a place to store other insets that might > >also be present

Re: Using Qt Constructs in Core

2010-06-29 Thread Andre Poenitz
On Tue, Jun 29, 2010 at 09:11:26AM -0400, Richard Heck wrote: > On 06/29/2010 08:05 AM, Abdelrazak Younes wrote: > >On 06/29/2010 01:46 PM, Pavel Sanda wrote: > >>Andre Poenitz wrote: > >>>One could argue that it allows the kind of code that's conceptionally > >>>closest to the model Rob has in min

Re: LyX 2.0 GUI Issue on Mac

2010-06-29 Thread Pavel Sanda
James C. Sutherland wrote: > It doesn't fix the advanced find window, but it did fix the Progress > Messages window. yes thats what i thought. the appearence of messages window is up to you - if one wants it small its not possible to put there everything... pavel

Re: Using Qt Constructs in Core

2010-06-29 Thread Pavel Sanda
Rob Oakes wrote: > well so far. I should probably send along a patch that shows all of > these changes in context to get feedback ... sending some proof-of-concept code of the whole stuff you are playing with could save you lot of frustration in case you are doing something wrong in the architect

Re: LyX 2.0 GUI Issue on Mac

2010-06-29 Thread James C. Sutherland
On Tue, Jun 29, 2010 at 5:56 AM, Pavel Sanda wrote: > James C. Sutherland wrote: > > I just started looking at the 2.0 alpha 4 version of LyX. > > > > This issue may already be well-known, but there are several parts of the > GUI > > that appear improperly on my Mac. Thus far, I have seen these

Re: No Mouse scrolling in LyX 2.0 - Mac?

2010-06-29 Thread James C. Sutherland
On Tue, Jun 29, 2010 at 1:20 AM, Jean-Marc Lasgouttes wrote: > Le 29 juin 10 à 04:06, Rob Oakes a écrit : > > I can confirm that mouse scrolling (or two finger scrolling) does not work >> within the work area on Mac OS X. (It does, however, work within the Item >> Views and widgets provided by Q

Re: Using Qt Constructs in Core

2010-06-29 Thread Richard Heck
Thanks for the pointers. Sorry for not providing more context about what I am trying to accomplish. The addition of a vector into the TocItem class was to give me a place to store other insets that might also be present in the paragraph. << I think he really does mean: vector *>> That's co

Re: Using Qt Constructs in Core

2010-06-29 Thread Rob Oakes
Hi Richard and Abdul, Thanks for the pointers. Sorry for not providing more context about what I am trying to accomplish. The addition of a vector into the TocItem class was to give me a place to store other insets that might also be present in the paragraph. << I think he really does mean: vec

Re: Using Qt Constructs in Core

2010-06-29 Thread Richard Heck
On 06/29/2010 09:19 AM, Abdelrazak Younes wrote: On 06/29/2010 03:11 PM, Richard Heck wrote: I think he really does mean: vector * But I'm not absolutely sure about that. Indeed... weird... Thanks for looking it up. I should have done so before bringing in my mouth into the discussion :

Re: Using Qt Constructs in Core

2010-06-29 Thread Abdelrazak Younes
On 06/29/2010 03:11 PM, Richard Heck wrote: On 06/29/2010 08:05 AM, Abdelrazak Younes wrote: On 06/29/2010 01:46 PM, Pavel Sanda wrote: Andre Poenitz wrote: One could argue that it allows the kind of code that's conceptionally closest to the model Rob has in mind to compile out-of-the-box, but

Re: r34721 - lyx-devel/trunk/src/support

2010-06-29 Thread Joost Verburg
On 6/29/2010 7:36 AM, Pavel Sanda wrote: +#include why this is not ifdefed? pavel I didn't realize io.h is Windows specific. I'll fix it. Joost

Re: Using Qt Constructs in Core

2010-06-29 Thread Richard Heck
On 06/29/2010 08:05 AM, Abdelrazak Younes wrote: On 06/29/2010 01:46 PM, Pavel Sanda wrote: Andre Poenitz wrote: One could argue that it allows the kind of code that's conceptionally closest to the model Rob has in mind to compile out-of-the-box, but does qvector provide something special comp

Re: Using Qt Constructs in Core

2010-06-29 Thread Pavel Sanda
Abdelrazak Younes wrote: >> its kind of strange to sudenly pull qt into the core just for qvector >> when std::vector is used in all other places. >> > > Right. But I wouldn't say so for signal and slots. yes, that was Andre's victorious fight ;) pavel

Re: No Mouse scrolling in LyX 2.0 - Mac?

2010-06-29 Thread Pavel Sanda
Rob Oakes wrote: > I can confirm that mouse scrolling (or two finger scrolling) does not work > within the work area on Mac OS X. (It does, however, work within the Item > Views and widgets provided by Qt -- QTreeView, QAbstractItemView, etc. Just > not very well.) i have seen this in bugzill

Re: Using Qt Constructs in Core

2010-06-29 Thread Abdelrazak Younes
On 06/29/2010 01:46 PM, Pavel Sanda wrote: Andre Poenitz wrote: One could argue that it allows the kind of code that's conceptionally closest to the model Rob has in mind to compile out-of-the-box, but does qvector provide something special compared to std::vector? QVector doesn

Re: Using Qt Constructs in Core

2010-06-29 Thread Abdelrazak Younes
On 06/28/2010 07:31 PM, Rob Oakes wrote: Hi Abdel, Thanks for the clarification. << What is the problem exactly? Maybe we can help...>> I appreciate the offer. I've been running into a problem with the way that I'm instantiating a vector in TocItem. The code will compile when configured wit

Re: LyX 2.0 GUI Issue on Mac

2010-06-29 Thread Pavel Sanda
James C. Sutherland wrote: > I just started looking at the 2.0 alpha 4 version of LyX. > > This issue may already be well-known, but there are several parts of the GUI > that appear improperly on my Mac. Thus far, I have seen these on: > >- The advanced find dialogue window i guess this jus

Re: Using Qt Constructs in Core

2010-06-29 Thread Pavel Sanda
Andre Poenitz wrote: > One could argue that it allows the kind of code that's conceptionally > closest to the model Rob has in mind to compile out-of-the-box, but does qvector provide something special compared to std::vector? its kind of strange to sudenly pull qt into the core just for qvector

Re: r34721 - lyx-devel/trunk/src/support

2010-06-29 Thread Pavel Sanda
jo...@lyx.org wrote: > Author: joost > Date: Mon Jun 28 19:45:04 2010 > New Revision: 34721 > URL: http://www.lyx.org/trac/changeset/34721 > > Log: > Launch external Windows processes for e.g. display image conversion using > CreateProcess with a CREATE_NO_WINDOW flag, allowing LyX to be compiled

Re: No Mouse scrolling in LyX 2.0 - Mac?

2010-06-29 Thread Jean-Marc Lasgouttes
Le 29 juin 10 à 04:06, Rob Oakes a écrit : I can confirm that mouse scrolling (or two finger scrolling) does not work within the work area on Mac OS X. (It does, however, work within the Item Views and widgets provided by Qt -- QTreeView, QAbstractItemView, etc. Just not very well.) Can