Re: ANN: Couchbase Lite 1.0 database/sync library

2014-05-22 Thread Rui Pacheco
our Subscription: > https://lists.apple.com/mailman/options/cocoa-dev/rui.pacheco%40gmail.com > > This email sent to rui.pach...@gmail.com -- Rui Pacheco ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requ

Re: where to put persistent storage for command-line app

2014-05-15 Thread Rui Pacheco
%40gmail.com > > This email sent to rui.pach...@gmail.com -- Rui Pacheco ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator comments to the list. Contact the moderators at cocoa-dev-admins(at)lists.ap

Re: Xcode 5 & Obj-C++

2014-01-30 Thread Rui Pacheco
Is this documented somewhere? On 30 Jan 2014, at 22:26, Jens Alfke wrote: > > On Jan 30, 2014, at 4:32 AM, Jean-Daniel Dupas wrote: > >> It is barely possible to create a stable ABI in C++. This language suffers >> all possible form of fragile base class problem: >> Add a new ivar, all subc

Re: Xcode 5 & Obj-C++

2014-01-30 Thread Rui Pacheco
How did you factor out the application logic from the UI rendering? On 30 Jan 2014, at 21:16, Jo Meder wrote: > Hi, > > Language philosophy aside, our application is a largish cross platform (Mac, > Windows, Linux) application written in C++. The UI framework uses Cocoa for > the Mac back end

Re: Xcode 5 & Obj-C++

2014-01-30 Thread Rui Pacheco
defined interfaces when using other languages. On 30 Jan 2014, at 13:10, jonat...@mugginsoft.com wrote: > > On 30 Jan 2014, at 11:53, Rui Pacheco wrote: > >> >> And isn’t all this message passing pretty much the same as calling methods >> in classes, just like you’d do

Re: Xcode 5 & Obj-C++

2014-01-30 Thread Rui Pacheco
I too don’t get it. And isn’t all this message passing pretty much the same as calling methods in classes, just like you’d do in Java, C# or C++? On 30 Jan 2014, at 12:49, jonat...@mugginsoft.com wrote: > > On 30 Jan 2014, at 00:42, Jens Alfke wrote: > >> >> Anyone exposing a C++ API in a d

Re: Xcode 5 & Obj-C++

2014-01-29 Thread Rui Pacheco
To those of you doing Objective-C++ apps, is there a difference in terms of performance or memory usage? I’ve noticed that TextMate 2, which is done in Objective-C++, consumes less memory than the Chocolat editor which seems to be done exclusively in Cocoa. On 30 Jan 2014, at 00:04, Uli Kustere

Build script

2012-12-14 Thread Rui Pacheco
Hello, I have a couple of scripts I use to build my projects and automate releases. I've started with Bash and am currently finishing a Python version of it. I find Python easier to read and maintain than Bash. What do you use to automate your releases? -- Rui Pa

Using RBSplitView or BWSplitView programmatically

2012-07-20 Thread Rui Pacheco
source I'm not clear on how to start. -- Rui Pacheco ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator comments to the list. Contact the moderators at cocoa-dev-admins(at)lists.apple.com Hel

Re: Debugging NSWindowController and NSArrayController

2012-04-11 Thread Rui Pacheco
Yep. po managedObjectContext and po [arrayController managedObjectContext] returns the same address. On 11 April 2012 21:41, Keary Suska wrote: > On Apr 11, 2012, at 11:49 AM, Rui Pacheco wrote: > > > Prepares content is checked, Uses lazy fetching is not - setting it > doesn&#x

Re: Debugging NSWindowController and NSArrayController

2012-04-11 Thread Rui Pacheco
Prepares content is checked, Uses lazy fetching is not - setting it doesn't change anything. I called -fetch: on gdb and the result was nil. managedObjects returns an empty array. On 11 April 2012 19:12, Keary Suska wrote: > On Apr 11, 2012, at 7:04 AM, Rui Pacheco wrote: > > &

Debugging NSWindowController and NSArrayController

2012-04-11 Thread Rui Pacheco
bjects]* I get an empty array. Is there any other way of debugging this? -- Rui Pacheco ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator comments to the list. Contact the moderators at cocoa-dev

Re: print object by %@

2010-07-22 Thread Rui Pacheco
date your Subscription: > http://lists.apple.com/mailman/options/cocoa-dev/rui.pacheco%40gmail.com > > This email sent to rui.pach...@gmail.com > -- Best regards, Rui Pacheco ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please

Re: ANN: Syntax highlighting editor view

2010-06-02 Thread Rui Pacheco
gt; > Please do not post admin requests or moderator comments to the list. > Contact the moderators at cocoa-dev-admins(at)lists.apple.com > > Help/Unsubscribe/Update your Subscription: > http://lists.apple.com/mailman/options/cocoa-dev/rui.pacheco%40gmail.com > > This email sent to

Re: Cocoa Newbie & MySQL

2010-04-28 Thread Rui Pacheco
l sent to d...@druware.com > > > ___ > > Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) > > Please do not post admin requests or moderator comments to the list. > Contact the moderators at cocoa-dev-admins(at)lists.apple.com >

Re: XCode 3.2.2 Hangs after Clean All but Previous Version Doesn't

2010-04-26 Thread Rui Pacheco
t; Please do not post admin requests or moderator comments to the list. > Contact the moderators at cocoa-dev-admins(at)lists.apple.com > > Help/Unsubscribe/Update your Subscription: > http://lists.apple.com/mailman/options/cocoa-dev/rui.pachec

Re: One NSTextView, several model objects - how to synchronise undo manager

