?? bitmap.rss
字號:
/**
*
* @brief Resource file for Bitmap application
*
* © EMCC Software Ltd
* @version 1.0
*/
// RESOURCE IDENTIFIER
NAME BITM // 4 letter ID
// INCLUDES
#include <avkon.rh>
#include <avkon.rsg>
#include <eikon.rh>
#include <eikon.rsg>
#include "Bitmap.hrh"
#include "Bitmap.loc"
// RESOURCE DEFINITIONS
RESOURCE RSS_SIGNATURE { }
RESOURCE TBUF {buf = "Bitmap"; }
RESOURCE EIK_APP_INFO
{
status_pane = r_bitmap_status_pane;
}
// ---------------------------------------------------------
//
// r_bitmap_status_pane
// Define the status pane
//
// ---------------------------------------------------------
//
RESOURCE STATUS_PANE_APP_MODEL r_bitmap_status_pane
{
panes=
{
SPANE_PANE
{
id = EEikStatusPaneUidNavi;
type = EAknCtNaviPane;
resource = r_bitmap_navi_decorator;
}
};
}
//----------------------------------------------------
//
// r_bitmap_navi_decorator
// Define the navi decorator
//
//----------------------------------------------------
//
RESOURCE NAVI_DECORATOR r_bitmap_navi_decorator
{
type = ENaviDecoratorControlTabGroup;
control = TAB_GROUP
{
tab_width = EAknTabWidthWithThreeTabs; // three tabs
active = 0;
tabs = {
TAB
{
id = EBitmapDrawViewId; // from application hrh
txt = qte_drawview_tab;
},
TAB
{
id = EBitmapBitBltViewId; // from application hrh
txt = qte_bitbltview_tab;
},
TAB
{
id = EBitmapBitBltMaskViewId;
txt = qte_bitbltmaskview_tab;
}
};
};
}
// ---------------------------------------------------------
//
// r_bitmap_drawview
// Define draw view
//
// ---------------------------------------------------------
//
RESOURCE AVKON_VIEW r_bitmap_drawview
{
cba = R_AVKON_SOFTKEYS_EXIT;
}
// ---------------------------------------------------------
//
// r_bitmap_bitbltview
// Define bitblt view
//
// ---------------------------------------------------------
//
RESOURCE AVKON_VIEW r_bitmap_bitbltview
{
cba = R_AVKON_SOFTKEYS_EXIT;
}
// ---------------------------------------------------------
//
// r_bitmap_bitbltmaskview
// Define bitbltmask view
//
// ---------------------------------------------------------
//
RESOURCE AVKON_VIEW r_bitmap_bitbltmaskview
{
cba = R_AVKON_SOFTKEYS_EXIT;
}
// End of File
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -