equal
deleted
inserted
replaced
13 * |
13 * |
14 * Description: Implementation of QMPXVideoPlaybackDocumentLoader |
14 * Description: Implementation of QMPXVideoPlaybackDocumentLoader |
15 * |
15 * |
16 */ |
16 */ |
17 |
17 |
18 // Version : %version: 8 % |
18 // Version : %version: 9 % |
19 |
19 |
20 |
20 |
21 |
21 |
22 #include "mpxvideo_debug.h" |
22 #include "mpxvideo_debug.h" |
23 #include "mpxvideoplaybackbuttonbar.h" |
23 #include "mpxvideoplaybackbuttonbar.h" |
24 #include "mpxvideoplaybackcontrolbar.h" |
24 #include "mpxvideoplaybackcontrolbar.h" |
25 #include "mpxvideoplaybackprogressbar.h" |
25 #include "mpxvideoplaybackprogressbar.h" |
26 #include "mpxvideoplaybackdocumentloader.h" |
26 #include "mpxvideoplaybackdocumentloader.h" |
27 #include "mpxvideoplaybackfiledetailswidget.h" |
27 #include "mpxvideoplaybackfiledetailswidget.h" |
28 #include "mpxvideoplaybacknontouchvolumebar.h" |
|
29 #include "mpxvideoplaybackcontrolscontroller.h" |
28 #include "mpxvideoplaybackcontrolscontroller.h" |
30 #include "mpxvideoplaybackcontrolconfiguration.h" |
29 #include "mpxvideoplaybackcontrolconfiguration.h" |
31 #include "mpxvideoplaybackdetailsplaybackwindow.h" |
30 #include "mpxvideoplaybackdetailsplaybackwindow.h" |
32 |
31 |
33 // ------------------------------------------------------------------------------------------------- |
32 // ------------------------------------------------------------------------------------------------- |
77 else if ( name == "fileDetailsLayout" ) |
76 else if ( name == "fileDetailsLayout" ) |
78 { |
77 { |
79 object = new QMPXVideoPlaybackFileDetailsWidget( mController ); |
78 object = new QMPXVideoPlaybackFileDetailsWidget( mController ); |
80 object->setObjectName( name ); |
79 object->setObjectName( name ); |
81 } |
80 } |
82 else if ( name == "volumeSlider" ) |
|
83 { |
|
84 object = new QMPXVideoPlaybackNonTouchVolumeBar(); |
|
85 object->setObjectName( name ); |
|
86 } |
|
87 else if ( name == "detailsPlaybackWindow" ) |
81 else if ( name == "detailsPlaybackWindow" ) |
88 { |
82 { |
89 object = new QMPXVideoPlaybackDetailsPlaybackWindow( mController ); |
83 object = new QMPXVideoPlaybackDetailsPlaybackWindow( mController ); |
90 object->setObjectName( name ); |
84 object->setObjectName( name ); |
91 } |
85 } |