GridData sliderGD = new GridData();
sliderGD.grabExcessHorizontalSpace = true;
sliderGD.horizontalAlignment = SWT.FILL;
sliderGD.verticalAlignment = SWT.CENTER;
scSlider = new SliderWrapper(btnGroup3, SWT.HORIZONTAL);
scSlider.setLayoutData(sliderGD);
laTotalTime = new Label(btnGroup3, SWT.NONE);
laTotalTime.setText(Messages.getString("PlayerView.DefaultTimeInfo")); //$NON-NLS-1$
Composite btnGroup4 = new Composite(parent, SWT.NONE);
btnGroup4.setLayout(new FillLayout());
btnGroup4.setLayoutData(new GridData(SWT.NONE, SWT.TOP, false, false));
btnVolumeMute = new Button(btnGroup4, SWT.PUSH);
btnVolumeMute.setImage(imgVolumeMute);
btnVolumeMute.setToolTipText(Messages.getString("PlayerView.VolumeMute")); //$NON-NLS-1$
btnVolumeDown = new Button(btnGroup4, SWT.PUSH);
btnVolumeDown.setImage(imgVolumeDown);
btnVolumeDown.setToolTipText(Messages.getString("PlayerView.VolumeDown")); //$NON-NLS-1$
btnVolumeUp = new Button(btnGroup4, SWT.PUSH);
btnVolumeUp.setImage(imgVolumeUp);
btnVolumeUp.setToolTipText(Messages.getString("PlayerView.VolumeUp")); //$NON-NLS-1$
Composite btnGroup5 = new Composite(parent, SWT.NONE);
btnGroup5.setLayout(new GridLayout(2, false));
btnGroup5.setLayoutData(new GridData(SWT.NONE, SWT.TOP, false, false));
GridData volumeSliderGD = new GridData();
volumeSliderGD.verticalAlignment = SWT.CENTER;
scVolumeSlider = new SliderWrapper(btnGroup5, SWT.HORIZONTAL);
scVolumeSlider.setLayoutData(volumeSliderGD);
scVolumeSlider.setMinimum(0);
scVolumeSlider.setMaximum(100);
laVolumeLabel = new Label(btnGroup5, SWT.NONE);