2010-03-19 Thread Rui Pacheco
f keyboard actions). Once the insertion point leaves the field or cell, prior operations cannot be undone.* * * Does this mean that by clicking the table row and therefore removing focus from the text field I lost the ability to undo? On 19 March 2010 16:35, Rui Pacheco wrote: > You are right

Re: One NSTextView, several model objects - how to synchronise undo manager

2010-03-19 Thread Rui Pacheco
w's undo manager to an instance of > NSUndoManager on my model object? > > I can get to the text view undo manager but I don't seem to be able to set > it. > > On 17 March 2010 13:34, Keary Suska wrote: > > > On Mar 16, 2010, at 6:09 PM, Rui Pacheco wrote: &

Re: One NSTextView, several model objects - how to synchronise undo manager

2010-03-17 Thread Rui Pacheco
Is there a way to bind the text view's undo manager to an instance of NSUndoManager on my model object? I can get to the text view undo manager but I don't seem to be able to set it. On 17 March 2010 13:34, Keary Suska wrote: > On Mar 16, 2010, at 6:09 PM, Rui Pacheco wrote:

One NSTextView, several model objects - how to synchronise undo manager

2010-03-16 Thread Rui Pacheco
particular instance. Some research seems to indicate that using core data would give me this for free - make my model objects extend NSManagedObject and I would have undo for free. Is this correct? -- Best regards, Rui Pacheco ___ Cocoa-dev mailing l

Re: Tabbed windows

2010-01-29 Thread Rui Pacheco
s or moderator comments to the list. > Contact the moderators at cocoa-dev-admins(at)lists.apple.com > > Help/Unsubscribe/Update your Subscription: > http://lists.apple.com/mailman/options/cocoa-dev/rui.pacheco%40gmail.com > > This email sent to rui.pach...@gmail.com > -

Re: My Cocoa App is crashing randomly.

2010-01-19 Thread Rui Pacheco
> > Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) > > Please do not post admin requests or moderator comments to the list. > Contact the moderators at cocoa-dev-admins(at)lists.apple.com > > Help/Unsubscribe/Update your Subscription: > http://lists.a

Re: cocoabuilder.com

2009-11-10 Thread Rui Pacheco
pacheco%40gmail.com > > This email sent to rui.pach...@gmail.com > -- Best regards, Rui Pacheco ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator comments to the list. Contact the moderat

Re: Problem with OpenSSL header files

2009-10-12 Thread Rui Pacheco
jonat...@mugginsoft.com > > On 12 Oct 2009, at 13:09, Rui Pacheco wrote: > > Hi, >> I'm using a library on my project that requires OpenSSL. I've linked to >> libssl.dilyb and libcrypto.dilyb but when I try to compile my project, it >> comes up with t

Problem with OpenSSL header files

2009-10-12 Thread Rui Pacheco
k to, I still get this error. Where can I find these headers and how can I add them to my project? -- Best regards, Rui Pacheco ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator comments to the l

Re: Strange Core Data problem after upgrade

2009-10-08 Thread Rui Pacheco
- it wasn't like that in 10.4. > > Volker > > Am 08.10.2009 um 15:07 schrieb Rui Pacheco: > > > True, that seems to be the problem. >> >> Is this new? I've another NSTextField bound to a property of type NSNumber >> that works perfectly and I'

Re: Strange Core Data problem after upgrade

2009-10-08 Thread Rui Pacheco
/10/8 Volker in Lists > Hi, > > you need to add a NSNumberFormatter to the text field. Number/String > conversion does not happen automatically. > > Volker > > Am 08.10.2009 um 13:49 schrieb Rui Pacheco: > > > Hi, >> >> Problem A, >> Yes, all cla

Re: Strange Core Data problem after upgrade

2009-10-08 Thread Rui Pacheco
by setting the proper custom class name. > > Cheers, > Volker > -- Best regards, Rui Pacheco ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator comments to the list. Contact the moderator

Strange Core Data problem after upgrade

2009-10-07 Thread Rui Pacheco
ing stringValue]: unrecognized selector sent to instance 0xe909d70. I am not calling stringValue on this property. Any ideas to what might cause this? -- Best regards, Rui Pacheco ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not po

I think there's a problem in the documentation for NSComboBox

2009-10-07 Thread Rui Pacheco
r was the conceptual page for the combo box updated but not the revision date? Did anyone used the data source methods before 10.6? -- Best regards, Rui Pacheco ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin reques

How to manage creation of an unknown number of windows?

2009-10-05 Thread Rui Pacheco
est way to manage an unknown number of windows? -- Best regards, Rui Pacheco ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator comments to the list. Contact the moderators at cocoa-dev-admins(at)lists

I upgraded to 10.6 and all I got was this lousy bug

2009-10-01 Thread Rui Pacheco
} I believe the MOC has been initialised correctly because I have no problem listing the contents of the XML file in an NSTableView. -- Best regards, Rui Pacheco ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post adm

Trying to reproduce a feature of Xcode's interface

2009-09-23 Thread Rui Pacheco
background that stretches with the window but always keeps the row of cells centered (why is gmail complaining about the word centered?). How do you create that row? How do you keep a row of segmented cells centered? -- Best regards, Rui Pacheco ___ Co

NSTableView scroll row by row (?)

2009-09-16 Thread Rui Pacheco
the bottom row also to disappear - I don't want to see half my cell. How do you call this type of behavior? And can you share some pointers if you've implemented it in a NSTableView? -- Best regards, Rui Pacheco ___ Cocoa-dev mailing l

NSTableView doesn't increase the number of elements in table?

2009-09-08 Thread Rui Pacheco
visible. Has anyone encountered something like this? Any clues to what might be? -- Best regards, Rui Pacheco ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator comments to the list. Contact the moderators