sl@0: // Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: sl@0: /** sl@0: @file sl@0: @publishedAll sl@0: @released sl@0: */ sl@0: sl@0: #if !defined(__UIKON_RH__) sl@0: #define __UIKON_RH__ sl@0: sl@0: #if !defined(__BADEF_RH__) sl@0: #include sl@0: #endif sl@0: sl@0: #if !defined(__UIKON_HRH__) sl@0: #include sl@0: #endif sl@0: sl@0: #if !defined(__BAERRRSVR_RH__) sl@0: #include sl@0: #endif sl@0: sl@0: STRUCT RESOURCE_LINK sl@0: { sl@0: LLINK id; sl@0: } sl@0: sl@0: STRUCT HOTKEY sl@0: { sl@0: LONG command; sl@0: LONG key; sl@0: } sl@0: sl@0: STRUCT HOTKEYS sl@0: { sl@0: STRUCT plain[]; sl@0: STRUCT control[]; sl@0: STRUCT shift_control[]; sl@0: } sl@0: sl@0: // Removed by Bill sl@0: //#include // for STRUCT FONT sl@0: sl@0: STRUCT NUMBER_INT8 sl@0: { sl@0: BYTE value=0; sl@0: } sl@0: sl@0: STRUCT NUMBER_INT16 sl@0: { sl@0: WORD value=0; sl@0: } sl@0: sl@0: STRUCT NUMBER_INT32 sl@0: { sl@0: LONG value=0; sl@0: } sl@0: sl@0: sl@0: // EIKCOLOR.RH sl@0: // sl@0: // Copyright (c) 1997-2007 Nokia Corporation and/or its subsidiary(-ies). sl@0: // sl@0: sl@0: STRUCT COLOR sl@0: { sl@0: BYTE red; sl@0: BYTE green; sl@0: BYTE blue; sl@0: } sl@0: sl@0: STRUCT CTRL_COLOR sl@0: { sl@0: WORD logical_color; sl@0: STRUCT color; // COLOR sl@0: } sl@0: sl@0: STRUCT COLORLIST sl@0: { sl@0: LLINK array_id=0; sl@0: } sl@0: sl@0: STRUCT EIKCOLORLIST sl@0: { sl@0: LLINK array_id=0; sl@0: LLINK ext_id; sl@0: } sl@0: sl@0: #include sl@0: sl@0: // EIKFONT.RH sl@0: // sl@0: // Copyright (c) 1997-2007 Nokia Corporation and/or its subsidiary(-ies). sl@0: // sl@0: sl@0: //#include sl@0: sl@0: STRUCT FONT sl@0: { sl@0: LONG fontid; // a value from fontids.h sl@0: WORD flags=0; // a combination of EGulFontFlagXxxxs sl@0: } sl@0: sl@0: STRUCT NAMED_FONT sl@0: { sl@0: LTEXT name; sl@0: WORD height; // in twips sl@0: WORD flags=0; // a combination of EGulFontFlagXxxxs sl@0: } sl@0: sl@0: // EIKPRIV.RH sl@0: // sl@0: // Copyright (c) 1997-2007 Nokia Corporation and/or its subsidiary(-ies). sl@0: // sl@0: sl@0: STRUCT INT16 sl@0: { sl@0: WORD value; sl@0: } sl@0: sl@0: sl@0: // EIKPRTPV.RH sl@0: // sl@0: // Copyright (c) 1997-2007 Nokia Corporation and/or its subsidiary(-ies). sl@0: // sl@0: sl@0: // EIKDEF.RH sl@0: // sl@0: // Copyright (c) 1997-2007 Nokia Corporation and/or its subsidiary(-ies). sl@0: // sl@0: sl@0: STRUCT RSS_SIGNATURE sl@0: { sl@0: LONG signature=EEikResourceSignatureValue; sl@0: SRLINK self; sl@0: } sl@0: sl@0: STRUCT TBUF1 { BUF<1> buf; } sl@0: STRUCT TBUF2 { BUF<2> buf; } sl@0: STRUCT TBUF4 { BUF<4> buf; } sl@0: STRUCT TBUF8 { BUF<8> buf; } sl@0: STRUCT TBUF9 { BUF<9> buf; } sl@0: STRUCT TBUF16 { BUF<16> buf; } sl@0: STRUCT TBUF32 { BUF<32> buf; } sl@0: STRUCT TBUF40 { BUF<40> buf; } sl@0: STRUCT TBUF64 { BUF<64> buf; } sl@0: STRUCT TBUF80 { BUF<80> buf; } sl@0: STRUCT TBUF128 { BUF<128> buf; } sl@0: STRUCT TBUF256 { BUF<256> buf; } sl@0: sl@0: STRUCT EIK_APP_INFO sl@0: { sl@0: LLINK hotkeys=0; sl@0: LLINK menubar=0; sl@0: LLINK toolbar=0; sl@0: LLINK toolband=0; sl@0: LLINK cba=0; sl@0: LLINK status_pane=0; sl@0: LLINK custom_app_info_extension=0; sl@0: } sl@0: sl@0: STRUCT PAGESIZE sl@0: { sl@0: LONG width=0; sl@0: LONG height=0; sl@0: } sl@0: sl@0: STRUCT VIEW_ID sl@0: { sl@0: LONG appuid; sl@0: LONG viewuid; sl@0: } sl@0: sl@0: // EIKSPANE.RH sl@0: // sl@0: // Copyright (c) 1997-2007 Nokia Corporation and/or its subsidiary(-ies). sl@0: // sl@0: sl@0: sl@0: STRUCT STATUS_PANE_SYSTEM_MODEL // System wide status pane declaration sl@0: { sl@0: STRUCT panes[]; // entire set of valid SPANE_PANEs sl@0: LLINK default_layout; // default STATUS_PANE_LAYOUT sl@0: LLINK layouts[]; // entire set of STATUS_PANE_LAYOUTs sl@0: } sl@0: sl@0: STRUCT SPANE_PANE sl@0: { sl@0: LONG id; sl@0: WORD flags=EEikStatusPaneServerOwned; sl@0: WORD type; sl@0: LLINK resource=0; sl@0: } sl@0: sl@0: STRUCT STATUS_PANE_LAYOUT sl@0: { sl@0: WORD position; sl@0: STRUCT pane_tree; // SPANE_LAYOUT_TREE_NODE root of the layout tree sl@0: } sl@0: sl@0: STRUCT SPANE_LAYOUT_TREE_NODE sl@0: { sl@0: LONG id=0; sl@0: WORD flags; sl@0: WORD size; sl@0: STRUCT sub_panes[]; // SPANE_LAYOUT_TREE_NODE sub panes sl@0: } sl@0: sl@0: STRUCT STATUS_PANE_APP_MODEL // Application specific status pane sl@0: { sl@0: LLINK layout=EEikStatusPaneUseDefaults; // STATUS_PANE_LAYOUT to use for this app sl@0: STRUCT panes[]; // SPANE_PANE overrides to use for this app sl@0: } sl@0: sl@0: // Notifiers sl@0: sl@0: STRUCT NOTIFIER_LIST sl@0: { sl@0: LONG dll_uid; sl@0: sl@0: LEN WORD STRUCT notifier_list[]; // notifier data sl@0: } sl@0: sl@0: STRUCT NOTIFIER_DATA sl@0: { sl@0: LONG notifier_uid; sl@0: } sl@0: sl@0: #endif