// Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
// All rights reserved.
// This component and the accompanying materials are made available
// under the terms of "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:
//
// Description:
//
NAME TVW1
#include <techview/eikon.rh>
#include <techview/eikon.rsg>
#include <eikon.mbg>
#include "tvwview.RH"
#include "tview1.HRH"
//
// Essential resources.
//
RESOURCE RSS_SIGNATURE { }
RESOURCE TBUF { buf=""; }
RESOURCE EIK_APP_INFO
{
menubar=r_vw_menubar;
hotkeys=r_vw_hotkeys;
}
//
// Hot keys.
//
RESOURCE HOTKEYS r_vw_hotkeys
{
control=
{
HOTKEY { command=EEikCmdExit; key='e'; },
HOTKEY { command=EDisplayTaskList; key='t'; },
HOTKEY { command=ESwitchView; key='s'; }
};
}
//
// Menu bar.
//
RESOURCE MENU_BAR r_vw_menubar
{
titles=
{
MENU_TITLE { menu_pane=r_vw_basic_menu; txt="Basic"; },
MENU_TITLE { menu_pane=r_vw_regression_test_menu; txt="Regrsn. Test"; },
MENU_TITLE { menu_pane=r_vw_exception_test_menu; txt="Excptn. Test"; },
MENU_TITLE { menu_pane=r_vw_abuse_test_menu; txt="Abuse Test"; },
MENU_TITLE { menu_pane=r_vw_auto_test_menu; txt="Auto Test"; }
};
}
RESOURCE MENU_PANE r_vw_basic_menu
{
items=
{
MENU_ITEM { command=ESwitchView; txt="Switch view dialog"; },
MENU_ITEM { command=EDisplayRichText; txt="Rich text dialog"; },
MENU_ITEM { command=EDisplayTaskList; txt="Task list"; },
MENU_ITEM { command=EToggleTimeOutEnabled; txt="Enable time out"; flags=EEikMenuItemCheckBox; },
MENU_ITEM { command=EEikCmdExit; txt="Close"; }
};
}
RESOURCE MENU_PANE r_vw_exception_test_menu
{
items=
{
MENU_ITEM { command=ESuccesiveAllocFail; txt="Test Succesive Alloc Failure"; },
MENU_ITEM { command=EActivationOOM; txt="Test Activation OOM"; },
MENU_ITEM { command=EStartMissingApp; txt="Test Start Missing App"; },
MENU_ITEM { command=EPanicedActivation; txt="Test Paniced Activation"; },
MENU_ITEM { command=EPanicedDeactivation; txt="Test Paniced Deactivation"; },
MENU_ITEM { command=ESlowActivation; txt="Test Slow Activation"; },
MENU_ITEM { command=ESlowDeactivation; txt="Test Slow Deactivation"; }
};
}
RESOURCE MENU_PANE r_vw_regression_test_menu
{
items=
{
MENU_ITEM { command=EExitAndDoubleActivaiton; txt="Test Exit Between Activations"; },
MENU_ITEM { command=EForegroundChange; txt="Test Foreground Change While Events On Queue"; },
MENU_ITEM { command=ECheckForegroundChange; txt="Check result - Foreground Change While Events On Queue"; }
};
}
RESOURCE MENU_PANE r_vw_abuse_test_menu
{
items=
{
MENU_ITEM { command=EWaitingActivation; txt="Test Waiting Activation"; },
MENU_ITEM { command=EActivateInsideViewActivated; txt="Test Activate Inside ViewActivated"; },
MENU_ITEM { command=EWaitOnAppStart; txt="Test Wait On App Start"; }
};
}
RESOURCE MENU_PANE r_vw_auto_test_menu
{
items=
{
MENU_ITEM { command=EEnduranceTest; txt="Endurance Test"; },
MENU_ITEM { command=EEnduranceWithKillsTest; txt="Endurance With Kills Test"; }
};
}
//
// View switch dialog.
//
RESOURCE DIALOG r_vw_view_switch_dialog
{
flags=EEikDialogFlagWait|EEikDialogFlagButtonsRight;
title="Switch view";
buttons=R_EIK_BUTTONS_CANCEL_OK;
items=
{
DLG_LINE
{
type=EEikCtChoiceList;
prompt="App:";
id=ESwitchDlg_AppChoice;
control=CHOICELIST
{
array_id=r_vw_switch_dlg_app_choice_array;
flags=EEikChlistIncrementalMatching;
};
},
DLG_LINE
{
type=EEikCtChoiceList;
prompt="View:";
id=ESwitchDlg_ViewChoice;
control=CHOICELIST
{
array_id=r_vw_switch_dlg_view_choice_array;
flags=EEikChlistIncrementalMatching;
};
},
DLG_LINE
{
prompt="Custom msg:";
type=EEikCtEdwin;
id=ESwitchDlg_CustomMsg;
itemflags=0;
control=EDWIN { maxlength=256; width=8; };
}
};
}
RESOURCE ARRAY r_vw_switch_dlg_app_choice_array
{
items=
{
LBUF { txt="TVIEW1"; },
LBUF { txt="TVIEW2"; }
};
}
RESOURCE ARRAY r_vw_switch_dlg_view_choice_array
{
items=
{
LBUF { txt="View 1"; },
LBUF { txt="View 2"; }
};
}
//
// Rich text dialog
//
RESOURCE DIALOG r_vw_rtexted_dialog
{
flags=EEikDialogFlagWait;
buttons=R_EIK_BUTTONS_CANCEL_OK;
title="Embed objects in editor";
items=
{
DLG_LINE
{
type=EEikCtRichTextEditor;
id=ERtextedDlg_Editor;
control=RTXTED
{
width=200;
height=80;
numlines=0;
};
}
};
}