imageeditor/plugins/DrawPlugin/data/draw.rss
author qifeima <>
Mon, 21 Jun 2010 13:52:33 +0800
changeset 10 e7871f3699e6
parent 1 edfc90759b9f
permissions -rw-r--r--
*m:Change the icons of doodle functionality

/*
* Copyright (c) 2010 Ixonos Plc.
* All rights reserved.
* This component 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 the URL "http://www.eclipse.org/legal/epl-v10.html".
*
* Initial Contributors:
* Nokia Corporation - Initial contribution
*
* Contributors:
* Ixonos Plc
*
* Description: 
* Resource definition file for the plugin.
*
*/


//=============================================================================
//  RESOURCE INDENTIFIER
//=============================================================================
NAME    PGN0

//=============================================================================
//  INCLUDES
//=============================================================================
#include <eikon.rh>
#include <data_caging_paths_strings.hrh>

#include "definitions.def"
#include "ImageEditorPluginBase.hrh"
#include "ImageEditorPluginBase.rh"
#include "ImageEditorUids.hrh"
#include "draw.hrh"
#include "draw_gen.loc"
#include "ImageEditor.loc"


//=============================================================================
//  RESOURCE DEFINITIONS 
//=============================================================================

RESOURCE RSS_SIGNATURE { }

RESOURCE PGNINFO r_plugin_info
    {
    pluginuid           = UID_DRAW_PLUGIN;
    uitype              = EPluginUiTypeCustomized;
    plugintype          = EPluginFilterTypeABITO;
    pluginscope         = EPluginScopeAdjustmentEngine;
    plugindisplayorder  = 11;
    pluginname          = "Draw";//qtn_sie_plugin_name_text;
    iconfile            = "draw.mif";
    filterfile          = "filterdraw.dll";
    }

RESOURCE PARAMNAMES r_plugin_pars
    {
    parameters=
        {
        // Insert text
        //qtn_sie_heading_insert_text,
        "Drow",
        
        // Move text
        //qtn_sie_pgn_move_text, // old
        " ",                     // currently no navi pane text
        
        // Resize text
        //qtn_sie_pgn_resize_text,  //old
        " ",                        // currently no navi pane text
        
        // Rotate text
        //qtn_sie_pgn_rotate_text,  // old
        " "                         // currently no navi pane text
        
        };
    }
 
RESOURCE PGNUIITEMS r_sk1_items
    {
    items=
        {
        PGNUIITEM 
            {    
            id=EPgnSoftkeyIdOptions;
            text=qtn_sie_pgn_sk1_options;
            },
        PGNUIITEM 
            {    
            id=EPgnSoftkeyIdOk;
            text=qtn_sie_pgn_sk1_ok;
            },
        PGNUIITEM 
            {    
            id=EPgnSoftkeyIdOptions;
            text=qtn_sie_pgn_sk1_options;
            }
        };
    }

RESOURCE PGNUIITEMS r_sk2_items
    {
    items=
        {
        PGNUIITEM 
            {    
            id=EPgnSoftkeyIdCancel;
            text=qtn_sie_pgn_sk2_cancel;
            },
        PGNUIITEM 
            {    
            id=EPgnSoftkeyIdCancel;
            text=qtn_sie_pgn_sk2_cancel;
            },
        PGNUIITEM 
            {    
            id=EPgnSoftkeyIdDone;
            text=qtn_sie_pgn_sk2_done;
            }
        };
    }

RESOURCE PGNUIITEMS r_msk_items
    {
    items=
        {
        PGNUIITEM 
            {
            id = EAknSoftkeyContextOptions;
            text = text_softkey_option;
            },
        PGNUIITEM 
            {
            id=EPgnSoftkeyIdOk;
            text=qtn_sie_pgn_sk1_ok;
            },
        PGNUIITEM 
            {
            id = EAknSoftkeyContextOptions;
            text = text_softkey_option;
            }
        };
    }

RESOURCE PGNUIITEMS r_menu_items
    {
    items=
        {
        // Resize
        PGNUIITEM 
            {    
            id=EDrawPgnMenuCmdResize;
            text=qtn_sie_options_resize;
            },
        // Color
        PGNUIITEM 
            {    
            id=EDrawPgnMenuCmdColor;
            text=qtn_sie_options_change_color;
            },
        // Cancel
        PGNUIITEM 
            {    
            id=EDrawPgnMenuCmdCancel;
            text=qtn_sie_options_cancel_effect;
            }
        };
    } 

// Context specific MSK menu
RESOURCE MENU_BAR r_text_context_menubar
    {
    titles =
        {
        MENU_TITLE 
            { 
            menu_pane = r_text_context_menupane; 
            txt = " "; 
            }
        };
    }

RESOURCE MENU_PANE r_text_context_menupane
    {
    items =
        {
        MENU_ITEM 
            { 
            command = EDrawPgnMenuCmdResize; 
            txt = qtn_sie_options_resize; 
            }, 
        MENU_ITEM 
            { 
            command = EDrawPgnMenuCmdColor; 
            txt = qtn_sie_options_change_color; 
            }    
        };
    }
        
    
// Tooltip texts
RESOURCE TBUF r_tooltip_text_resize { buf = qtn_sie_tooltip_resize; } 

RESOURCE TBUF r_title_line_weight { buf = "Line width/weight"; }

// End of File