Well, for one you can only do it one handed!
Also you have to be ready for sudden lunges towards the keyboard. Bang bang bang go the keys. Oops a wrong click or an inopportune Enter and say goodbye to all that work.
Still it is nice for the little one to see what Daddy does all day, even if I have to spend most of the time stopping her from eating any CDs and other things I’ve foolishly left just within reach 😉
The monster child expresses her undying love for Daddy’s G5
Cocoa bindings
I have to say that Cocoa bindings are one of the coolest things to some to Cocoa in a long time.
It takes a bit of getting used to however, and the documentation isn’t the greatest. One of the things that had me stumped for a bit was how to have a button‘s enabled flag depend on more than one edit field having a value. There was only one Enabled binding. It seems that Interface Build adds more Enabled bindings as you create them. So you add an Enabled binding, and all of a sudden in the bindings tab appears Enabled2. Add another one and what do you know Enabled3 magically comes into existence 🙂
I spent a little while looking to see if there was some way of doing something like Enabled = IsNotNull(field1) and IsNotNull(field2) and IsNotNull(field3), when all I had to do was just add them in.
It’s nice when the tools are smart like this, although it would also be nice if there was some documentation that said something like this would happen. I guess I should have know it would do that since it makes sense for it to do so. One of the nice things about Apple software is that it tends to just work (most of the time).
The cocoa rendering system is really nice
For a secret project I’m currently working on I needed to make a NSTextView that resized its contents so that it was always fully visible regardless of how many lines of text were in there. Coding something like that under Windows would have been pretty awful (especially since the text needs to still be editable), but cocoa made it a snap. Just make sure that the ratio of the control bounds and the parent controls frame is correct every time the text changes 🙂 The more I use cocoa, the more I want to use it, and the less I want to go back to other systems.Â
Â
From what I understand the Microsoft .Net stuff would allow a similar approach, and the Java swing libraries would definitely allow itÂ
Blog APIs
It can be quite annoying when an application claims to support an API and actually doesn’t 🙁
I’ve been working on BlogThing off an on for about a week or so. Originally I used a bit of the metaWeblog API and a bit of the MovableType API. I’ve since standardized on metaWeblog and removed the references to MovableType. 🙂
Now, I’ve successfully tested BlogThing against WordPress and Typo however, Blojsom, while it claims to support the metaWeblog API it soon becomes apparent that this is not the case 🙁
Accessing the string and attribute data in a NSTextView
NSTextView stores its data in a NSTextStorage object. NSTextStorage descends from NSMutableAttributed string, so that gives us a clue.Â
The easiest thing to do is to make a category on the NSAttributedString class to do whatever it is you want containing something like the following.Â
Â
    NSRange range;Â
    int i;Â
    int L = [self length];Â
            Â
    i = 0;Â
    while(i<L) {Â
        // get all the attributes we are interested inÂ
        NSDictionary* attributes = [self attributesAtIndex: i effectiveRange: &range];Â
        NSAttributedString* attPart = [self attributedSubstringFromRange: range];Â
        NSString* part = [attPart string];Â
        NSFont* font = [attributes objectForKey: NSFontAttributeName];Â
        NSColor* color = [attributes objectForKey: @”NSColor”];Â
        NSParagraphStyle* paraStyle = [attributes objectForKey: NSParagraphStyleAttributeName];Â
        NSShadow* shadow = [attributes objectForKey: NSShadowAttributeName];Â
        NSURL* link = [attributes objectForKey: NSLinkAttributeName];Â
        Â
        NSTextAttachment* attachment = [attributes objectForKey: NSAttachmentAttributeName];Â
        Â
        // process your attributed string pieces hereÂ
Â
        i = range.location+range.length;Â
    }Â
I’ve just added automatic image resizing to my blog client
It’s all very exciting 🙂
Here is an example of an auto-resized images
I’ve also added code to automatically recognize URLs in the text and convert them to links.
For example http://www.automagic-software.com/
Colourized entries
I went to all the trouble of adding code to allow for different fonts and colours and such. I tested it on my local machine against WordPress 1.5x and it all worked perfectly. Then I tried to make a post here where I’m running WordPress 2.0 and found that it stripped out all the lovely colours.
After a bit of poking about on the net I found that this is a bug in the 2.0 WordPress code base and as since been fixed in the 2.0.1 release. So after a quick update of the code…. Here we are.
//
// BlogAPI.h
// BlogThing
//
// Created by Daniel Parnell on 28/01/06.
// Copyright 2006 Automagic Software. All rights reserved.
//
#import <Cocoa/Cocoa.h>
@interface BlogAPI : NSObject {
NSURL* url;
NSString* username;
NSString* password;
}
+ (BlogAPI*) blogAPIWithURL:(NSURL*)aURL username:(NSString*)aUsername andPassword:(NSString*)aPassword;
+ (NSString*) describeBlogError:(NSDictionary*)errorInfo;
– (id) initWithURL:(NSURL*)aURL username:(NSString*)aUsername andPassword:(NSString*)aPassword;
– (void) setUsername:(NSString*)aUsername;
– (NSString*) username;
– (void) setPassword:(NSString*)aPassword;
– (NSString*) password;
– (void) setURL: (NSURL*)aURL;
– (NSURL*) URL;
– (NSArray*) getCategoryList;
– (int) newPost: (NSString*)aTitle withBody: (NSString*)aBody andDateTime:(NSDate*) aDateTime shouldPublish:(BOOL)flag;
– (BOOL) setCategories: (NSArray*)theCategories forPost: (int)aPostId;
– (NSString*) upload: (NSData*)data withName: (NSString*)name;
@end
First Post
This is my first post to my new blog.
I’ve been working on a simple blog client for my wife to use to post pictures of our daughter Molly to a private blog. Last time I’d checked there weren’t any nice blog clients that supported password protected blogs in a nice way. So I whipped up this little client. I’ve since found that some of the newer versions of the clients seem to support password protected blogs 😉
Ah well, it was a fun exercise making a blog client using Cocoa and the WordPress XML-RPC interface. I’ve had a couple of interesting problems with pictures displaying differently under Tiger to the way they look under Panther, but I think I’ve figured that out now 🙂 It seems that NSTextView respects the DPI settings in an image under Tiger while under Panther it does not. I had to hack about a bit in NSTextView, NSTextAttachment and NSTextStorage to find a solution.