This XML file was automatically generated by UiBuilder - do not modify by hand.
-->
<!DOCTYPE ScenePanel SYSTEM "UIForm.dtd">
-<ScenePanel Bversion="2.0.0.201305311836" Dversion="20120315">
+
+<ScenePanel Bversion="2.0.0.201306151404" Dversion="20120315">
<Panel id="IDL_FIND_ON_PAGE">
<property backgroundColor="" backgroundColorOpacity="0" compositeEnabled="true" groupStyle="GROUP_STYLE_NONE"/>
<layout height="82.0" mode="Portrait" type="LAYOUT_RELATIVE" width="720.0" x="3.0" y="27.0"/>
<layout bottomRelation="" bottomRelationType="" centerHorizontal="false" centerVertical="false" height="72.0" horizontalFitPolicy="FIT_POLICY_FIXED" leftRelation="" leftRelationType="RECT_EDGE_RELATION_LEFT_TO_LEFT" marginBottom="0.0" marginLeft="0.0" marginRight="0.0" marginTop="0.0" mode="Landscape" rightRelation="IDC_PANEL2" rightRelationType="RECT_EDGE_RELATION_RIGHT_TO_RIGHT" style="EDIT_FIELD_STYLE_NORMAL_SMALL" topRelation="IDC_PANEL2" topRelationType="RECT_EDGE_RELATION_TOP_TO_TOP" verticalFitPolicy="FIT_POLICY_FIXED" width="671.0" x="252.0" y="0.0"/>
</EditField>
<Label id="IDC_FIND_COUNT_LABEL2" parent="IDC_PANEL2">
- <property accessibilityHint="" backgroundBitmapPath="" backgroundColor="" backgroundColorOpacity="0" horizontalAlign="ALIGN_RIGHT" leftMargin="16" text="" textColor="#4E4945" textSize="22.0" textStyle="LABEL_TEXT_STYLE_NORMAL" topMargin="0" verticalAlign="ALIGN_MIDDLE"/>
+ <property accessibilityHint="" backgroundBitmapPath="" backgroundColor="" backgroundColorOpacity="0" horizontalAlign="ALIGN_LEFT" leftMargin="16" text="" textColor="#4E4945" textSize="22.0" textStyle="LABEL_TEXT_STYLE_NORMAL" topMargin="0" verticalAlign="ALIGN_MIDDLE"/>
<layout bottomRelation="" bottomRelationType="" centerHorizontal="false" centerVertical="false" height="72.0" horizontalFitPolicy="FIT_POLICY_FIXED" leftRelation="" leftRelationType="" marginBottom="0.0" marginLeft="0.0" marginRight="0.0" marginTop="0.0" mode="Portrait" rightRelation="" rightRelationType="RECT_EDGE_RELATION_RIGHT_TO_LEFT" topRelation="" topRelationType="" verticalFitPolicy="FIT_POLICY_FIXED" width="124.0" x="72.0" y="0.0"/>
<layout bottomRelation="" bottomRelationType="" centerHorizontal="false" centerVertical="false" height="72.0" horizontalFitPolicy="FIT_POLICY_FIXED" leftRelation="" leftRelationType="" marginBottom="0.0" marginLeft="0.0" marginRight="0.0" marginTop="0.0" mode="Landscape" rightRelation="" rightRelationType="RECT_EDGE_RELATION_RIGHT_TO_LEFT" topRelation="" topRelationType="" verticalFitPolicy="FIT_POLICY_FIXED" width="180.0" x="72.0" y="0.0"/>
</Label>
AppLogDebug("EditHistoryListForm::OnSceneActivatedN");
int groupCount = 0;
int count = 0;
+ String selectedText = L"";
if(__pGroupData != null)
{
}
__pSelectAllCheck->SetSelected(false);
__selectedCount = 0;
+ selectedText.Format(25, CommonUtil::GetString(L"IDS_BR_BODY_PD_ITEM_SELECTED").GetPointer() , __selectedCount);
+ __pSelectedLabel->SetText(selectedText);
+ __pSelectedLabel->Invalidate(true);
GetFooter()->SetItemEnabled(0, false);
Invalidate(true);
}
InternetApp* pInternet = static_cast<InternetApp*> (Application::GetInstance());
Construct(L"IDL_FORM_HW_KEY");
-// SetFormStyle(FORM_STYLE_NORMAL | FORM_STYLE_INDICATOR | FORM_STYLE_HEADER);
+// SetFormStyle(FORM_STYLE_NORMAL | FORM_STYLE_INDICATOR | FORM_STYLE_FOOTER);
return true;
}
__pItemContextLandscape->SetElementBackgroundColor(IDA_CONTEXT_ITEM_DELETE,LIST_CONTEXT_ITEM_ELEMENT_STATUS_HIGHLIGHTED , CONTEXT_ITEM_DELETE_COLOR);
__pItemContextLandscape->SetElementBackgroundColor(IDA_CONTEXT_ITEM_DELETE,LIST_CONTEXT_ITEM_ELEMENT_STATUS_PRESSED , CONTEXT_ITEM_DELETE_COLOR);
SetFormMenuEventListener(this);
+ AppLog("SetFormMenuEventListener result %s",GetErrorMessage(GetLastResult()));
return E_SUCCESS;
}
SetFormBackEventListener(this);
+ AppLog("SetFormBackEventListener result %s",GetErrorMessage(GetLastResult()));
if (__pMultiWindowButton != null)
{
Bitmap* pBitmap = null;
break;
case IDA_PRINT_CLICKED:
{
- r = __pWebViewer->SavePageAsPdf(UiApp::GetInstance()->GetAppRootPath()+"//shared//data//test.pdf");
+ r = __pWebViewer->SavePageAsPdf(UiApp::GetInstance()->GetAppRootPath()+"//data//test.pdf");
AppLog("SavePageAsPdf result %s",GetErrorMessage(r));
AppLog("RequestPrint called!");
String fileCount = L"service_print_files_count";
String countVal = L"1";
String fileFolder= L"service_print_files_folder_name";
- String folderVal = UiApp::GetInstance()->GetAppRootPath()+"//shared//data";
+ String folderVal = UiApp::GetInstance()->GetAppRootPath()+"//data";
map.Add(&fileCount, &countVal);
map.Add(&fileFolder, &folderVal);
AppLog("MainForm::OnWebPageBlockSelected web not null");
__pHitElementResult = __pWebViewer->GetElementByPointN(startPoint);
- if(GetLastResult() == E_INVALID_ARG)
+ if(GetLastResult() == E_INVALID_ARG || (__pHitElementResult->GetTagName().CompareTo(L"INPUT") != 0 && __pHitElementResult->GetTagName().CompareTo(L"TEXTAREA") != 0))
{
AppLog("datafirst startpoint error %s",GetErrorMessage(GetLastResult()));
__pHitElementResult = __pWebViewer->GetElementByPointN(endPoint);
- if(GetLastResult() == E_INVALID_ARG)
+ if(GetLastResult() == E_INVALID_ARG || (__pHitElementResult->GetTagName().CompareTo(L"INPUT") != 0 && __pHitElementResult->GetTagName().CompareTo(L"TEXTAREA") != 0))
{
__pHitElementResult = __pWebViewer->GetElementByPointN(__longPressPoint);
}