equal
deleted
inserted
replaced
13 * |
13 * |
14 * Description: VideoCollectionViewPlugin class implementation |
14 * Description: VideoCollectionViewPlugin class implementation |
15 * |
15 * |
16 */ |
16 */ |
17 |
17 |
18 // Version : %version: 76.1.7 % |
18 // Version : %version: 76.1.8 % |
19 |
19 |
20 // INCLUDE FILES |
20 // INCLUDE FILES |
21 #include <qcoreapplication.h> |
21 #include <qcoreapplication.h> |
22 #include <xqserviceutil.h> |
22 #include <xqserviceutil.h> |
23 #include <xqplugin.h> |
23 #include <xqplugin.h> |
32 #include <hblistwidget.h> |
32 #include <hblistwidget.h> |
33 #include <hblistwidgetitem.h> |
33 #include <hblistwidgetitem.h> |
34 #include <hblistviewitem.h> |
34 #include <hblistviewitem.h> |
35 #include <hbparameterlengthlimiter.h> |
35 #include <hbparameterlengthlimiter.h> |
36 #include <hbtextitem.h> |
36 #include <hbtextitem.h> |
|
37 #include <hbscrollbar.h> |
37 #include <cmath> |
38 #include <cmath> |
38 #include <thumbnailmanager_qt.h> |
39 #include <thumbnailmanager_qt.h> |
39 #include <shareui.h> |
40 #include <shareui.h> |
40 |
41 |
41 #include "videocollectionclient.h" |
42 #include "videocollectionclient.h" |
229 ERROR(-1, "VideoFileDetailsViewPlugin::activateView() failed to load details list widget."); |
230 ERROR(-1, "VideoFileDetailsViewPlugin::activateView() failed to load details list widget."); |
230 return; |
231 return; |
231 } |
232 } |
232 |
233 |
233 list->setEnabledAnimations(HbAbstractItemView::None); |
234 list->setEnabledAnimations(HbAbstractItemView::None); |
|
235 |
|
236 list->setVerticalScrollBarPolicy(HbScrollArea::ScrollBarAsNeeded); |
|
237 |
|
238 HbScrollBar* bar = list->verticalScrollBar(); |
|
239 |
|
240 if(bar) |
|
241 { |
|
242 bar->setInteractive(true); |
|
243 } |
234 } |
244 } |
235 |
245 |
236 // --------------------------------------------------------------------------- |
246 // --------------------------------------------------------------------------- |
237 // Destroy view |
247 // Destroy view |
238 // --------------------------------------------------------------------------- |
248 // --------------------------------------------------------------------------- |