@ -1155,7 +1155,7 @@ void XinePart::slotContextMenu(const TQPoint& pos)
{
if ( factory ( ) )
{
KPopupMenu * pop = ( K PopupMenu* ) factory ( ) - > container ( " context_menu " , this ) ;
TDEPopupMenu * pop = ( TDE PopupMenu* ) factory ( ) - > container ( " context_menu " , this ) ;
if ( pop )
pop - > popup ( pos ) ;
}
@ -1249,7 +1249,7 @@ void XinePart::slotFinalize()
{
if ( factory ( ) )
{
KToolBar * pos = ( K ToolBar* ) factory ( ) - > container ( " positionToolBar " , this ) ;
TDEToolBar * pos = ( TDE ToolBar* ) factory ( ) - > container ( " positionToolBar " , this ) ;
if ( pos )
{
// pos->alignItemRight(pos->idAt(1), true); //align time widget right
@ -1261,8 +1261,8 @@ void XinePart::slotFinalize()
else
{
kdDebug ( ) < < " XinePart: no xmlguifactory, will create a simple context menu... " < < endl ;
K Action* action = NULL ;
m_embeddedContext = new K PopupMenu( 0 ) ;
TDE Action* action = NULL ;
m_embeddedContext = new TDE PopupMenu( 0 ) ;
m_embeddedContext - > insertTitle ( instance ( ) - > iconLoader ( ) - > loadIcon ( " kaffeine " , KIcon : : Small ) , i18n ( " Kaffeine Player " ) ) ;
actionCollection ( ) - > action ( " player_play " ) - > plug ( m_embeddedContext ) ;
actionCollection ( ) - > action ( " player_pause " ) - > plug ( m_embeddedContext ) ;
@ -1276,9 +1276,9 @@ void XinePart::slotFinalize()
actionCollection ( ) - > action ( " file_save_screenshot " ) - > plug ( m_embeddedContext ) ;
actionCollection ( ) - > action ( " file_save_stream " ) - > plug ( m_embeddedContext ) ;
m_embeddedContext - > insertSeparator ( ) ;
action = new K Action( i18n ( " Copy URL to Clipboard " ) , " editcopy " , 0 , TQT_TQOBJECT ( this ) , TQT_SLOT ( slotCopyToClipboard ( ) ) , actionCollection ( ) , " copy_to_clipboard " ) ;
action = new TDE Action( i18n ( " Copy URL to Clipboard " ) , " editcopy " , 0 , TQT_TQOBJECT ( this ) , TQT_SLOT ( slotCopyToClipboard ( ) ) , actionCollection ( ) , " copy_to_clipboard " ) ;
action - > plug ( m_embeddedContext ) ;
action = new K Action( i18n ( " Play in Kaffeine Externally " ) , " gear " , 0 , TQT_TQOBJECT ( this ) , TQT_SLOT ( slotLaunchExternally ( ) ) , actionCollection ( ) , " play_externally " ) ;
action = new TDE Action( i18n ( " Play in Kaffeine Externally " ) , " gear " , 0 , TQT_TQOBJECT ( this ) , TQT_SLOT ( slotLaunchExternally ( ) ) , actionCollection ( ) , " play_externally " ) ;
action - > plug ( m_embeddedContext ) ;
}
@ -1317,100 +1317,100 @@ void XinePart::slotLaunchDelayed()
void XinePart : : initActions ( )
{
K Action* action = NULL ;
TDE Action* action = NULL ;
/* file menu */
m_broadcastSend = new K ToggleAction( i18n ( " &Send Broadcast Stream... " ) , 0 , 0 , TQT_TQOBJECT ( this ) , TQT_SLOT ( slotToggleBroadcastSend ( ) ) , actionCollection ( ) , " network_send " ) ;
new K Action( i18n ( " &Receive Broadcast Stream... " ) , " network " , 0 , TQT_TQOBJECT ( this ) , TQT_SLOT ( slotBroadcastReceive ( ) ) , actionCollection ( ) , " network_receive " ) ;
new K Action( i18n ( " &Save Screenshot... " ) , " frame_image " , CTRL | Key_S , TQT_TQOBJECT ( this ) , TQT_SLOT ( slotScreenshot ( ) ) , actionCollection ( ) , " file_save_screenshot " ) ;
action = new K Action( i18n ( " Save Stream... " ) , " player_record " , Key_R , TQT_TQOBJECT ( this ) , TQT_SLOT ( slotSaveStream ( ) ) , actionCollection ( ) , " file_save_stream " ) ;
m_broadcastSend = new TDE ToggleAction( i18n ( " &Send Broadcast Stream... " ) , 0 , 0 , TQT_TQOBJECT ( this ) , TQT_SLOT ( slotToggleBroadcastSend ( ) ) , actionCollection ( ) , " network_send " ) ;
new TDE Action( i18n ( " &Receive Broadcast Stream... " ) , " network " , 0 , TQT_TQOBJECT ( this ) , TQT_SLOT ( slotBroadcastReceive ( ) ) , actionCollection ( ) , " network_receive " ) ;
new TDE Action( i18n ( " &Save Screenshot... " ) , " frame_image " , CTRL | Key_S , TQT_TQOBJECT ( this ) , TQT_SLOT ( slotScreenshot ( ) ) , actionCollection ( ) , " file_save_screenshot " ) ;
action = new TDE Action( i18n ( " Save Stream... " ) , " player_record " , Key_R , TQT_TQOBJECT ( this ) , TQT_SLOT ( slotSaveStream ( ) ) , actionCollection ( ) , " file_save_stream " ) ;
action - > setWhatsThis ( i18n ( " Saves current stream to harddisc. This feature was disabled for some formats (e.g. Real Media) to prevent potential legal problems. " ) ) ;
/* player menu */
new K Action( i18n ( " Toggle Minimal Mode " ) , 0 , 0 , this , TQT_SIGNAL ( signalToggleMinimalMode ( ) ) , actionCollection ( ) , " player_minimal_mode " ) ;
new TDE Action( i18n ( " Toggle Minimal Mode " ) , 0 , 0 , this , TQT_SIGNAL ( signalToggleMinimalMode ( ) ) , actionCollection ( ) , " player_minimal_mode " ) ;
new K Action( i18n ( " Play " ) , " player_play " , 0 , TQT_TQOBJECT ( this ) , TQT_SLOT ( slotPlay ( ) ) , actionCollection ( ) , " player_play " ) ;
m_pauseButton = new K ToggleAction( i18n ( " Pause " ) , " player_pause " , Key_Space , TQT_TQOBJECT ( this ) , TQT_SLOT ( slotTogglePause ( ) ) , actionCollection ( ) , " player_pause " ) ;
new K Action( i18n ( " &Next " ) , " player_end " , Key_PageDown , TQT_TQOBJECT ( this ) , TQT_SLOT ( slotNext ( ) ) , actionCollection ( ) , " player_next " ) ;
new K Action( i18n ( " &Previous " ) , " player_start " , Key_PageUp , TQT_TQOBJECT ( this ) , TQT_SLOT ( slotPrevious ( ) ) , actionCollection ( ) , " player_previous " ) ;
new K Action( i18n ( " Stop " ) , " player_stop " , Key_Backspace , TQT_TQOBJECT ( this ) , TQT_SLOT ( slotStop ( ) ) , actionCollection ( ) , " player_stop " ) ;
new TDE Action( i18n ( " Play " ) , " player_play " , 0 , TQT_TQOBJECT ( this ) , TQT_SLOT ( slotPlay ( ) ) , actionCollection ( ) , " player_play " ) ;
m_pauseButton = new TDE ToggleAction( i18n ( " Pause " ) , " player_pause " , Key_Space , TQT_TQOBJECT ( this ) , TQT_SLOT ( slotTogglePause ( ) ) , actionCollection ( ) , " player_pause " ) ;
new TDE Action( i18n ( " &Next " ) , " player_end " , Key_PageDown , TQT_TQOBJECT ( this ) , TQT_SLOT ( slotNext ( ) ) , actionCollection ( ) , " player_next " ) ;
new TDE Action( i18n ( " &Previous " ) , " player_start " , Key_PageUp , TQT_TQOBJECT ( this ) , TQT_SLOT ( slotPrevious ( ) ) , actionCollection ( ) , " player_previous " ) ;
new TDE Action( i18n ( " Stop " ) , " player_stop " , Key_Backspace , TQT_TQOBJECT ( this ) , TQT_SLOT ( slotStop ( ) ) , actionCollection ( ) , " player_stop " ) ;
new K Action( i18n ( " &Fast Forward " ) , " player_fwd " , ALT | Key_Right , TQT_TQOBJECT ( this ) , TQT_SLOT ( slotFastForward ( ) ) , actionCollection ( ) , " player_ff " ) ;
new K Action( i18n ( " Slow &Motion " ) , 0 , ALT | Key_Left , TQT_TQOBJECT ( this ) , TQT_SLOT ( slotSlowMotion ( ) ) , actionCollection ( ) , " player_slowmotion " ) ;
new TDE Action( i18n ( " &Fast Forward " ) , " player_fwd " , ALT | Key_Right , TQT_TQOBJECT ( this ) , TQT_SLOT ( slotFastForward ( ) ) , actionCollection ( ) , " player_ff " ) ;
new TDE Action( i18n ( " Slow &Motion " ) , 0 , ALT | Key_Left , TQT_TQOBJECT ( this ) , TQT_SLOT ( slotSlowMotion ( ) ) , actionCollection ( ) , " player_slowmotion " ) ;
new K Action( i18n ( " Skip Forward (20s) " ), NULL, Key_Right, TQT_TQOBJECT(this), TQT_SLOT(slotPosPlusSmall()), actionCollection(), " player_posplus_small " ) ;
new K Action( i18n ( " Skip Backward (20s) " ), NULL, Key_Left, TQT_TQOBJECT(this), TQT_SLOT(slotPosMinusSmall()), actionCollection(), " player_posminus_small " ) ;
new K Action( i18n ( " Skip Forward (1m) " ), NULL, CTRL|Key_PageUp, TQT_TQOBJECT(this), TQT_SLOT(slotPosPlusMedium()), actionCollection(), " player_posplus_medium " ) ;
new K Action( i18n ( " Skip Backward (1m) " ), NULL, CTRL|Key_PageDown, TQT_TQOBJECT(this), TQT_SLOT(slotPosMinusMedium()), actionCollection(), " player_posminus_medium " ) ;
new K Action( i18n ( " Skip Forward (10m) " ), NULL, ALT|Key_PageUp, TQT_TQOBJECT(this), TQT_SLOT(slotPosPlusLarge()), actionCollection(), " player_posplus_large " ) ;
new K Action( i18n ( " Skip Backward (10m) " ), NULL, ALT|Key_PageDown, TQT_TQOBJECT(this), TQT_SLOT(slotPosMinusLarge()), actionCollection(), " player_posminus_large " ) ;
new K Action( i18n ( " Jump to Position... " ) , " goto " , CTRL | Key_J , TQT_TQOBJECT ( this ) , TQT_SLOT ( slotJumpToPosition ( ) ) , actionCollection ( ) , " player_jump_to " ) ;
new TDE Action( i18n ( " Skip Forward (20s) " ), NULL, Key_Right, TQT_TQOBJECT(this), TQT_SLOT(slotPosPlusSmall()), actionCollection(), " player_posplus_small " ) ;
new TDE Action( i18n ( " Skip Backward (20s) " ), NULL, Key_Left, TQT_TQOBJECT(this), TQT_SLOT(slotPosMinusSmall()), actionCollection(), " player_posminus_small " ) ;
new TDE Action( i18n ( " Skip Forward (1m) " ), NULL, CTRL|Key_PageUp, TQT_TQOBJECT(this), TQT_SLOT(slotPosPlusMedium()), actionCollection(), " player_posplus_medium " ) ;
new TDE Action( i18n ( " Skip Backward (1m) " ), NULL, CTRL|Key_PageDown, TQT_TQOBJECT(this), TQT_SLOT(slotPosMinusMedium()), actionCollection(), " player_posminus_medium " ) ;
new TDE Action( i18n ( " Skip Forward (10m) " ), NULL, ALT|Key_PageUp, TQT_TQOBJECT(this), TQT_SLOT(slotPosPlusLarge()), actionCollection(), " player_posplus_large " ) ;
new TDE Action( i18n ( " Skip Backward (10m) " ), NULL, ALT|Key_PageDown, TQT_TQOBJECT(this), TQT_SLOT(slotPosMinusLarge()), actionCollection(), " player_posminus_large " ) ;
new TDE Action( i18n ( " Jump to Position... " ) , " goto " , CTRL | Key_J , TQT_TQOBJECT ( this ) , TQT_SLOT ( slotJumpToPosition ( ) ) , actionCollection ( ) , " player_jump_to " ) ;
new K Action( i18n ( " DVD Menu Left " ) , 0 , CTRL | Key_Left , TQT_TQOBJECT ( this ) , TQT_SLOT ( slotDVDMenuLeft ( ) ) , actionCollection ( ) , " dvdmenuleft " ) ;
new K Action( i18n ( " DVD Menu Right " ) , 0 , CTRL | Key_Right , TQT_TQOBJECT ( this ) , TQT_SLOT ( slotDVDMenuRight ( ) ) , actionCollection ( ) , " dvdmenuright " ) ;
new K Action( i18n ( " DVD Menu Up " ) , 0 , CTRL | Key_Up , TQT_TQOBJECT ( this ) , TQT_SLOT ( slotDVDMenuUp ( ) ) , actionCollection ( ) , " dvdmenuup " ) ;
new K Action( i18n ( " DVD Menu Down " ) , 0 , CTRL | Key_Down , TQT_TQOBJECT ( this ) , TQT_SLOT ( slotDVDMenuDown ( ) ) , actionCollection ( ) , " dvdmenudown " ) ;
new K Action( i18n ( " DVD Menu Select " ) , 0 , CTRL | Key_Return , TQT_TQOBJECT ( this ) , TQT_SLOT ( slotDVDMenuSelect ( ) ) , actionCollection ( ) , " dvdmenuselect " ) ;
new TDE Action( i18n ( " DVD Menu Left " ) , 0 , CTRL | Key_Left , TQT_TQOBJECT ( this ) , TQT_SLOT ( slotDVDMenuLeft ( ) ) , actionCollection ( ) , " dvdmenuleft " ) ;
new TDE Action( i18n ( " DVD Menu Right " ) , 0 , CTRL | Key_Right , TQT_TQOBJECT ( this ) , TQT_SLOT ( slotDVDMenuRight ( ) ) , actionCollection ( ) , " dvdmenuright " ) ;
new TDE Action( i18n ( " DVD Menu Up " ) , 0 , CTRL | Key_Up , TQT_TQOBJECT ( this ) , TQT_SLOT ( slotDVDMenuUp ( ) ) , actionCollection ( ) , " dvdmenuup " ) ;
new TDE Action( i18n ( " DVD Menu Down " ) , 0 , CTRL | Key_Down , TQT_TQOBJECT ( this ) , TQT_SLOT ( slotDVDMenuDown ( ) ) , actionCollection ( ) , " dvdmenudown " ) ;
new TDE Action( i18n ( " DVD Menu Select " ) , 0 , CTRL | Key_Return , TQT_TQOBJECT ( this ) , TQT_SLOT ( slotDVDMenuSelect ( ) ) , actionCollection ( ) , " dvdmenuselect " ) ;
m_audioChannels = new K SelectAction( i18n ( " Audio Channel " ) , 0 , actionCollection ( ) , " audio_channels " ) ;
m_audioChannels = new TDE SelectAction( i18n ( " Audio Channel " ) , 0 , actionCollection ( ) , " audio_channels " ) ;
m_audioChannels - > setToolTip ( i18n ( " Select audio channel " ) ) ;
m_audioChannels - > setComboWidth ( 50 ) ;
connect ( m_audioChannels , TQT_SIGNAL ( activated ( int ) ) , TQT_TQOBJECT ( this ) , TQT_SLOT ( slotSetAudioChannel ( int ) ) ) ;
new K Action( i18n ( " &Next Audio Channel " ) , 0 , 0 , TQT_TQOBJECT ( this ) , TQT_SLOT ( slotNextAudioChannel ( ) ) , actionCollection ( ) , " next_audio_channels " ) ;
m_audioVisual = new K SelectAction( i18n ( " Audio &Visualization " ) , 0 , actionCollection ( ) , " audio_visualization " ) ;
new TDE Action( i18n ( " &Next Audio Channel " ) , 0 , 0 , TQT_TQOBJECT ( this ) , TQT_SLOT ( slotNextAudioChannel ( ) ) , actionCollection ( ) , " next_audio_channels " ) ;
m_audioVisual = new TDE SelectAction( i18n ( " Audio &Visualization " ) , 0 , actionCollection ( ) , " audio_visualization " ) ;
connect ( m_audioVisual , TQT_SIGNAL ( activated ( const TQString & ) ) , TQT_TQOBJECT ( m_xine ) , TQT_SLOT ( slotSetVisualPlugin ( const TQString & ) ) ) ;
new K Action( i18n ( " &Mute " ) , " player_mute " , Key_U , TQT_TQOBJECT ( this ) , TQT_SLOT ( slotMute ( ) ) , actionCollection ( ) , " audio_mute " ) ;
new K Action( i18n ( " Volume Up " ) , NULL , Key_Plus , TQT_TQOBJECT ( this ) , TQT_SLOT ( slotVolumeUp ( ) ) , actionCollection ( ) , " volume_increase " ) ;
new K Action( i18n ( " Volume Down " ) , NULL , Key_Minus , TQT_TQOBJECT ( this ) , TQT_SLOT ( slotVolumeDown ( ) ) , actionCollection ( ) , " volume_decrease " ) ;
new TDE Action( i18n ( " &Mute " ) , " player_mute " , Key_U , TQT_TQOBJECT ( this ) , TQT_SLOT ( slotMute ( ) ) , actionCollection ( ) , " audio_mute " ) ;
new TDE Action( i18n ( " Volume Up " ) , NULL , Key_Plus , TQT_TQOBJECT ( this ) , TQT_SLOT ( slotVolumeUp ( ) ) , actionCollection ( ) , " volume_increase " ) ;
new TDE Action( i18n ( " Volume Down " ) , NULL , Key_Minus , TQT_TQOBJECT ( this ) , TQT_SLOT ( slotVolumeDown ( ) ) , actionCollection ( ) , " volume_decrease " ) ;
m_deinterlaceEnabled = new K ToggleAction( i18n ( " &Deinterlace " ) , 0 , Key_I , TQT_TQOBJECT ( m_xine ) , TQT_SLOT ( slotToggleDeinterlace ( ) ) , actionCollection ( ) , " video_deinterlace " ) ;
m_deinterlaceEnabled = new TDE ToggleAction( i18n ( " &Deinterlace " ) , 0 , Key_I , TQT_TQOBJECT ( m_xine ) , TQT_SLOT ( slotToggleDeinterlace ( ) ) , actionCollection ( ) , " video_deinterlace " ) ;
m_deinterlaceEnabled - > setWhatsThis ( i18n ( " Activate this for interlaced streams, some DVD's for example. " ) ) ;
new K Action( i18n ( " &Auto " ) , " viewmagfit " , Key_F5 , TQT_TQOBJECT ( m_xine ) , TQT_SLOT ( slotAspectRatioAuto ( ) ) , actionCollection ( ) , " aspect_auto " ) ;
new K Action( i18n ( " &4:3 " ) , " viewmagfit " , Key_F6 , TQT_TQOBJECT ( m_xine ) , TQT_SLOT ( slotAspectRatio4_3 ( ) ) , actionCollection ( ) , " aspect_43 " ) ;
new K Action( i18n ( " A&namorphic " ) , " viewmagfit " , Key_F7 , TQT_TQOBJECT ( m_xine ) , TQT_SLOT ( slotAspectRatioAnamorphic ( ) ) , actionCollection ( ) , " aspect_anamorphic " ) ;
new K Action( i18n ( " &DVB " ) , " viewmagfit " , Key_F8 , TQT_TQOBJECT ( m_xine ) , TQT_SLOT ( slotAspectRatioDVB ( ) ) , actionCollection ( ) , " aspect_dvb " ) ;
new K Action( i18n ( " &Square " ) , " viewmagfit " , Key_F9 , TQT_TQOBJECT ( m_xine ) , TQT_SLOT ( slotAspectRatioSquare ( ) ) , actionCollection ( ) , " aspect_square " ) ;
new TDE Action( i18n ( " &Auto " ) , " viewmagfit " , Key_F5 , TQT_TQOBJECT ( m_xine ) , TQT_SLOT ( slotAspectRatioAuto ( ) ) , actionCollection ( ) , " aspect_auto " ) ;
new TDE Action( i18n ( " &4:3 " ) , " viewmagfit " , Key_F6 , TQT_TQOBJECT ( m_xine ) , TQT_SLOT ( slotAspectRatio4_3 ( ) ) , actionCollection ( ) , " aspect_43 " ) ;
new TDE Action( i18n ( " A&namorphic " ) , " viewmagfit " , Key_F7 , TQT_TQOBJECT ( m_xine ) , TQT_SLOT ( slotAspectRatioAnamorphic ( ) ) , actionCollection ( ) , " aspect_anamorphic " ) ;
new TDE Action( i18n ( " &DVB " ) , " viewmagfit " , Key_F8 , TQT_TQOBJECT ( m_xine ) , TQT_SLOT ( slotAspectRatioDVB ( ) ) , actionCollection ( ) , " aspect_dvb " ) ;
new TDE Action( i18n ( " &Square " ) , " viewmagfit " , Key_F9 , TQT_TQOBJECT ( m_xine ) , TQT_SLOT ( slotAspectRatioSquare ( ) ) , actionCollection ( ) , " aspect_square " ) ;
KStdAction : : zoomIn ( TQT_TQOBJECT ( m_xine ) , TQT_SLOT ( slotZoomIn ( ) ) , actionCollection ( ) , " zoom_in " ) ;
KStdAction : : zoomOut ( TQT_TQOBJECT ( m_xine ) , TQT_SLOT ( slotZoomOut ( ) ) , actionCollection ( ) , " zoom_out " ) ;
KStdAction : : fitToPage ( TQT_TQOBJECT ( m_xine ) , TQT_SLOT ( slotZoomOff ( ) ) , actionCollection ( ) , " zoom_off " ) ;
new K Action( i18n ( " Zoom In Horizontal " ) , NULL , CTRL | Key_H , TQT_TQOBJECT ( m_xine ) , TQT_SLOT ( slotZoomInX ( ) ) , actionCollection ( ) , " zoom_in_x " ) ;
new K Action( i18n ( " Zoom Out Horizontal " ) , NULL , CTRL | SHIFT | Key_H , TQT_TQOBJECT ( m_xine ) , TQT_SLOT ( slotZoomOutX ( ) ) , actionCollection ( ) , " zoom_out_x " ) ;
new K Action( i18n ( " Zoom In Vertical " ) , NULL , CTRL | Key_V , TQT_TQOBJECT ( m_xine ) , TQT_SLOT ( slotZoomInY ( ) ) , actionCollection ( ) , " zoom_in_y " ) ;
new K Action( i18n ( " Zoom Out Vertical " ) , NULL , CTRL | SHIFT | Key_V , TQT_TQOBJECT ( m_xine ) , TQT_SLOT ( slotZoomOutY ( ) ) , actionCollection ( ) , " zoom_out_y " ) ;
new K Action( i18n ( " Deinterlace &Quality " ) , " blend " , CTRL | Key_I , TQT_TQOBJECT ( this ) , TQT_SLOT ( slotDeinterlaceQuality ( ) ) , actionCollection ( ) , " video_deinterlace_quality " ) ;
new K Action( i18n ( " &Video Settings " ) , " configure " , Key_V , TQT_TQOBJECT ( this ) , TQT_SLOT ( slotPictureSettings ( ) ) , actionCollection ( ) , " video_picture " ) ;
new K Action( i18n ( " &Equalizer " ) , NULL , Key_E , TQT_TQOBJECT ( this ) , TQT_SLOT ( slotEqualizer ( ) ) , actionCollection ( ) , " equalizer " ) ;
new TDE Action( i18n ( " Zoom In Horizontal " ) , NULL , CTRL | Key_H , TQT_TQOBJECT ( m_xine ) , TQT_SLOT ( slotZoomInX ( ) ) , actionCollection ( ) , " zoom_in_x " ) ;
new TDE Action( i18n ( " Zoom Out Horizontal " ) , NULL , CTRL | SHIFT | Key_H , TQT_TQOBJECT ( m_xine ) , TQT_SLOT ( slotZoomOutX ( ) ) , actionCollection ( ) , " zoom_out_x " ) ;
new TDE Action( i18n ( " Zoom In Vertical " ) , NULL , CTRL | Key_V , TQT_TQOBJECT ( m_xine ) , TQT_SLOT ( slotZoomInY ( ) ) , actionCollection ( ) , " zoom_in_y " ) ;
new TDE Action( i18n ( " Zoom Out Vertical " ) , NULL , CTRL | SHIFT | Key_V , TQT_TQOBJECT ( m_xine ) , TQT_SLOT ( slotZoomOutY ( ) ) , actionCollection ( ) , " zoom_out_y " ) ;
new TDE Action( i18n ( " Deinterlace &Quality " ) , " blend " , CTRL | Key_I , TQT_TQOBJECT ( this ) , TQT_SLOT ( slotDeinterlaceQuality ( ) ) , actionCollection ( ) , " video_deinterlace_quality " ) ;
new TDE Action( i18n ( " &Video Settings " ) , " configure " , Key_V , TQT_TQOBJECT ( this ) , TQT_SLOT ( slotPictureSettings ( ) ) , actionCollection ( ) , " video_picture " ) ;
new TDE Action( i18n ( " &Equalizer " ) , NULL , Key_E , TQT_TQOBJECT ( this ) , TQT_SLOT ( slotEqualizer ( ) ) , actionCollection ( ) , " equalizer " ) ;
m_subtitles = new K SelectAction( i18n ( " Subtitle " ) , 0 , actionCollection ( ) , " player_subtitles " ) ;
m_subtitles = new TDE SelectAction( i18n ( " Subtitle " ) , 0 , actionCollection ( ) , " player_subtitles " ) ;
m_subtitles - > setToolTip ( i18n ( " Select Subtitle " ) ) ;
m_subtitles - > setComboWidth ( 50 ) ;
connect ( m_subtitles , TQT_SIGNAL ( activated ( int ) ) , TQT_TQOBJECT ( this ) , TQT_SLOT ( slotSetSubtitle ( int ) ) ) ;
new K Action( i18n ( " &Next Subtitle Channel " ) , 0 , 0 , TQT_TQOBJECT ( this ) , TQT_SLOT ( slotNextSubtitleChannel ( ) ) , actionCollection ( ) , " next_player_subtitles " ) ;
new K Action( i18n ( " Delay Subtitle " ) , 0 , CTRL | ALT | Key_Left , TQT_TQOBJECT ( this ) , TQT_SLOT ( slotDelaySubTitle ( ) ) , actionCollection ( ) , " adv_sub " ) ;
new K Action( i18n ( " Advance Subtitle " ) , 0 , CTRL | ALT | Key_Right , TQT_TQOBJECT ( this ) , TQT_SLOT ( slotAdvanceSubTitle ( ) ) , actionCollection ( ) , " delay_sub " ) ;
new K Action( i18n ( " Add subtitle... " ) , 0 , 0 , TQT_TQOBJECT ( this ) , TQT_SLOT ( slotAddSubtitle ( ) ) , actionCollection ( ) , " add_subtitle " ) ;
new K Action( i18n ( " &Menu Toggle " ) , " view_detailed " , Key_D , TQT_TQOBJECT ( m_xine ) , TQT_SLOT ( slotMenuToggle ( ) ) , actionCollection ( ) , " dvd_toggle " ) ;
new K Action( i18n ( " &Title " ) , NULL , 0 , TQT_TQOBJECT ( m_xine ) , TQT_SLOT ( slotMenuTitle ( ) ) , actionCollection ( ) , " dvd_title " ) ;
new K Action( i18n ( " &Root " ) , NULL , 0 , TQT_TQOBJECT ( m_xine ) , TQT_SLOT ( slotMenuRoot ( ) ) , actionCollection ( ) , " dvd_root " ) ;
new K Action( i18n ( " &Subpicture " ) , NULL , 0 , TQT_TQOBJECT ( m_xine ) , TQT_SLOT ( slotMenuSubpicture ( ) ) , actionCollection ( ) , " dvd_subpicture " ) ;
new K Action( i18n ( " &Audio " ) , NULL , 0 , TQT_TQOBJECT ( m_xine ) , TQT_SLOT ( slotMenuAudio ( ) ) , actionCollection ( ) , " dvd_audio " ) ;
new K Action( i18n ( " An&gle " ) , NULL , 0 , TQT_TQOBJECT ( m_xine ) , TQT_SLOT ( slotMenuAngle ( ) ) , actionCollection ( ) , " dvd_angle " ) ;
new K Action( i18n ( " &Part " ) , NULL , 0 , TQT_TQOBJECT ( m_xine ) , TQT_SLOT ( slotMenuPart ( ) ) , actionCollection ( ) , " dvd_part " ) ;
m_dvdTitles = new K SelectAction( i18n ( " Titles " ) , 0 , actionCollection ( ) , " dvd_title_menu " ) ;
new TDE Action( i18n ( " &Next Subtitle Channel " ) , 0 , 0 , TQT_TQOBJECT ( this ) , TQT_SLOT ( slotNextSubtitleChannel ( ) ) , actionCollection ( ) , " next_player_subtitles " ) ;
new TDE Action( i18n ( " Delay Subtitle " ) , 0 , CTRL | ALT | Key_Left , TQT_TQOBJECT ( this ) , TQT_SLOT ( slotDelaySubTitle ( ) ) , actionCollection ( ) , " adv_sub " ) ;
new TDE Action( i18n ( " Advance Subtitle " ) , 0 , CTRL | ALT | Key_Right , TQT_TQOBJECT ( this ) , TQT_SLOT ( slotAdvanceSubTitle ( ) ) , actionCollection ( ) , " delay_sub " ) ;
new TDE Action( i18n ( " Add subtitle... " ) , 0 , 0 , TQT_TQOBJECT ( this ) , TQT_SLOT ( slotAddSubtitle ( ) ) , actionCollection ( ) , " add_subtitle " ) ;
new TDE Action( i18n ( " &Menu Toggle " ) , " view_detailed " , Key_D , TQT_TQOBJECT ( m_xine ) , TQT_SLOT ( slotMenuToggle ( ) ) , actionCollection ( ) , " dvd_toggle " ) ;
new TDE Action( i18n ( " &Title " ) , NULL , 0 , TQT_TQOBJECT ( m_xine ) , TQT_SLOT ( slotMenuTitle ( ) ) , actionCollection ( ) , " dvd_title " ) ;
new TDE Action( i18n ( " &Root " ) , NULL , 0 , TQT_TQOBJECT ( m_xine ) , TQT_SLOT ( slotMenuRoot ( ) ) , actionCollection ( ) , " dvd_root " ) ;
new TDE Action( i18n ( " &Subpicture " ) , NULL , 0 , TQT_TQOBJECT ( m_xine ) , TQT_SLOT ( slotMenuSubpicture ( ) ) , actionCollection ( ) , " dvd_subpicture " ) ;
new TDE Action( i18n ( " &Audio " ) , NULL , 0 , TQT_TQOBJECT ( m_xine ) , TQT_SLOT ( slotMenuAudio ( ) ) , actionCollection ( ) , " dvd_audio " ) ;
new TDE Action( i18n ( " An&gle " ) , NULL , 0 , TQT_TQOBJECT ( m_xine ) , TQT_SLOT ( slotMenuAngle ( ) ) , actionCollection ( ) , " dvd_angle " ) ;
new TDE Action( i18n ( " &Part " ) , NULL , 0 , TQT_TQOBJECT ( m_xine ) , TQT_SLOT ( slotMenuPart ( ) ) , actionCollection ( ) , " dvd_part " ) ;
m_dvdTitles = new TDE SelectAction( i18n ( " Titles " ) , 0 , actionCollection ( ) , " dvd_title_menu " ) ;
connect ( m_dvdTitles , TQT_SIGNAL ( activated ( const TQString & ) ) , TQT_TQOBJECT ( this ) , TQT_SLOT ( slotSetDVDTitle ( const TQString & ) ) ) ;
m_dvdChapters = new K SelectAction( i18n ( " Chapters " ) , 0 , actionCollection ( ) , " dvd_chapter_menu " ) ;
m_dvdChapters = new TDE SelectAction( i18n ( " Chapters " ) , 0 , actionCollection ( ) , " dvd_chapter_menu " ) ;
connect ( m_dvdChapters , TQT_SIGNAL ( activated ( const TQString & ) ) , TQT_TQOBJECT ( this ) , TQT_SLOT ( slotSetDVDChapter ( const TQString & ) ) ) ;
m_dvdAngles = new K SelectAction( i18n ( " Angles " ) , 0 , actionCollection ( ) , " dvd_angle_menu " ) ;
m_dvdAngles = new TDE SelectAction( i18n ( " Angles " ) , 0 , actionCollection ( ) , " dvd_angle_menu " ) ;
connect ( m_dvdAngles , TQT_SIGNAL ( activated ( const TQString & ) ) , TQT_TQOBJECT ( this ) , TQT_SLOT ( slotSetDVDAngle ( const TQString & ) ) ) ;
new K Action( i18n ( " Track &Info " ) , " info " , 0 , TQT_TQOBJECT ( this ) , TQT_SLOT ( slotInfo ( ) ) , actionCollection ( ) , " player_track_info " ) ;
new K Action( i18n ( " Effect &Plugins... " ) , " filter " , Key_X , TQT_TQOBJECT ( this ) , TQT_SLOT ( slotFilterDialog ( ) ) , actionCollection ( ) , " player_post_filters " ) ;
new TDE Action( i18n ( " Track &Info " ) , " info " , 0 , TQT_TQOBJECT ( this ) , TQT_SLOT ( slotInfo ( ) ) , actionCollection ( ) , " player_track_info " ) ;
new TDE Action( i18n ( " Effect &Plugins... " ) , " filter " , Key_X , TQT_TQOBJECT ( this ) , TQT_SLOT ( slotFilterDialog ( ) ) , actionCollection ( ) , " player_post_filters " ) ;
/* settings menu */
new K Action( i18n ( " &xine Engine Parameters " ) , " edit " , 0 , TQT_TQOBJECT ( this ) , TQT_SLOT ( slotConfigXine ( ) ) , actionCollection ( ) , " settings_xine_parameter " ) ;
new TDE Action( i18n ( " &xine Engine Parameters " ) , " edit " , 0 , TQT_TQOBJECT ( this ) , TQT_SLOT ( slotConfigXine ( ) ) , actionCollection ( ) , " settings_xine_parameter " ) ;
m_volume = new VolumeSlider ( ) ;
TQToolTip : : add