webengine/osswebengine/WebCore/platform/symbian/GlyphPageTreeNodeSymbian.cpp
changeset 0 dd21522fd290
equal deleted inserted replaced
-1:000000000000 0:dd21522fd290
       
     1 /*
       
     2  * Copyright (C) 2006 George Staikos <staikos@kde.org>
       
     3  * Copyright (C) 2006 Dirk Mueller <mueller@kde.org>
       
     4  * Copyright (C) 2006 Zack Rusin <zack@kde.org>
       
     5  * Copyright (C) 2007 Nokia Inc
       
     6  *
       
     7  * All rights reserved.
       
     8  *
       
     9  * Redistribution and use in source and binary forms, with or without
       
    10  * modification, are permitted provided that the following conditions
       
    11  * are met:
       
    12  * 1. Redistributions of source code must retain the above copyright
       
    13  *    notice, this list of conditions and the following disclaimer.
       
    14  * 2. Redistributions in binary form must reproduce the above copyright
       
    15  *    notice, this list of conditions and the following disclaimer in the
       
    16  *    documentation and/or other materials provided with the distribution.
       
    17  *
       
    18  * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
       
    19  * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
       
    20  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
       
    21  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE COMPUTER, INC. OR
       
    22  * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
       
    23  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
       
    24  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
       
    25  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
       
    26  * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
       
    27  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
       
    28  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
       
    29  */
       
    30 
       
    31 #include "config.h"
       
    32 #include "GlyphPageTreeNode.h"
       
    33 
       
    34 #include "FontData.h"
       
    35 #include <wtf/unicode/Unicode.h>
       
    36 #include <wtf/Assertions.h>
       
    37 #include "PlatformString.h"
       
    38 #include "DebugStream.h"
       
    39 
       
    40 namespace WebCore {
       
    41 
       
    42 bool GlyphPage::fill(UChar* buffer, unsigned bufferLength, const FontData* fontData)
       
    43 {
       
    44 /*
       
    45     bool isUtf16 = bufferLength != GlyphPage::size;
       
    46 
       
    47     for (unsigned i = 0; i < GlyphPage::size; i++) {
       
    48         UChar32 character;
       
    49 
       
    50         if(isUtf16) {
       
    51             UChar lead = buffer[i * 2];
       
    52             UChar trail = buffer[i * 2 + 1];
       
    53             character = U16_GET_SUPPLEMENTARY(lead, trail);
       
    54         } else {
       
    55             character = buffer[i];
       
    56         }
       
    57 
       
    58         setGlyphDataForIndex(i, character, fontData);
       
    59     }
       
    60 */
       
    61     notImplemented();
       
    62 
       
    63     return true;
       
    64 }
       
    65 
       
    66 }
       
    67 
       
    68 // vim: ts=4 sw=4 et