author | Sebastian Brannstrom <sebastianb@symbian.org> |
Sat, 30 Oct 2010 14:28:25 +0100 | |
branch | RCL_3 |
changeset 312 | 2faae209e72b |
parent 309 | d9f6395a50ea |
child 313 | 0f30a75610de |
permissions | -rw-r--r-- |
2 | 1 |
/* |
2 |
* Copyright (c) 2007-2010 Sebastian Brannstrom, Lars Persson, EmbedDev AB |
|
3 |
* |
|
4 |
* All rights reserved. |
|
5 |
* This component and the accompanying materials are made available |
|
6 |
* under the terms of the License "Eclipse Public License v1.0" |
|
7 |
* which accompanies this distribution, and is available |
|
8 |
* at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
9 |
* |
|
10 |
* Initial Contributors: |
|
11 |
* EmbedDev AB - initial contribution. |
|
12 |
* |
|
13 |
* Contributors: |
|
14 |
* |
|
15 |
* Description: |
|
16 |
* |
|
17 |
*/ |
|
18 |
||
19 |
#include "PodcastSearchView.h" |
|
20 |
#include "PodcastAppUi.h" |
|
21 |
#include "FeedEngine.h" |
|
22 |
#include "ShowEngine.h" |
|
23 |
#include "SettingsEngine.h" |
|
24 |
#include "PodcastApp.h" |
|
25 |
#include "PodcastUtils.h" |
|
26 |
#include <caknfileselectiondialog.h> |
|
27 |
#include <podcast.rsg> |
|
28 |
#include <podcast.mbg> |
|
309
d9f6395a50ea
Search view title moved from navi pane to title bar, for consistencey
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
243
diff
changeset
|
29 |
#include <akntitle.h> |
2 | 30 |
#include <gulicon.h> |
31 |
#include <eikenv.h> |
|
32 |
#include <e32const.h> |
|
33 |
#include <eikdialg.h> |
|
34 |
#include <aknquerydialog.h> |
|
35 |
#include <caknmemoryselectiondialog.h> |
|
36 |
#include <caknfilenamepromptdialog.h> |
|
37 |
#include <BAUTILS.H> |
|
38 |
#include <pathinfo.h> |
|
39 |
#include <f32file.h> |
|
40 |
#include <akntoolbarextension.h> |
|
41 |
||
42 |
const TInt KMaxFeedNameLength = 100; |
|
43 |
#define KMaxMessageLength 200 |
|
44 |
#define KMaxTitleLength 100 |
|
45 |
_LIT(KSearchResultFormat, "%d\t%S\t%S"); |
|
46 |
||
47 |
CPodcastSearchView* CPodcastSearchView::NewL(CPodcastModel& aPodcastModel) |
|
48 |
{ |
|
49 |
CPodcastSearchView* self = CPodcastSearchView::NewLC(aPodcastModel); |
|
50 |
CleanupStack::Pop( self ); |
|
51 |
return self; |
|
52 |
} |
|
53 |
||
54 |
CPodcastSearchView* CPodcastSearchView::NewLC(CPodcastModel& aPodcastModel) |
|
55 |
{ |
|
56 |
CPodcastSearchView* self = new ( ELeave ) CPodcastSearchView(aPodcastModel); |
|
57 |
CleanupStack::PushL( self ); |
|
58 |
self->ConstructL(); |
|
59 |
return self; |
|
60 |
} |
|
61 |
||
62 |
CPodcastSearchView::CPodcastSearchView(CPodcastModel& aPodcastModel):iPodcastModel(aPodcastModel) |
|
63 |
{ |
|
64 |
} |
|
65 |
||
66 |
void CPodcastSearchView::ConstructL() |
|
67 |
{ |
|
68 |
BaseConstructL(R_PODCAST_SEARCHVIEW); |
|
69 |
CPodcastListView::ConstructL(); |
|
70 |
iPodcastModel.FeedEngine().AddObserver(this); |
|
71 |
CArrayPtr< CGulIcon >* icons = new(ELeave) CArrayPtrFlat< CGulIcon >(1); |
|
72 |
CleanupStack::PushL( icons ); |
|
73 |
||
74 |
CFbsBitmap* bitmap = NULL; |
|
75 |
CFbsBitmap* mask = NULL;// |
|
76 |
||
140 | 77 |
AknIconUtils::CreateIconL(bitmap, |
78 |
mask, |
|
79 |
iEikonEnv->EikAppUi()->Application()->BitmapStoreName(), |
|
80 |
EMbmPodcastFeed, |
|
81 |
EMbmPodcastFeed_mask); |
|
2 | 82 |
CleanupStack::PushL( bitmap ); |
83 |
CleanupStack::PushL( mask ); |
|
84 |
icons->AppendL( CGulIcon::NewL( bitmap, mask ) ); |
|
85 |
CleanupStack::Pop(2); // bitmap, mask |
|
86 |
||
87 |
iListContainer->Listbox()->ItemDrawer()->FormattedCellData()->SetIconArrayL( icons ); |
|
88 |
CleanupStack::Pop(icons); // icons |
|
89 |
||
90 |
iListContainer->Listbox()->SetListBoxObserver(this); |
|
91 |
||
92 |
SetEmptyTextL(R_PODCAST_EMPTY_SEARCH); |
|
93 |
} |
|
94 |
||
95 |
CPodcastSearchView::~CPodcastSearchView() |
|
96 |
{ |
|
309
d9f6395a50ea
Search view title moved from navi pane to title bar, for consistencey
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
243
diff
changeset
|
97 |
DP("CPodcastSearchView::~CPodcastSearchView BEGIN"); |
2 | 98 |
iPodcastModel.FeedEngine().RemoveObserver(this); |
309
d9f6395a50ea
Search view title moved from navi pane to title bar, for consistencey
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
243
diff
changeset
|
99 |
DP("CPodcastSearchView::~CPodcastSearchView END"); |
2 | 100 |
} |
101 |
||
102 |
TUid CPodcastSearchView::Id() const |
|
103 |
{ |
|
104 |
return KUidPodcastSearchViewID; |
|
105 |
} |
|
106 |
||
107 |
void CPodcastSearchView::DoActivateL(const TVwsViewId& aPrevViewId, |
|
108 |
TUid aCustomMessageId, |
|
109 |
const TDesC8& aCustomMessage) |
|
110 |
{ |
|
111 |
CPodcastListView::DoActivateL(aPrevViewId, aCustomMessageId, aCustomMessage); |
|
112 |
iPreviousView = TVwsViewId(KUidPodcast, KUidPodcastFeedViewID); |
|
309
d9f6395a50ea
Search view title moved from navi pane to title bar, for consistencey
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
243
diff
changeset
|
113 |
|
d9f6395a50ea
Search view title moved from navi pane to title bar, for consistencey
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
243
diff
changeset
|
114 |
HBufC* text = iEikonEnv->AllocReadResourceLC(R_SEARCH_RESULTS); |
d9f6395a50ea
Search view title moved from navi pane to title bar, for consistencey
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
243
diff
changeset
|
115 |
|
d9f6395a50ea
Search view title moved from navi pane to title bar, for consistencey
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
243
diff
changeset
|
116 |
CAknTitlePane* titlePane = static_cast<CAknTitlePane*> |
d9f6395a50ea
Search view title moved from navi pane to title bar, for consistencey
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
243
diff
changeset
|
117 |
( StatusPane()->ControlL( TUid::Uid( EEikStatusPaneUidTitle ) ) ); |
49
43e204e6ae2e
Fix for accidental merge regressions. Text fixes for tool tip and settings.
teknolog
parents:
24
diff
changeset
|
118 |
|
309
d9f6395a50ea
Search view title moved from navi pane to title bar, for consistencey
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
243
diff
changeset
|
119 |
titlePane->SetTextL(*text , ETrue ); |
d9f6395a50ea
Search view title moved from navi pane to title bar, for consistencey
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
243
diff
changeset
|
120 |
CleanupStack::PopAndDestroy(text); |
56 | 121 |
UpdateListboxItemsL(); |
2 | 122 |
} |
123 |
||
124 |
void CPodcastSearchView::DoDeactivate() |
|
125 |
{ |
|
126 |
CPodcastListView::DoDeactivate(); |
|
309
d9f6395a50ea
Search view title moved from navi pane to title bar, for consistencey
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
243
diff
changeset
|
127 |
|
d9f6395a50ea
Search view title moved from navi pane to title bar, for consistencey
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
243
diff
changeset
|
128 |
CAknTitlePane* titlePane = static_cast<CAknTitlePane*> |
d9f6395a50ea
Search view title moved from navi pane to title bar, for consistencey
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
243
diff
changeset
|
129 |
( StatusPane()->ControlL( TUid::Uid( EEikStatusPaneUidTitle ) ) ); |
d9f6395a50ea
Search view title moved from navi pane to title bar, for consistencey
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
243
diff
changeset
|
130 |
|
d9f6395a50ea
Search view title moved from navi pane to title bar, for consistencey
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
243
diff
changeset
|
131 |
titlePane->SetTextToDefaultL(); |
2 | 132 |
} |
133 |
||
134 |
||
135 |
void CPodcastSearchView::HandleListBoxEventL(CEikListBox* /* aListBox */, TListBoxEvent aEventType) |
|
136 |
{ |
|
137 |
DP("CPodcastSearchView::HandleListBoxEventL BEGIN"); |
|
138 |
switch(aEventType) |
|
139 |
{ |
|
140 |
case EEventEnterKeyPressed: |
|
137
eefed4bda2e2
Minor fixes to comply with single tap technical solution description. By this I consider bug 2056 closed.
teknolog
parents:
126
diff
changeset
|
141 |
case EEventItemSingleClicked: |
2 | 142 |
case EEventItemDoubleClicked: |
143 |
case EEventItemActioned: |
|
144 |
{ |
|
145 |
HandleCommandL(EPodcastAddSearchResult); |
|
146 |
} |
|
147 |
break; |
|
148 |
default: |
|
149 |
break; |
|
150 |
} |
|
151 |
DP("CPodcastSearchView::HandleListBoxEventL END"); |
|
152 |
} |
|
153 |
||
154 |
void CPodcastSearchView::UpdateListboxItemsL() |
|
155 |
{ |
|
156 |
DP("CPodcastSearchView::UpdateListboxItemsL BEGIN"); |
|
157 |
if(!iListContainer->IsVisible()) { |
|
158 |
DP("CPodcastSearchView::UpdateListboxItemsL END (not visible)"); |
|
159 |
return; |
|
160 |
} |
|
161 |
const RFeedInfoArray* searchItems = NULL; |
|
162 |
searchItems = &iPodcastModel.FeedEngine().GetSearchResults(); |
|
163 |
TInt len = searchItems->Count(); |
|
164 |
TListItemProperties itemProps; |
|
165 |
iListContainer->Listbox()->Reset(); |
|
166 |
iListContainer->Listbox()->ItemDrawer()->ClearAllPropertiesL(); |
|
167 |
iItemIdArray.Reset(); |
|
168 |
iItemArray->Reset(); |
|
169 |
||
170 |
if (len > 0) |
|
171 |
{ |
|
172 |
for (int i=0;i<len;i++) |
|
173 |
{ |
|
174 |
CFeedInfo *fi = (*searchItems)[i]; |
|
175 |
iItemIdArray.Append(fi->Uid()); |
|
176 |
TInt iconIndex = 0; |
|
177 |
||
178 |
TBuf<512> descr; |
|
179 |
descr.Copy(fi->Description().Left(512)); |
|
15
93d9f66bf50b
Cleaning description better for second line in search results
teknolog
parents:
14
diff
changeset
|
180 |
PodcastUtils::RemoveAllFormatting(descr); |
2 | 181 |
iListboxFormatbuffer.Format(KSearchResultFormat(), iconIndex, &fi->Title(), &descr); |
182 |
iItemArray->AppendL(iListboxFormatbuffer); |
|
183 |
iListContainer->Listbox()->ItemDrawer()->SetPropertiesL(i, itemProps); |
|
184 |
} |
|
185 |
} |
|
186 |
else |
|
187 |
{ |
|
188 |
TBuf<KMaxFeedNameLength> itemName; |
|
189 |
iEikonEnv->ReadResourceL(itemName, R_PODCAST_NO_SEARCH_RESULTS); |
|
190 |
iItemArray->Reset(); |
|
191 |
iItemIdArray.Reset(); |
|
192 |
||
193 |
TListItemProperties itemProps; |
|
194 |
itemProps.SetDimmed(ETrue); |
|
195 |
itemProps.SetHiddenSelection(ETrue); |
|
196 |
iListContainer->Listbox()->ItemDrawer()->SetPropertiesL(0, itemProps); |
|
197 |
} |
|
198 |
iListContainer->Listbox()->HandleItemAdditionL(); |
|
199 |
DP("CPodcastSearchView::UpdateListboxItemsL END"); |
|
200 |
} |
|
201 |
||
202 |
/** |
|
203 |
* Command handling function intended for overriding by sub classes. |
|
204 |
* Default implementation is empty. |
|
205 |
* @param aCommand ID of the command to respond to. |
|
206 |
*/ |
|
207 |
void CPodcastSearchView::HandleCommandL(TInt aCommand) |
|
208 |
{ |
|
209 |
//CloseToolbarExtension(); |
|
210 |
switch(aCommand) |
|
211 |
{ |
|
212 |
case EPodcastAddSearchResult: |
|
213 |
{ |
|
214 |
TInt index = iListContainer->Listbox()->CurrentItemIndex(); |
|
215 |
||
216 |
if(index < iItemArray->MdcaCount() && index >= 0) |
|
217 |
{ |
|
218 |
CFeedInfo *newInfo = iPodcastModel.FeedEngine().GetSearchResults()[index]; |
|
219 |
||
220 |
// ask if user wants to add the feed |
|
221 |
TBuf<KMaxMessageLength> templ; |
|
222 |
TBuf<KMaxMessageLength> message; |
|
223 |
||
224 |
iEikonEnv->ReadResourceL(templ, R_ADD_FEED_QUERY); |
|
225 |
message.Format(templ, &newInfo->Title()); |
|
35
66c5303f3610
A ton of CodeScanner fixes (high issues) - but not all
Brendan Donegan <brendand@symbian.org>
parents:
24
diff
changeset
|
226 |
if(ShowQueryMessageL(message)) { |
2 | 227 |
TBool added = iPodcastModel.FeedEngine().AddFeedL(*newInfo); |
228 |
||
229 |
if (added) |
|
312
2faae209e72b
More elegant view handling between search view and feeds view
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
309
diff
changeset
|
230 |
{ |
2faae209e72b
More elegant view handling between search view and feeds view
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
309
diff
changeset
|
231 |
// this is a bit of a hack, first we activate the feeds view normally |
2faae209e72b
More elegant view handling between search view and feeds view
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
309
diff
changeset
|
232 |
AppUi()->ActivateLocalViewL(KUidPodcastFeedViewID, TUid::Uid(0), KNullDesC8); |
2faae209e72b
More elegant view handling between search view and feeds view
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
309
diff
changeset
|
233 |
// and then we send the UID of the recently added feed back to feed view for updating |
2faae209e72b
More elegant view handling between search view and feeds view
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
309
diff
changeset
|
234 |
// this is needed so the update? query comes on top of feed view, not search view |
2faae209e72b
More elegant view handling between search view and feeds view
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
309
diff
changeset
|
235 |
AppUi()->ActivateLocalViewL(KUidPodcastFeedViewID, TUid::Uid(newInfo->Uid()), KNullDesC8); |
2 | 236 |
} |
237 |
else |
|
238 |
{ |
|
239 |
TBuf<KMaxMessageLength> message; |
|
240 |
iEikonEnv->ReadResourceL(message, R_ADD_FEED_EXISTS); |
|
35
66c5303f3610
A ton of CodeScanner fixes (high issues) - but not all
Brendan Donegan <brendand@symbian.org>
parents:
24
diff
changeset
|
241 |
ShowErrorMessageL(message); |
2 | 242 |
} |
243 |
} |
|
244 |
} |
|
245 |
} |
|
246 |
break; |
|
247 |
default: |
|
248 |
CPodcastListView::HandleCommandL(aCommand); |
|
249 |
break; |
|
250 |
} |
|
251 |
UpdateToolbar(); |
|
252 |
} |
|
253 |
||
7 | 254 |
void CPodcastSearchView::OpmlParsingComplete(TInt /*aError*/, TUint /*aNumFeedsImported*/) |
2 | 255 |
{ |
256 |
DP("CPodcastSearchView::OpmlParsingComplete BEGIN"); |
|
56 | 257 |
|
2 | 258 |
DP("CPodcastSearchView::OpmlParsingComplete END"); |
259 |
} |