Version 4.3.0.0.beta1, tag libreoffice-4.3.0.0.beta1
[LibreOffice.git] / fpicker / source / aqua / NSString_OOoAdditions.mm
blob66391a9e158bbefcadd40908586be7800c30b5be
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3  * This file is part of the LibreOffice project.
4  *
5  * This Source Code Form is subject to the terms of the Mozilla Public
6  * License, v. 2.0. If a copy of the MPL was not distributed with this
7  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8  *
9  * This file incorporates work covered by the following license notice:
10  *
11  *   Licensed to the Apache Software Foundation (ASF) under one or more
12  *   contributor license agreements. See the NOTICE file distributed
13  *   with this work for additional information regarding copyright
14  *   ownership. The ASF licenses this file to you under the Apache
15  *   License, Version 2.0 (the "License"); you may not use this file
16  *   except in compliance with the License. You may obtain a copy of
17  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
18  */
20 #include "CFStringUtilities.hxx"
21 #include "NSString_OOoAdditions.hxx"
23 #define CLASS_NAME "NSString"
25 @implementation NSString (OOoAdditions) 
27 + (id) stringWithOUString:(const rtl::OUString&)ouString
29     DBG_PRINT_ENTRY(CLASS_NAME, __func__, "ouString", ouString);
31     NSString *string = [[NSString alloc] initWithOUString:ouString];
33     DBG_PRINT_EXIT(CLASS_NAME, __func__, string);
34     return [string autorelease];
37 - (id) initWithOUString:(const rtl::OUString&)ouString
39     DBG_PRINT_ENTRY(CLASS_NAME, __func__, "ouString", ouString);
40     if ((self = [super init])) {
41         self = [self initWithCharacters:ouString.getStr() length:ouString.getLength()];
42         
43         DBG_PRINT_EXIT(CLASS_NAME, __func__, self);
44         
45         return self;
46     }
47     
48     DBG_PRINT_EXIT(CLASS_NAME, __func__, self);
49     return nil;
52 - (rtl::OUString) OUString
54     unsigned int nFileNameLength = [self length];
56     UniChar unichars[nFileNameLength+1];
58     //'close' the string buffer correctly
59     unichars[nFileNameLength] = '\0';
61     [self getCharacters:unichars];
63     return rtl::OUString(unichars);
66 @end
68 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */