gsprofilesrv_plat/filelist_api/inc/FileListModel.rh
branchRCL_3
changeset 54 7e0eff37aedb
parent 0 8c5d936e5675
equal deleted inserted replaced
53:8ee96d21d9bf 54:7e0eff37aedb
       
     1 /*
       
     2 * Copyright (c) 2002 Nokia Corporation and/or its subsidiary(-ies).
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description: 
       
    15 *     This file contains declarations for resources of File List.
       
    16 *     The file can be included only in resource file.
       
    17 *     
       
    18 *
       
    19 */
       
    20 
       
    21 
       
    22 #include <FileListModel.hrh>
       
    23 
       
    24 //  STRUCTURE DEFINITIONS
       
    25     
       
    26 // ---------------------------------------------------------
       
    27 //    FILELISTDIRECTORIES
       
    28 // ---------------------------------------------------------
       
    29 //
       
    30 /**
       
    31 
       
    32   Content Listing Framework won't scan the ROM so we must
       
    33   define which ROM directories are wanted into FileList model.
       
    34   These definitions are put into RomDirectories -section.
       
    35   
       
    36   If user wants to define specific locations where tones are
       
    37   searched in phone ( C: and E: ), these definitions are put into
       
    38   PhoneDirectories -section. NOTE: these locations must be
       
    39   inside C:\\data and E: folders ( including subdirectories ).
       
    40   If this definition is left empty, use all the locations
       
    41   scanned by CLF.
       
    42     
       
    43   Here is an example of the usage:
       
    44   
       
    45   RESOURCE FILELISTDIRECTORIES r_fld_directories
       
    46     {
       
    47     // Scan these ROM directories
       
    48     RomDirectories =
       
    49         {
       
    50         LBUF { txt = text_rom_root_path text_sounds_path; },
       
    51         LBUF { txt = text_rom_root_path text_digital_sounds_path; },
       
    52         LBUF { txt = text_rom_root_path text_simple_sounds_path; }
       
    53         };
       
    54     
       
    55     // Show only these these phone directories.
       
    56   	PhoneDirectories =
       
    57         {
       
    58         LBUF { txt = "c:\\data\\sounds\\simple\\"; }
       
    59         };   
       
    60 */
       
    61     
       
    62 STRUCT FILELISTDIRECTORIES
       
    63 	{    
       
    64 	// LTEXT array of ROM directories to be scanned
       
    65     STRUCT RomDirectories[];
       
    66     
       
    67     // LTEXT array of directories on phone and memorycard
       
    68     STRUCT PhoneDirectories[];
       
    69 	}
       
    70 // End of File