Fixed Nabi Issues
[apps/osp/Internet.git] / src / IntBookmarkListForm.cpp
1 //
2 // Copyright (c) 2012 Samsung Electronics Co., Ltd.
3 //
4 // Licensed under the Flora License, Version 1.0 (the License);
5 // you may not use this file except in compliance with the License.
6 // You may obtain a copy of the License at
7 //
8 //     http://floralicense.org/license/
9 //
10 // Unless required by applicable law or agreed to in writing, software
11 // distributed under the License is distributed on an AS IS BASIS,
12 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 // See the License for the specific language governing permissions and
14 // limitations under the License.
15 //
16
17 //!Internet
18 /*@file:    IntBookmarkListForm
19  *@brief:       This class defines BookmarkListForm
20  *
21  */
22
23 #include <FApp.h>
24 #include "IntBookmarkData.h"
25 #include "IntBookmarkListForm.h"
26 #include "IntBookmarkPresentationModel.h"
27 #include "IntCommonLib.h"
28 #include "IntConfirmationPopup.h"
29 #include "IntFaviconManager.h"
30 #include "IntMultipleWindowPresentationModel.h"
31 #include "IntSceneRegister.h"
32 #include "IntTypes.h"
33
34
35 using namespace Tizen::App;
36 using namespace Tizen::Base;
37 using namespace Tizen::Base::Collection;
38 using namespace Tizen::Base::Runtime;
39 using namespace Tizen::Graphics;
40 using namespace Tizen::Ui;
41 using namespace Tizen::Ui::Controls;
42 using namespace Tizen::Ui::Scenes;
43 using namespace Tizen::Media;
44
45 const wchar_t* DEFAULT_VALUE_PARENTID = L"-1";
46 static const wchar_t* IDB_TAB_ICON_BOOKMARK = L"I01_tab_icon_bookmarks.png";
47 static const wchar_t* IDB_TAB_ICON_HISTORY = L"I01_tab_icon_history.png";
48 static const wchar_t* IDB_NO_CONTENT_BOOKMARK = L"I01_Nocontents_Bookmarks.png";
49 static const wchar_t* IDB_ICON_FOLDER_OPEN = L"I01_icon_folder_open.png";
50
51 const int BookmarkListForm::IDA_TABBAR_ITEM_1 = 101;
52 const int BookmarkListForm::IDA_TABBAR_ITEM_2 = 102;
53 const int BookmarkListForm::IDA_FOOTER_ITEM1 = 103;
54 const int BookmarkListForm::IDA_FOOTER_ITEM2 = 104;
55 const int BookmarkListForm::IDA_FOOTER_ITEM_ADDBOOKMARK = 105;
56 const int BookmarkListForm::IDA_FORMAT_FOLDER = 106;
57 const int BookmarkListForm::IDA_FORMAT_SITE = 107;
58 const int BookmarkListForm::IDA_CONTEXT_ITEM_FOLDER_EDIT = 108;
59 const int BookmarkListForm::IDA_CONTEXT_ITEM_FOLDER_DELETE = 109;
60 const int BookmarkListForm::IDA_CONTEXT_ITEM_EDIT = 110;
61 const int BookmarkListForm::IDA_CONTEXT_ITEM_SHARE = 111;
62 const int BookmarkListForm::IDA_CONTEXT_ITEM_DELETE = 112;
63 const int BookmarkListForm::IDA_FORMAT_ICON = 113;
64 const int BookmarkListForm::IDA_FORMAT_URL = 114;
65
66 //const int BookmarkListForm::IDA_CONFIRMATION_NO = 1000;
67 //const int BookmarkListForm::IDA_CONFIRMATION_YES = 1001;
68
69 BookmarkListForm::BookmarkListForm(void)
70 {
71         __pItemContextFolder = null ;
72         __pItemContextSite = null ;
73         __pListview = null;
74         __pData = null;
75         __pSearchListView = null;
76         __pSearchBar = null;
77         __searchBookmark = false;
78         __parentID = DEFAULT_VALUE_PARENTID;
79         __noBookmarks = true;
80         __selectedindex = 0;
81         __searchText = L"";
82         __previousSceneId = L"";
83 }
84
85 BookmarkListForm::~BookmarkListForm(void)
86 {
87
88         if (__pData != null)
89         {
90                 __pData->RemoveAll(true);
91                 delete __pData;
92                 __pData = NULL;
93         }
94
95         if (__pItemContextFolder != null)
96         {
97                 delete __pItemContextFolder;
98                 __pItemContextFolder = null;
99         }
100
101         if (__pItemContextSite != null)
102         {
103                 delete __pItemContextSite;
104                 __pItemContextSite = null;
105         }
106 }
107
108 result
109 BookmarkListForm::OnTerminating(void)
110 {
111         result r = E_SUCCESS;
112
113         if (__pData != null)
114         {
115                 __pData->RemoveAll(true);
116                 delete __pData;
117                 __pData = NULL;
118         }
119
120         return r;
121 }
122
123
124 bool
125 BookmarkListForm::Initialize(void)
126 {
127         Construct(L"IDL_BOOKMARK_LIST");
128         return true;
129 }
130
131 result
132 BookmarkListForm::OnInitializing(void)
133 {
134         result r = E_SUCCESS;
135         HeaderItem bookmark;
136         HeaderItem history;
137         Bitmap *pBitmapNormal = null;
138         Bitmap *pBitmapPressed = null;
139         Header *pHeader = GetHeader();
140         Bitmap *pIconBitmap = null;
141         AppResource* pAppResource = UiApp::GetInstance()->GetAppResource();
142         int bookmarkCount = 0;
143         const int WIDTH_CONTEXT_MENU_TWO_BUTTON = 336;
144         const int WIDTH_CONTEXT_MENU_THREE_BUTTON = 160;
145         const int HEIGHT_CONTEXT_MENU_BUTTON = 72;
146
147
148         // Setup back event listener
149         SetFormBackEventListener(this);
150         AddOrientationEventListener(*this);
151
152         SceneManager::GetInstance()->AddSceneEventListener(IDSCN_BOOKMARK_VIEW, *this);
153         GetHeader()->AddActionEventListener(*this);
154         GetFooter()->AddActionEventListener(*this);
155
156         if ( pAppResource == NULL )
157         {
158                 return E_FAILURE;
159         }
160
161         __pItemContextFolder = new(std::nothrow) ListContextItem();
162         __pItemContextFolder->Construct();
163         __pItemContextFolder->AddElement(IDA_CONTEXT_ITEM_FOLDER_EDIT, CommonUtil::GetString(L"IDS_BR_SK_EDIT"));
164         pBitmapNormal = CommonUtil::GetNinepatchedBitmapN(L"00_button_sweep_delete.9.png", WIDTH_CONTEXT_MENU_TWO_BUTTON, HEIGHT_CONTEXT_MENU_BUTTON);
165         pBitmapPressed = CommonUtil::GetNinepatchedBitmapN(L"00_button_sweep_delete_press.9.png", WIDTH_CONTEXT_MENU_TWO_BUTTON, HEIGHT_CONTEXT_MENU_BUTTON);
166
167         if (pBitmapNormal != null && pBitmapPressed != null)
168         {
169                 __pItemContextFolder->AddElement(IDA_CONTEXT_ITEM_FOLDER_DELETE, CommonUtil::GetString(L"IDS_BR_SK_DELETE_ABB"),  *pBitmapNormal, *pBitmapPressed, pBitmapPressed);
170         }
171
172         if (pBitmapNormal != null)
173         {
174                 delete pBitmapNormal;
175         }
176
177         if (pBitmapPressed != null)
178         {
179                 delete pBitmapPressed;
180         }
181
182         __pItemContextSite = new(std::nothrow) ListContextItem();
183         __pItemContextSite->Construct();
184         __pItemContextSite->AddElement(IDA_CONTEXT_ITEM_EDIT, CommonUtil::GetString(L"IDS_BR_SK_EDIT"));
185         __pItemContextSite->AddElement(IDA_CONTEXT_ITEM_SHARE, CommonUtil::GetString(L"IDS_BR_OPT_SHARE"));
186         pBitmapNormal = CommonUtil::GetNinepatchedBitmapN(L"00_button_sweep_delete.9.png", WIDTH_CONTEXT_MENU_THREE_BUTTON, HEIGHT_CONTEXT_MENU_BUTTON);
187         pBitmapPressed = CommonUtil::GetNinepatchedBitmapN(L"00_button_sweep_delete_press.9.png", WIDTH_CONTEXT_MENU_THREE_BUTTON, HEIGHT_CONTEXT_MENU_BUTTON);
188
189         if (pBitmapNormal != null && pBitmapPressed != null)
190         {
191                 __pItemContextSite->AddElement(IDA_CONTEXT_ITEM_DELETE, CommonUtil::GetString(L"IDS_BR_SK_DELETE_ABB"), *pBitmapNormal, *pBitmapPressed, pBitmapPressed);
192         }
193
194         if (pBitmapNormal != null)
195         {
196                 delete pBitmapNormal;
197         }
198
199         if (pBitmapPressed != null)
200         {
201                 delete pBitmapPressed;
202         }
203         __pListview = static_cast< ListView* >(GetControl("IDC_LISTVIEW1"));
204
205         if (__pListview == null)
206         {
207                 return E_FAILURE;
208         }
209         __pSearchBar = static_cast< SearchBar* >(GetControl(L"IDC_SEARCHBAR1"));
210
211         if (__pSearchBar == null)
212         {
213                 return E_FAILURE;
214         }
215
216         if (__pListview != null)
217         {
218                 //              __pListview->SetBounds(__pListview->GetX(), __pListview->GetY(), GetClientAreaBounds().width, GetClientAreaBounds().height);
219                 __pListview->AddFastScrollListener(*this);
220                 __pListview->AddListViewItemEventListener(*this);
221                 __pListview->SetItemProvider(*this);
222                 __pListview->UpdateList();
223         }
224
225         __pPopUp = new(std::nothrow) SharePopup();
226
227         if (__pPopUp != null)
228         {
229                 __pPopUp->Initialize();
230                 AddControl(*__pPopUp);
231         }
232
233         __pSearchListView = new(std::nothrow) ListView();
234
235         if (__pSearchListView == null)
236         {
237                 return E_FAILURE;
238         }
239
240         r = __pSearchListView->Construct(Rectangle(0, 0, GetClientAreaBounds().width, GetClientAreaBounds().height -72 - 30), true, false);
241         TryCatch( !IsFailed(r),,"BookmarkListForm::OnSearchBarModeChanged Update list failed %s",GetErrorMessage(r));
242
243         __pSearchListView->SetItemProvider(*this);
244         __pSearchListView->SetTextOfEmptyList(CommonUtil::GetString(L"IDS_BR_BODY_NO_RESULTS_FOUND"));
245         __pSearchListView->SetTextColorOfEmptyList(Color::GetColor(COLOR_ID_BLACK));
246         __pSearchListView->SetShowState(false);
247         __pSearchListView->AddListViewItemEventListener(*this);
248
249         __pSearchBar->AddSearchBarEventListener(*this);
250         __pSearchBar->AddKeypadEventListener(*this);
251         __pSearchBar->SetContent(__pSearchListView);
252
253         BookmarkPresentationModel::GetInstance()->GetFolderBookmarkCount(__parentID, bookmarkCount);
254         if(bookmarkCount <= 0)
255         {
256                 __pSearchBar->SetShowState(false);
257                 //__pListview->SetBounds(__pListview->GetX(),__pSearchBar->GetY(),__pSearchBar->GetWidth(),GetClientAreaBounds().height - __pSearchBar->GetPosition().y);
258                 __pListview->SetBounds(__pListview->GetX(),__pSearchBar->GetY(),__pListview->GetWidth(),GetClientAreaBounds().height);
259         }
260         else
261         {
262                 __pSearchBar->SetShowState(true);
263         }
264
265
266         if (pHeader != null)
267         {
268                 pHeader->SetStyle(HEADER_STYLE_TAB);
269                 bookmark.Construct(IDA_TABBAR_ITEM_1);
270                 String strbookmark;
271                 pAppResource->GetString(L"IDS_BR_TAB_BOOKMARKS", strbookmark);
272                 bookmark.SetText(strbookmark);
273                 pIconBitmap = pAppResource->GetBitmapN(IDB_TAB_ICON_BOOKMARK);
274                 bookmark.SetIcon(HEADER_ITEM_STATUS_NORMAL, pIconBitmap);
275                 bookmark.SetIcon(HEADER_ITEM_STATUS_PRESSED, pIconBitmap);
276                 pHeader->AddItem(bookmark);
277
278                 if (pIconBitmap != NULL)
279                 {
280                         delete pIconBitmap;
281                 }
282
283                 history.Construct(IDA_TABBAR_ITEM_2);
284                 String strhistory;
285                 pAppResource->GetString(L"IDS_BR_TAB_HISTORY", strhistory);
286                 history.SetText(strhistory);
287                 pIconBitmap = pAppResource->GetBitmapN(IDB_TAB_ICON_HISTORY);
288                 history.SetIcon(HEADER_ITEM_STATUS_NORMAL, pIconBitmap);
289                 history.SetIcon(HEADER_ITEM_STATUS_PRESSED, pIconBitmap);
290                 pHeader->AddItem(history);
291                 pHeader->SetItemSelected(0);
292
293                 if (pIconBitmap != NULL)
294                 {
295                         delete pIconBitmap;
296                 }
297         }
298
299
300         CATCH:return r;
301 }
302
303 void
304 BookmarkListForm::OnActionPerformed(const Tizen::Ui::Control& source, int actionId)
305 {
306         AppLogDebug("BookmarkListForm::OnActionPerformed actionId = %d",actionId);
307         String bookmarkId;
308         int id = 0;
309         BookmarkData* pBookMark = null;
310
311         switch (actionId)
312         {
313         case IDA_FOOTER_ITEM1:
314         {
315                 GetHeader()->SetItemSelected(0);
316                 GetHeader()->Invalidate(true);
317                 SceneManager* pSceneManager = SceneManager::GetInstance();
318                 pBookMark = dynamic_cast< BookmarkData* >(__pData->GetAt(__selectedindex));
319
320                 if ( pBookMark == NULL )
321                 {
322                         return;
323                 }
324
325                 ArrayList* pArgList = null;
326                 pArgList = new(std::nothrow) ArrayList();
327                 if (pArgList != null)
328                 {
329                         pArgList->Construct();
330                         pArgList->Add(*new(std::nothrow) String(pBookMark->GetParentId()));
331                 }
332                 //pArgList->Add(*new(std::nothrow) String(pBookmark->);
333                 if (pSceneManager != null)
334                 {
335                         if(pSceneManager->GoForward(ForwardSceneTransition(IDSCN_EDIT_BOOKMARK_LIST),pArgList) != E_SUCCESS)
336                         {
337                                 AppLogDebug("BookmarkListForm::OnActionPerformed GoForward failed");
338                                 pArgList->RemoveAll(true);
339                                 delete pArgList;
340                                 pArgList = null;
341                                 return;
342                         }
343                 }
344
345                 if ( pArgList != NULL)
346                 {
347                         pArgList->RemoveAll(true);
348                         delete pArgList;
349                 }
350         }
351
352         break;
353         case IDA_TABBAR_ITEM_2:
354         {
355                 GetHeader()->SetItemSelected(0);
356                 GetHeader()->Invalidate(true);
357
358                 SceneManager* pSceneManager = SceneManager::GetInstance();
359
360                 if (pSceneManager != null)
361                 {
362                         if(__previousSceneId.CompareTo(IDSCN_HISTORY_LIST) != 0)
363                         {
364                                 if(pSceneManager->GoForward(ForwardSceneTransition(IDSCN_HISTORY_LIST, SCENE_TRANSITION_ANIMATION_TYPE_LEFT)) != E_SUCCESS)
365                                 {
366                                         AppLogDebug("BookmarkListForm::OnActionPerformed GoForward failed");
367                                         return;
368                                 }
369                         }
370                         else
371                         {
372
373                                 if(pSceneManager->GoBackward(BackwardSceneTransition())!= E_SUCCESS)
374                                 {
375                                         AppLogDebug("BookmarkListForm::OnActionPerformed GoBackward failed");
376                                         return;
377                                 }
378
379                         }
380                 }
381         }
382         break;
383         case IDA_FOOTER_ITEM2:
384         {
385                 SceneManager* pSceneManager = SceneManager::GetInstance();
386
387                 if (pSceneManager)
388                 {
389                         if(pSceneManager->GoForward(ForwardSceneTransition(IDSCN_CREATE_BOOKMARK_FOLDER)) != E_SUCCESS)
390                         {
391                                 AppLogDebug("BookmarkListForm::OnActionPerformed GoForward failed");
392                                 return;
393                         }
394                 }
395         }
396         break;
397         case IDA_FOOTER_ITEM_ADDBOOKMARK:
398         {
399                 SceneManager* pSceneManager = SceneManager::GetInstance();
400
401                 // send array list 0-for add, 1 for edit with parent ID
402                 ArrayList* pArgList = null;
403                 pArgList = new(std::nothrow) ArrayList();
404                 if (pArgList != null)
405                 {
406                         pArgList->Construct();
407                         pArgList->Add(*new(std::nothrow) String(L"0"));
408                         pArgList->Add(*new(std::nothrow) String(__parentID));
409                 }
410
411                 if (pSceneManager)
412                 {
413                         if(pSceneManager->GoForward(ForwardSceneTransition(IDSCN_ADD_BOOKMARK),pArgList) != E_SUCCESS)
414                         {
415                                 AppLogDebug("BookmarkListForm::OnActionPerformed GoForward failed");
416                                 pArgList->RemoveAll(true);
417                                 delete pArgList;
418                                 return;
419                         }
420                 }
421
422                 if (pArgList != null)
423                 {
424                         pArgList->RemoveAll(true);
425                         delete pArgList;
426                 }
427
428         }
429         break;
430         case IDA_BUTTON_NO:
431                 __pConfirmationPopup->SetShowState(false);
432                 __pConfirmationPopup->Show();
433                 break;
434         case IDA_BUTTON_YES:
435                 pBookMark = dynamic_cast< BookmarkData* >(__pData->GetAt(__selectedindex));
436                 if ( pBookMark== null)
437                         return;
438                 bookmarkId=pBookMark->GetBookmarkId();
439                 Integer::Parse(bookmarkId,id);
440                 if (pBookMark->GetBookmarkType() == BOOKMARK_TYPE_FOLDER)
441                         BookmarkPresentationModel::GetInstance()->DeleteFolder(id);
442                 else
443                         BookmarkPresentationModel::GetInstance()->DeleteBookmark(id);
444                 if (__pListview == null)
445                 {
446                         return;
447                 }
448                 AppLogDebug("__pListview GetBounds %d,%d,%d,%d",__pListview->GetBounds().x,__pListview->GetBounds().y,__pListview->GetBounds().width,__pListview->GetBounds().height);
449                 __pSearchListView->UpdateList();
450                 __pListview->UpdateList();
451
452                 if (__pListview->GetItemCount() == 0)
453                 {
454                         GetFooter()->SetItemEnabled(1,false);
455                         __pSearchBar->SetShowState(false);
456                         __pSearchBar->Invalidate(true);
457                 }
458
459                 if (__noBookmarks == true)
460                 {
461                         Bitmap* emptyListBmp = AppResource::GetInstance()->GetBitmapN(IDB_NO_CONTENT_BOOKMARK);
462                         GetFooter()->SetItemEnabled(1,false);
463                         __pSearchBar->SetShowState(false);
464                         __pSearchBar->Invalidate(true);
465                         //                      __pListview->SetBounds(__pSearchBar->GetPosition().x,__pSearchBar->GetPosition().y,__pSearchBar->GetWidth() ,GetClientAreaBounds().height);
466                         __pListview->SetBounds(__pListview->GetX(),__pSearchBar->GetPosition().y,__pSearchBar->GetWidth() ,GetClientAreaBounds().height);
467                         __pListview->SetBitmapOfEmptyList(emptyListBmp);
468                         if (emptyListBmp)
469                         {
470                                 delete emptyListBmp;
471                                 emptyListBmp = null;
472                         }
473                         __pListview->UpdateList();
474
475                 }
476                 else
477                 {
478                         GetFooter()->SetItemEnabled(1,true);
479
480                         if (__parentID.CompareTo(L"-1") == 0)
481                         {
482                                 __pSearchBar->SetShowState(true);
483                                 __pSearchBar->Invalidate(true);
484                         }
485                 }
486
487                 GetFooter()->Invalidate(true);
488                 __pConfirmationPopup->SetShowState(false);
489                 __pConfirmationPopup->Show();
490                 __selectedindex = 0;
491
492                 break;
493         default:
494                 break;
495         }
496 }
497
498 void
499 BookmarkListForm::OnFormBackRequested(Tizen::Ui::Controls::Form& source)
500 {
501         AppLogDebug("BrowserApplicationForm::OnFormBackRequested");
502
503         UiApp* pApp = UiApp::GetInstance();
504         if      (pApp == null)
505         {
506                 return;
507         }
508
509         if (__parentID != DEFAULT_VALUE_PARENTID)
510         {
511                 __parentID = DEFAULT_VALUE_PARENTID;
512                 __pSearchBar->SetShowState(true);
513                 __pListview->SetBounds(__pListview->GetX() ,__pSearchBar->GetPosition().y + __pSearchBar->GetHeight(),__pListview->GetWidth(),GetClientAreaBounds().height - (__pSearchBar->GetY() + __pSearchBar->GetHeight()));
514                 __pListview->UpdateList();
515                 __pFooter = GetFooter();
516                 GetFooter()->SetItemEnabled(2,true);
517                 GetFooter()->Invalidate(true);
518         }
519         else
520         {
521                 SceneManager* pSceneManager = SceneManager::GetInstance();
522                 if (pSceneManager != null)
523                 {
524                         if(__previousSceneId.CompareTo(IDSCN_HISTORY_LIST) != 0)
525                         {
526                                 pSceneManager->GoBackward(BackwardSceneTransition());
527                         }
528                         else
529                         {
530                                 pSceneManager->GoBackward(BackwardSceneTransition(SCENE_TRANSITION_ANIMATION_TYPE_LEFT));
531                         }
532                 }
533         }
534
535         if (__noBookmarks == true)
536         {
537                 GetFooter()->SetItemEnabled(1,false);
538         }
539         else
540         {
541                 GetFooter()->SetItemEnabled(1,true);
542         }
543 }
544
545 Tizen::Ui::Controls::ListItemBase*
546 BookmarkListForm::CreateItem(int index, int itemWidth)
547 {
548
549         AppLog("BookmarkListForm::CreateItem index %d , itemWidth %d",index, itemWidth);
550         AppLog("listviewwidth %d",__pListview->GetWidth());
551         result r = E_FAILURE;
552         ListAnnexStyle style = LIST_ANNEX_STYLE_NORMAL;
553         if(__pData == null)
554         {
555                 return null;
556         }
557         CustomItem* pItem = new(std::nothrow) CustomItem();
558
559         BookmarkData* pBookMark = dynamic_cast< BookmarkData* >(__pData->GetAt(index));
560         Bitmap* pBitmap = null;
561         Dimension dim;
562
563         Image* pImage = null;
564         pImage = new Image();
565         pImage->Construct();
566
567         const int x_Margin_Icon = 16;                 // local as there used only in this function
568         const int y_Margin_Icon = 28;
569         const int height_Icon = 72;
570         const int width_Icon = 72 ;
571         const int x_Margin_Title = 104 ;
572         const int y_Margin_Title = 10;
573         const int width_Title = GetClientAreaBounds().width - 108 - 52 - 30;
574         const int x_Margin_Url = 104 ;
575         const int y_Margin_Url = 70 ;
576         const int width_Url = GetClientAreaBounds().width - 108 - 52 ;
577         const int height_Url = 48;
578         const int itemHeight = 128;
579         const int textSize = 32;
580         String bitmapId;
581
582         if( pBookMark == NULL )
583         {
584                 delete pItem;
585                 pItem = null;
586                 return NULL;
587         }
588         if ( pBookMark->GetBookmarkType() == BOOKMARK_TYPE_FOLDER )
589         {
590                 r = pItem->Construct(Tizen::Graphics::Dimension(itemWidth,112), LIST_ANNEX_STYLE_DETAILED);
591                 TryCatch(!IsFailed(r),,"BookmarkListForm::CreateItem Construct failed %s",GetErrorMessage(r));
592
593                 pBitmap = AppResource::GetInstance()->GetBitmapN(IDB_ICON_FOLDER_OPEN);
594                 if (pBitmap != null)
595                 {
596                         pItem->AddElement(Rectangle(x_Margin_Icon, 20, width_Icon, height_Icon), IDA_FORMAT_ICON, *pBitmap, null);
597                         delete pBitmap;
598                 }
599
600                 pItem->AddElement(Rectangle(x_Margin_Title, 26, width_Title, 60), IDA_FORMAT_FOLDER, pBookMark->GetBookmarkTitle(), true);
601
602                 if ( __pItemContextFolder != NULL)
603                 {
604                         pItem->SetContextItem(__pItemContextFolder);
605                 }
606         }
607         else
608         {
609                 r = pItem->Construct(Tizen::Graphics::Dimension(itemWidth, itemHeight), style);
610                 TryCatch( !IsFailed(r),,"BookmarkListForm::CreateItem Construct failed %s",GetErrorMessage(r));
611
612                 AppLogDebug("BookmarkListForm::faviconid %ls",pBookMark->GetFaviconId().GetPointer());
613                 bitmapId = pBookMark->GetFaviconId();
614
615                 dim = Dimension(pBookMark->GetFavIconWidth(), pBookMark->GetFavIconHeight());
616
617                 AppLog("BookmarkListForm::CreateItem check 0");
618
619                 // get fav icon bitmap
620                 ByteBuffer* pFavIconBuffer = null;
621                 pFavIconBuffer = pBookMark->GetFavIconBuffer();
622
623                 AppLog("BookmarkListForm::CreateItem check 0");
624
625                 if (pFavIconBuffer != null)
626                 {
627                         AppLog("BookmarkListForm::CreateItem pFavIconBuffer is not null");
628                 }
629                 else
630                 {
631                         AppLog("BookmarkListForm::CreateItem pFavIconBuffer is null");
632                 }
633
634                 pBitmap = pImage->DecodeN(*pFavIconBuffer, IMG_FORMAT_PNG, BITMAP_PIXEL_FORMAT_ARGB8888);
635
636                 AppLog("BookmarkListForm::CreateItem check 1");
637
638                 if (pBitmap != null)
639                 {
640                         AppLog("rahul bitmap is not null");
641                         int width = pBitmap->GetWidth();
642                         int height = pBitmap->GetHeight();
643                         AppLog("rahul bitmap width is %d", width);
644                         AppLog("rahul bitmap height is %d", height);
645                         AppLog("rahul favicon width is %d", pBookMark->GetFavIconWidth());
646                         AppLog("rahul favicon height is %d", pBookMark->GetFavIconHeight());
647                 }
648                 else
649                 {
650                         AppLog("rahul bitmap is null");
651                 }
652
653                 if (pBitmap == null)
654                 {
655                         AppLogDebug("BookmarkListForm::CreateItem bitmap is null");
656                         pBitmap = FaviconManager::GetInstance()->GetDefaultFaviconN();
657                 }
658                 pItem->AddElement(Rectangle(x_Margin_Icon, y_Margin_Icon, width_Icon, height_Icon), IDA_FORMAT_ICON, *pBitmap, null);
659                 pItem->AddElement(Rectangle(x_Margin_Title, 0, width_Title, itemHeight - height_Url), IDA_FORMAT_SITE, pBookMark->GetBookmarkTitle(),44,CUSTOM_COLOR_TRANSPARENT,CUSTOM_COLOR_TRANSPARENT,CUSTOM_COLOR_TRANSPARENT,true);
660                 if(__pSearchBar->GetMode() == SEARCH_BAR_MODE_INPUT)
661                         pItem->AddElement(Rectangle(x_Margin_Url, y_Margin_Url, width_Url, height_Url), IDA_FORMAT_URL, pBookMark->GetUrl(),textSize,CUSTOM_COLOR_TRANSPARENT,CUSTOM_COLOR_TRANSPARENT,CUSTOM_COLOR_TRANSPARENT,true);
662                 else
663                         pItem->AddElement(Rectangle(x_Margin_Url, y_Margin_Url, width_Url, height_Url), IDA_FORMAT_URL, pBookMark->GetUrl(),textSize,CUSTOM_COLOR_GREY,CUSTOM_COLOR_GREY,CUSTOM_COLOR_GREY,true);
664
665                 if (pBitmap != null)
666                 {
667                         delete pBitmap;
668                 }
669                 if ( __pItemContextSite != NULL)
670                 {
671                         pItem->SetContextItem(__pItemContextSite);
672                 }
673         }
674
675         return pItem;
676
677         CATCH:
678         delete pItem;
679         pItem = null;
680         return null;
681
682 }
683
684 bool
685 BookmarkListForm::DeleteItem(int index, Tizen::Ui::Controls::ListItemBase* pItem, int itemWidth)
686 {
687         delete pItem;
688         pItem = null;
689         return true;
690 }
691
692 int
693 BookmarkListForm::GetItemCount(void)
694 {
695         int count = 0;
696
697         if (__pData != NULL )
698         {
699                 __pData->RemoveAll(true);
700                 delete __pData;
701                 __pData = null;
702         }
703         __pData = new(std::nothrow) Collection::ArrayList();
704         __pData->Construct();
705
706         if (__searchBookmark == false)
707         {
708                 BookmarkPresentationModel::GetInstance()->GetFolderBookmarkCount(__parentID, count);
709                 BookmarkPresentationModel::GetInstance()->GetFoldersBookmarks(__parentID, 0, count, *__pData);
710         }
711         else
712         {
713                 BookmarkPresentationModel::GetInstance()->GetSearchFolderBookmarkCount(count,__searchText);
714                 BookmarkPresentationModel::GetInstance()->GetSearchFoldersBookmarks(0, count, *__pData, __searchText);
715         }
716
717         AppLogDebug("Count = %d parentId = %ls", count, __parentID.GetPointer());
718
719         if (count <= 0)
720         {
721                 __noBookmarks = true;
722                 GetFooter()->SetItemEnabled(1,false);
723         }
724         else
725         {
726                 __noBookmarks = false;
727                 GetFooter()->SetItemEnabled(1,true);
728         }
729
730         AppLogDebug("Result: %s", GetErrorMessage(GetLastResult()));
731         GetFooter()->Invalidate(true);
732         if (__pData != null && __pData->GetCount() >= 1)
733         {
734                 //              __pSearchBar->SetMode(SEARCH_BAR_MODE_NORMAL);
735                 __pSearchBar->SetShowState(true);
736                 __pSearchBar->Invalidate(true);
737         }
738         else if (__searchBookmark == false)
739         {
740                 __pSearchBar->SetShowState(false);
741                 __pSearchBar->Invalidate(true);
742         }
743
744         if (__parentID.CompareTo(L"-1") != 0)
745         {
746                 __pSearchBar->SetShowState(false);
747                 __pSearchBar->Invalidate(true);
748         }
749         if (__noBookmarks == true)
750         {
751                 __pListview->SetBounds(__pListview->GetX(),__pSearchBar->GetPosition().y,__pSearchBar->GetWidth() ,GetClientAreaBounds().height);
752                 Bitmap* pBitmap = AppResource::GetInstance()->GetBitmapN(IDB_NO_CONTENT_BOOKMARK);
753
754                 if ( pBitmap != NULL)
755                 {
756                         __pListview->SetBitmapOfEmptyList(pBitmap);
757                         delete pBitmap;
758                 }
759         }
760         else
761         {
762                 if (__parentID.CompareTo(L"-1") == 0)
763                 {
764                         __pListview->SetBounds(__pListview->GetX(),__pSearchBar->GetHeight(),GetClientAreaBounds().width ,GetClientAreaBounds().height - __pSearchBar->GetY() - __pSearchBar->GetHeight());
765                 }
766                 else
767                 {
768                         __pListview->SetBounds(__pListview->GetX(),__pSearchBar->GetY(),__pSearchBar->GetWidth() ,GetClientAreaBounds().height);
769
770                 }
771
772         }
773         __pListview->Invalidate(true);
774         return count;
775
776 }
777
778 void
779 BookmarkListForm::OnListViewContextItemStateChanged(Tizen::Ui::Controls::ListView& listView, int index, int elementId, Tizen::Ui::Controls::ListContextItemStatus status)
780 {
781         AppLogDebug("BookmarkListForm::OnListViewContextItemStateChanged int index %d, int elementId %d, Tizen::Ui::Controls::ListContextItemStatus status %d",index,elementId,status);
782
783         String deleteText = CommonUtil::GetString(L"IDS_BR_SK_DELETE_ABB");
784         deleteText.Append(L"? ");
785         int timeOut = 25000;
786         result r = E_SUCCESS;
787
788         switch(elementId)
789         {
790         case IDA_CONTEXT_ITEM_FOLDER_EDIT:
791         {
792                 ArrayList* pArgList = null;
793                 String* pEdit = null;
794
795                 SceneManager* pSceneManager = SceneManager::GetInstance();
796                 BookmarkData* pBookMark = dynamic_cast< BookmarkData* >(__pData->GetAt(index));
797                 if (pBookMark != null && pBookMark->GetBookmarkType() == BOOKMARK_TYPE_FOLDER)
798                 {
799                         pArgList = new(std::nothrow) ArrayList();
800                         if (pArgList != null)
801                         {
802                                 pEdit= new(std::nothrow) String(CommonUtil::GetString(L"IDS_BR_HEADER_EDIT_FOLDER"));
803                                 pArgList->Construct();
804                                 pArgList->Add(*new(std::nothrow) BookmarkData(*pBookMark));
805                                 pArgList->Add(*pEdit);
806                                 if (    pSceneManager != null)
807                                 {
808                                         result r;
809                                         r = pSceneManager->GoForward(ForwardSceneTransition(IDSCN_CREATE_BOOKMARK_FOLDER), pArgList);
810                                 }
811
812                                 if (pArgList != null)
813                                 {
814                                         delete pArgList;
815                                         pArgList = null;
816                                 }
817                                 if(IsFailed(r))
818                                 {
819                                         AppLogDebug("BookmarkListForm::OnListViewContextItemStateChanged GoForward failed %s",GetErrorMessage(r));
820                                         return;
821                                 }
822                         }
823                 }
824
825         }
826         break;
827
828         case IDA_CONTEXT_ITEM_FOLDER_DELETE:
829         case IDA_CONTEXT_ITEM_DELETE:
830         {
831                 __pConfirmationPopup = new(std::nothrow) ConfirmationPopup();
832                 __pConfirmationPopup->Initialize();
833                 __pConfirmationPopup->RemoveActionListener(*this);
834                 __pConfirmationPopup->AddActionListener(*this);
835                 __pConfirmationPopup->setMessage(deleteText);
836                 __pConfirmationPopup->Show();
837                 __selectedindex = index;
838         }
839         break;
840
841         case IDA_CONTEXT_ITEM_EDIT:
842         {
843                 ArrayList* pArgList = null;
844                 SceneManager* pSceneManager = SceneManager::GetInstance();
845                 BookmarkData* pBookMark = dynamic_cast< BookmarkData* >(__pData->GetAt(index));
846                 if (pBookMark!= null && pBookMark->GetBookmarkType() == BOOKMARK_TYPE_URL)
847                 {
848                         AppLogDebug("ID_CONTEXT_ITEM_SITE_1 BOOKMARK_TYPE_URL");
849                         pArgList = new(std::nothrow) ArrayList();
850                         if (pArgList != null)
851                         {
852                                 pArgList->Construct();
853                                 pArgList->Add(*new(std::nothrow) String(L"1"));
854                                 pArgList->Add(*new(std::nothrow) BookmarkData(*pBookMark));
855                                 if (    pSceneManager != null)
856                                 {
857                                         result r;
858                                         r = pSceneManager->GoForward(ForwardSceneTransition(IDSCN_ADD_BOOKMARK), pArgList);
859                                         if (pArgList != null)
860                                         {
861                                                 delete pArgList;
862                                                 pArgList = null;
863                                         }
864                                         if(IsFailed(r))
865                                         {
866                                                 AppLogDebug("BookmarkListForm::OnListViewContextItemStateChanged GoForward failed %s",GetErrorMessage(r));
867                                                 return;
868                                         }
869                                 }
870                         }
871                 }
872         }
873         break;
874         case IDA_CONTEXT_ITEM_SHARE:
875         {
876                 AppLogDebug("OnListViewContextItemStateChanged Share");
877
878                 BookmarkData* pBookmark = dynamic_cast<BookmarkData*>(__pData->GetAt(index));
879                 if (pBookmark != null)
880                 {
881                         ShareInfo* pShareInfo = new(std::nothrow) ShareInfo();
882                         pShareInfo->SetPageTitle(pBookmark->GetBookmarkTitle());
883                         pShareInfo->SetPageUrl(pBookmark->GetUrl());
884                         pShareInfo->SetImageAttached(false);
885                         __pPopUp->RemoveAllShareInfo();
886                         __pPopUp->AddShareInfo(pShareInfo);
887                 }
888
889                 if (__pPopUp != null)
890                 {
891                         __pPopUp->SetShowState(true);
892                         __pPopUp->Show();
893                 }
894         }
895         break;
896         default:
897                 break;
898         }
899
900 }
901
902 void
903 BookmarkListForm::OnListViewItemLongPressed(Tizen::Ui::Controls::ListView& listView, int index, int elementId, bool& invokeListViewItemCallback)
904 {
905
906 }
907
908 void
909 BookmarkListForm::OnListViewItemStateChanged(Tizen::Ui::Controls::ListView& listView, int index, int elementId, Tizen::Ui::Controls::ListItemStatus status)
910 {
911         AppLogDebug("BookmarkListForm::OnListViewItemStateChanged");
912
913         result r = E_FAILURE;
914         ArrayList *pArgList = null;
915         SceneManager* pSceneManager = SceneManager::GetInstance();
916         BookmarkData* pBookmark = dynamic_cast< BookmarkData* >(__pData->GetAt(index));
917
918         if ( pBookmark == NULL )
919         {
920                 return;
921         }
922
923         switch (pBookmark->GetBookmarkType())
924         {
925         case BOOKMARK_TYPE_FOLDER:
926
927                 __parentID = pBookmark->GetBookmarkId();
928                 AppLogDebug("BOOKMARK_TYPE_FOLDER parent ID is %ls",__parentID.GetPointer());
929
930                 listView.UpdateList();
931                 if (listView.GetItemCount() == 0)
932                 {
933                         GetFooter()->SetItemEnabled(1,false);
934                 }
935                 else
936                 {
937                         GetFooter()->SetItemEnabled(1,true);
938                 }
939                 GetFooter()->SetItemEnabled(2,false);
940                 GetFooter()->Invalidate(true);
941                 __pSearchBar->HideKeypad();
942                 __pSearchBar->SetMode(SEARCH_BAR_MODE_NORMAL);
943                 __pSearchBar->SetShowState(false);
944                 __pSearchBar->Invalidate(true);
945                 __pListview->SetBounds(__pListview->GetX(),__pSearchBar->GetY(),__pListview->GetWidth() ,GetClientAreaBounds().height);
946                 break;
947
948         case BOOKMARK_TYPE_URL:
949
950                 pArgList = new(std::nothrow) ArrayList();
951                 if (pArgList != null)
952                 {
953                         r = pArgList->Construct();
954                         TryCatch(!IsFailed(r), L"BookmarkListForm::OnListViewItemStateChanged pArgList Construct failed %s", GetErrorMessage(r));
955
956                         AppLogDebug("bookmark url = %ls",pBookmark->GetUrl().GetPointer());
957                         r = pArgList->Add(*MultipleWindowPresentationModel::GetInstance()->GetActiveWindowInfo());
958                         pArgList->Add(*new(std::nothrow) String(pBookmark->GetUrl()));
959
960                         if (pSceneManager != null)
961                         {
962                                 AppLogDebug("pSceneManager exists");
963                                 String prevSceneId;
964                                 MultipleWindowPresentationModel::GetInstance()->GetCurrentSceneId(prevSceneId);
965                                 r = pSceneManager->GoBackward(BackwardSceneTransition(prevSceneId), pArgList);
966                                 TryCatch(!IsFailed(r), L"BookmarkListForm::OnListViewItemStateChanged pArgList Construct failed %s", GetErrorMessage(r));
967                         }
968                         delete pArgList;
969                 }
970                 break;
971
972         default:
973                 break;
974         }
975
976         return;
977         CATCH:
978         if(pArgList)
979         {
980                 pArgList->RemoveAll(true);
981                 delete pArgList;
982         }
983
984 }
985
986 void
987 BookmarkListForm::OnListViewItemSwept(Tizen::Ui::Controls::ListView& listView, int index, Tizen::Ui::Controls::SweepDirection direction)
988 {
989
990
991 }
992
993 void
994 BookmarkListForm::OnFastScrollIndexSelected(Tizen::Ui::Control& source, Tizen::Base::String& index)
995 {
996
997 }
998
999 void
1000 BookmarkListForm::OnSearchBarModeChanged(Tizen::Ui::Controls::SearchBar& source, Tizen::Ui::Controls::SearchBarMode mode)
1001 {
1002         result r = E_FAILURE;
1003
1004         if (mode == SEARCH_BAR_MODE_NORMAL)
1005         {
1006                 __pSearchListView->SetShowState(false);
1007                 __pSearchListView->UpdateList();
1008                 __pListview->SetShowState(true);
1009                 Invalidate(true);
1010                 __searchBookmark = false;
1011                 r = __pListview->UpdateList();
1012                 __pSearchListView->SetBounds(0,0,GetClientAreaBounds().width,GetClientAreaBounds().height -__pSearchBar->GetHeight());
1013                 __pSearchBar->SetContentAreaSize(Dimension(__pSearchListView->GetWidth(), __pSearchListView->GetHeight()));
1014                 TryCatch( !IsFailed(r),,"BookmarkListForm::OnSearchBarModeChanged Update list failed %s",GetErrorMessage(r));
1015                 CATCH:return;
1016         }
1017         else
1018         {
1019                 __pSearchListView->SetShowState(true);
1020                 __pSearchListView->SetEnabled(false);
1021                 __pListview->SetShowState(false);
1022
1023                 if(__pSearchBar)
1024                 {
1025                         __pSearchBar->SetContentAreaSize(Dimension(__pSearchListView->GetWidth(), __pSearchListView->GetHeight()));
1026                         __pSearchBar->SetText(L"");
1027                 }
1028                 AppLog("OnSearchBarModeChanged SetContentAreaSize heihgt %d",__pSearchListView->GetHeight());
1029                  __pListview->UpdateList();
1030                 __pSearchListView->UpdateList();
1031         }
1032 }
1033
1034 void
1035 BookmarkListForm::OnKeypadWillOpen(Tizen::Ui::Control& source)
1036 {
1037         GetFooter()->SetShowState(false);
1038         __pSearchListView->SetBounds(__pSearchListView->GetX(), __pSearchListView->GetY(), __pSearchListView->GetWidth(), __pSearchListView->GetHeight() + GetFooter()->GetHeight());
1039         __pSearchListView->SetEnabled(false);
1040         __pSearchBar->SetContentAreaSize(Dimension(__pSearchListView->GetWidth(), __pSearchListView->GetHeight()));
1041         Invalidate(true);
1042         __pSearchListView->SetBounds(__pSearchListView->GetX(), __pSearchListView->GetY(), __pSearchListView->GetWidth(), __pSearchListView->GetHeight() - GetFooter()->GetHeight());
1043 }
1044
1045 void
1046 BookmarkListForm::OnKeypadOpened(Tizen::Ui::Control& source)
1047 {
1048
1049         __pSearchListView->UpdateList();
1050 }
1051
1052 void
1053 BookmarkListForm::OnKeypadClosed(Tizen::Ui::Control& source)
1054 {
1055
1056         GetFooter()->SetShowState(true);
1057         GetFooter()->Invalidate(true);
1058         __pSearchListView->SetBounds(__pSearchListView->GetX(), __pSearchListView->GetY(), __pSearchListView->GetWidth(), GetClientAreaBounds().height - __pSearchBar->GetHeight());
1059         __pListview->SetBounds(__pSearchListView->GetX(), __pSearchBar->GetY() + __pSearchBar->GetHeight(), __pSearchListView->GetWidth(), GetClientAreaBounds().height - __pSearchBar->GetHeight());
1060         __pSearchListView->Invalidate(false);
1061         __pSearchListView->SetEnabled(true);
1062         __pSearchBar->SetContentAreaSize(Dimension(__pSearchListView->GetWidth(), GetClientAreaBounds().height - __pSearchBar->GetHeight()));
1063         Invalidate(true);
1064 }
1065
1066 void
1067 BookmarkListForm::OnKeypadActionPerformed(Tizen::Ui::Control& source, Tizen::Ui::KeypadAction keypadAction)
1068 {
1069         AppLog("BookmarkListForm::OnKeypadActionPerformed %d",keypadAction);
1070
1071         if (__pSearchBar != null)
1072         {
1073                 __pSearchBar->HideKeypad();
1074         }
1075
1076         if ( __pSearchBar != null && keypadAction == KEYPAD_ACTION_SEARCH)
1077         {
1078                 if (__pSearchBar->GetText().GetLength() == 0)
1079                 {
1080                         return;
1081                 }
1082
1083                 __searchText = __pSearchBar->GetText();
1084                 __searchBookmark = true;
1085                 __pListview->SetShowState(false);
1086                 __pSearchListView->SetEnabled(true);
1087                 __pSearchListView->SetShowState(true);
1088                 __pSearchListView->SetBounds(0,0,GetClientAreaBounds().width,GetClientAreaBounds().height -__pSearchBar->GetHeight());
1089                 __pSearchBar->SetContentAreaSize(Dimension(__pSearchListView->GetWidth(), __pSearchListView->GetHeight()));
1090                 __pSearchListView->UpdateList();
1091
1092         }
1093         Invalidate(true);
1094 }
1095
1096 void
1097 BookmarkListForm::OnSceneActivatedN(const SceneId& previousSceneId, const SceneId& currentSceneId, IList* pArgs)
1098 {
1099         AppLogDebug("BookmarkListForm::OnSceneActivatedN called");
1100         ArrayListT<String> * pList = dynamic_cast<ArrayListT<String>* >(SceneManager::GetInstance()->GetSceneHistoryN());
1101
1102         pList->GetAt(pList->GetCount()-1,__previousSceneId);
1103
1104         __searchBookmark = false;
1105         GetFooter()->SetShowState(true);
1106         GetFooter()->Invalidate(true);
1107         GetHeader()->SetItemSelected(0);
1108         GetHeader()->Invalidate(true);
1109
1110         /*      if (previousSceneId != IDSCN_HISTORY_LIST && previousSceneId != IDSCN_CREATE_BOOKMARK_FOLDER && previousSceneId != IDSCN_EDIT_BOOKMARK_LIST)
1111         {
1112                 __previousSceneId = previousSceneId;
1113         }*/
1114
1115         if (__pListview != null)
1116         {
1117                 __pListview->UpdateList();
1118         }
1119
1120         return;
1121 }
1122
1123 void
1124 BookmarkListForm::OnOrientationChanged (const Tizen::Ui::Control &source, Tizen::Ui::OrientationStatus orientationStatus)
1125 {
1126         AppLog("BookmarkListForm::OnOrientationChanged start");
1127
1128         if (__pListview)
1129         {
1130                 if(__pSearchBar->GetShowState())
1131                 {
1132                         __pListview->SetBounds(__pListview->GetX(),__pSearchBar->GetHeight(),GetClientAreaBounds().width ,GetClientAreaBounds().height - __pSearchBar->GetY() - __pSearchBar->GetHeight());
1133                 }
1134                 else
1135                 {
1136                         __pListview->SetBounds(__pListview->GetX(),0,GetClientAreaBounds().width ,GetClientAreaBounds().height);
1137                 }
1138                 __pListview->UpdateList();
1139         }
1140
1141         if (__pSearchListView && __pListview)
1142         {
1143                 AppLog("__pListview->GetBounds() %d, %d, %d, %d",__pListview->GetBounds().x,__pListview->GetBounds().y,__pListview->GetBounds().width,__pListview->GetBounds().height);
1144                 __pSearchListView->SetBounds(0,0,GetClientAreaBounds().width,GetClientAreaBounds().height -__pSearchBar->GetHeight());
1145
1146                 __pSearchListView->UpdateList();
1147         }
1148
1149         if (__pSearchListView && __pData != null )
1150         {
1151                 if (__parentID != DEFAULT_VALUE_PARENTID)
1152                 {
1153                         AppLog("BookmarkListForm::OnOrientationChanged parent id true");
1154                         __pSearchBar->SetShowState(false);
1155                         __pSearchBar->Invalidate(true);
1156                 }
1157
1158                 __pSearchBar->SetContentAreaSize(Dimension(__pSearchListView->GetWidth(), GetClientAreaBounds().height));
1159         }
1160
1161
1162         Invalidate(true);
1163 }
1164
1165 void
1166 BookmarkListForm::OnSceneDeactivated(const SceneId& currentSceneId, const SceneId& nextSceneId)
1167 {
1168         if (__pData != null)
1169         {
1170                 __pData->RemoveAll(true);
1171                 delete __pData;
1172                 __pData = null;
1173         }
1174         __pSearchBar->SetMode(SEARCH_BAR_MODE_NORMAL);
1175         return;
1176 }
1177