diff dwt/internal/cocoa/NSMutableString.d @ 45:d8635bb48c7c

Merge with SWT 3.5
author Jacob Carlborg <doob@me.com>
date Mon, 01 Dec 2008 17:07:00 +0100
parents f565d3a95c0a
children
line wrap: on
line diff
--- a/dwt/internal/cocoa/NSMutableString.d	Tue Oct 21 15:20:04 2008 +0200
+++ b/dwt/internal/cocoa/NSMutableString.d	Mon Dec 01 17:07:00 2008 +0100
@@ -1,84 +1,51 @@
 /*******************************************************************************
- * Copyright (c) 2007 IBM Corporation and others.
+ * Copyright (c) 2000, 2008 IBM Corporation and others.
  * All rights reserved. This program and the accompanying materials
  * are made available under the terms of the Eclipse Public License v1.0
  * which accompanies this distribution, and is available at
  * http://www.eclipse.org/legal/epl-v10.html
  *
  * Contributors:
- *     IBM Corporation - initial API and implementation
+ *    IBM Corporation - initial API and implementation
  *     
  * Port to the D programming language:
- *     Jacob Carlborg <jacob.carlborg@gmail.com>
+ *    Jacob Carlborg <doob@me.com>
  *******************************************************************************/
 module dwt.internal.cocoa.NSMutableString;
 
-import dwt.internal.cocoa.id;
-import dwt.internal.cocoa.NSInteger;
-import dwt.internal.cocoa.NSRange;
+import dwt.dwthelper.utils;
+import cocoa = dwt.internal.cocoa.id;
 import dwt.internal.cocoa.NSString;
 import dwt.internal.cocoa.OS;
+import dwt.internal.objc.cocoa.Cocoa;
 import objc = dwt.internal.objc.runtime;
 
-public class NSMutableString : NSString
-{
+public class NSMutableString : NSString {
 
-    public this ()
-    {
-        super();
-    }
-
-    public this (objc.id id)
-    {
-        super(id);
-    }
+public this() {
+    super();
+}
 
-    public void appendFormat (NSString appendFormat)
-    {
-        OS.objc_msgSend(this.id_, OS.sel_appendFormat_1, appendFormat !is null ? appendFormat.id_ : null);
-    }
+public this(objc.id id) {
+    super(id);
+}
 
-    public void appendString (NSString aString)
-    {
-        OS.objc_msgSend(this.id_, OS.sel_appendString_1, aString !is null ? aString.id_ : null);
-    }
-
-    public void deleteCharactersInRange (NSRange range)
-    {
-        OS.objc_msgSend(this.id_, OS.sel_deleteCharactersInRange_1, range);
-    }
+public this(cocoa.id id) {
+    super(id);
+}
 
-    public NSMutableString initWithCapacity (NSUInteger capacity)
-    {
-        objc.id result = OS.objc_msgSend(this.id_, OS.sel_initWithCapacity_1, capacity);
-        return result !is null ? this : null;
-    }
-
-    public void insertString (NSString aString, NSUInteger loc)
-    {
-        OS.objc_msgSend(this.id_, OS.sel_insertString_1atIndex_1, aString !is null ? aString.id_ : null, loc);
-    }
-
-    public void replaceCharactersInRange (NSRange range, NSString aString)
-    {
-        OS.objc_msgSend(this.id_, OS.sel_replaceCharactersInRange_1withString_1, range, aString !is null ? aString.id_ : null);
-    }
+public void appendString(NSString aString) {
+    OS.objc_msgSend(this.id, OS.sel_appendString_, aString !is null ? aString.id : null);
+}
 
-    public NSUInteger replaceOccurrencesOfString (NSString target, NSString replacement, NSStringCompareOptions options, NSRange searchRange)
-    {
-        return cast(NSUInteger) OS.objc_msgSend(this.id_, OS.sel_replaceOccurrencesOfString_1withString_1options_1range_1, target !is null ? target.id_ : null,
-                replacement !is null ? replacement.id_ : null, options, searchRange);
-    }
+public static NSString stringWithCharacters(/*const*/wchar* characters, NSUInteger length) {
+    objc.id result = OS.objc_msgSend(OS.class_NSMutableString, OS.sel_stringWithCharacters_length_, characters, length);
+    return result !is null ? new NSMutableString(result) : null;
+}
 
-    public void setString (NSString aString)
-    {
-        OS.objc_msgSend(this.id_, OS.sel_setString_1, aString !is null ? aString.id_ : null);
-    }
-
-    public static id stringWithCapacity (NSUInteger capacity)
-    {
-        objc.id result = OS.objc_msgSend(OS.class_NSMutableString, OS.sel_stringWithCapacity_1, capacity);
-        return result !is null ? new id(result) : null;
-    }
+public static NSString stringWithUTF8String(/*const*/char* nullTerminatedCString) {
+    objc.id result = OS.objc_msgSend(OS.class_NSMutableString, OS.sel_stringWithUTF8String_, nullTerminatedCString);
+    return result !is null ? new NSString(result) : null;
+}
 
 }