Re: GORM and NSCollectionView

2015-03-20 Thread Alessandro Sangiuliano
Il 19/03/2015 22:19, Fred Kiefer ha scritto: Am 17.03.2015 um 14:17 schrieb Alessandro Sangiuliano: Il 17/03/2015 09:53, Riccardo Mottola ha scritto: Fred Kiefer wrote: I just tried with 31 students and the flickering is horrible, but it stops as soon as I let go of the window. Which Window

Re: sheets in GNUstep

2015-03-20 Thread Riccardo Mottola
Hi, Doug Simons wrote: I think you make a good point that resizing the window's content may lead to problems. With a bit of finagling it should be possible to keep the size of the contentView unchanged while resizing the window. Even though that's a bit of extra work, my guess is it will work

Re: data type polymorphism

2015-03-20 Thread ChanMaxthon
I think you can just unify all calculation into one type, probably float. And since you are emulating something using big matrices you may want look into OpenCL as it can help you crunch those numbers on GPU, way faster than your CPU in pretty much all scenarios, and all the extra hardware you

Re: sheets in GNUstep

2015-03-20 Thread Eric Wasylishen
Hi, Just to give my 2c: the EWMH spec has window-modal dialogs: _NET_WM_STATE_MODAL indicates that this is a modal dialog box. If the WM_TRANSIENT_FOR hint is set to another toplevel window, the dialog is modal for that window; if WM_TRANSIENT_FOR is not set or set to the root window the dialog

data type polymorphism

2015-03-20 Thread Scott Christley
Hello, This is more a generic Objective-C question versus GNUstep but maybe some experts here have a suggestion. I have a bunch of code that looks l like this: if ([encode isEqual: [BioSwarmModel floatEncode]]) { // interpret as float matrix float (*grid)[height][width] = matrix;