@ -113,7 +113,7 @@ soundKonverter::soundKonverter()
options = new Options ( config , i18n ( " Choose your prefered output options and click on \" Add files ... \" ! " ) , widget , " options " ) ;
options = new Options ( config , i18n ( " Choose your prefered output options and click on \" Add files ... \" ! " ) , widget , " options " ) ;
fileList = new FileList ( cdManager , tagEngine , config , options , logger , widget , " fileList " ) ;
fileList = new FileList ( cdManager , tagEngine , config , options , logger , widget , " fileList " ) ;
startAction = new TDEAction ( i18n ( " &Start conversion " ) , " run" , 0 , TQT_TQOBJECT ( fileList ) , TQT_SLOT ( startConversion ( ) ) , actionCollection ( ) , " start " ) ;
startAction = new TDEAction ( i18n ( " &Start conversion " ) , " system- run" , 0 , TQT_TQOBJECT ( fileList ) , TQT_SLOT ( startConversion ( ) ) , actionCollection ( ) , " start " ) ;
startAction - > setEnabled ( false ) ;
startAction - > setEnabled ( false ) ;
new TDEAction ( i18n ( " &Replay Gain Tool ... " ) , " soundkonverter_replaygain " , CTRL + Key_R , TQT_TQOBJECT ( this ) , TQT_SLOT ( showReplayGainScanner ( ) ) , actionCollection ( ) , " replaygainscanner " ) ;
new TDEAction ( i18n ( " &Replay Gain Tool ... " ) , " soundkonverter_replaygain " , CTRL + Key_R , TQT_TQOBJECT ( this ) , TQT_SLOT ( showReplayGainScanner ( ) ) , actionCollection ( ) , " replaygainscanner " ) ;
//new TDEAction( i18n("R&epair Tool ..."), "soundkonverter_repair", CTRL+Key_E, TQT_TQOBJECT(this), TQT_SLOT(showRepairTool()), actionCollection(), "repairtool" );
//new TDEAction( i18n("R&epair Tool ..."), "soundkonverter_repair", CTRL+Key_E, TQT_TQOBJECT(this), TQT_SLOT(showRepairTool()), actionCollection(), "repairtool" );
@ -121,10 +121,10 @@ soundKonverter::soundKonverter()
new TDEAction ( i18n ( " Show &Log ... " ) , " view_text " , CTRL + Key_L , TQT_TQOBJECT ( this ) , TQT_SLOT ( showLogViewer ( ) ) , actionCollection ( ) , " log " ) ;
new TDEAction ( i18n ( " Show &Log ... " ) , " view_text " , CTRL + Key_L , TQT_TQOBJECT ( this ) , TQT_SLOT ( showLogViewer ( ) ) , actionCollection ( ) , " log " ) ;
// new TDEAction( i18n("About &Plugins ..."), "connect_creating", CTRL+Key_P, TQT_TQOBJECT(this), TQT_SLOT(showAboutPlugins()), actionCollection(), "about_plugins" );
// new TDEAction( i18n("About &Plugins ..."), "connect_creating", CTRL+Key_P, TQT_TQOBJECT(this), TQT_SLOT(showAboutPlugins()), actionCollection(), "about_plugins" );
stopAction = new TDEAction ( i18n ( " S&top after current file is complete " ) , " stop" , CTRL + Key_O , TQT_TQOBJECT ( fileList ) , TQT_SLOT ( stopConversion ( ) ) , actionCollection ( ) , " stop " ) ;
stopAction = new TDEAction ( i18n ( " S&top after current file is complete " ) , " process- stop" , CTRL + Key_O , TQT_TQOBJECT ( fileList ) , TQT_SLOT ( stopConversion ( ) ) , actionCollection ( ) , " stop " ) ;
continueAction = new TDEAction ( i18n ( " &Continue after current file is complete " ) , " run" , CTRL + Key_T , TQT_TQOBJECT ( fileList ) , TQT_SLOT ( continueConversion ( ) ) , actionCollection ( ) , " continue " ) ;
continueAction = new TDEAction ( i18n ( " &Continue after current file is complete " ) , " system- run" , CTRL + Key_T , TQT_TQOBJECT ( fileList ) , TQT_SLOT ( continueConversion ( ) ) , actionCollection ( ) , " continue " ) ;
killAction = new TDEAction ( i18n ( " Stop &immediately " ) , " exi t" , CTRL + Key_K , TQT_TQOBJECT ( fileList ) , TQT_SLOT ( killConversion ( ) ) , actionCollection ( ) , " kill " ) ;
killAction = new TDEAction ( i18n ( " Stop &immediately " ) , " system-log-ou t" , CTRL + Key_K , TQT_TQOBJECT ( fileList ) , TQT_SLOT ( killConversion ( ) ) , actionCollection ( ) , " kill " ) ;
stopActionMenu = new TDEActionMenu ( i18n ( " Stop " ) , " stop" , actionCollection ( ) , " stopMenu " ) ;
stopActionMenu = new TDEActionMenu ( i18n ( " Stop " ) , " process- stop" , actionCollection ( ) , " stopMenu " ) ;
stopActionMenu - > setDelayed ( false ) ;
stopActionMenu - > setDelayed ( false ) ;
stopActionMenu - > setEnabled ( false ) ;
stopActionMenu - > setEnabled ( false ) ;
// stopActionMenu->insert( stopAction );
// stopActionMenu->insert( stopAction );
@ -243,7 +243,7 @@ soundKonverter::soundKonverter()
addBox - > addSpacing ( 18 ) ;
addBox - > addSpacing ( 18 ) ;
pStart = new KPushButton ( iconLoader - > loadIcon ( " run" , TDEIcon : : Small ) , i18n ( " Start " ) , widget , " pStart " ) ;
pStart = new KPushButton ( iconLoader - > loadIcon ( " system- run" , TDEIcon : : Small ) , i18n ( " Start " ) , widget , " pStart " ) ;
pStart - > setFixedHeight ( pStart - > size ( ) . height ( ) ) ;
pStart - > setFixedHeight ( pStart - > size ( ) . height ( ) ) ;
pStart - > setEnabled ( false ) ;
pStart - > setEnabled ( false ) ;
addBox - > addWidget ( pStart ) ;
addBox - > addWidget ( pStart ) ;
@ -251,7 +251,7 @@ soundKonverter::soundKonverter()
TQT_TQOBJECT ( fileList ) , TQT_SLOT ( startConversion ( ) )
TQT_TQOBJECT ( fileList ) , TQT_SLOT ( startConversion ( ) )
) ;
) ;
pStop = new KPushButton ( iconLoader - > loadIcon ( " stop" , TDEIcon : : Small ) , i18n ( " Stop " ) , widget , " pStop " ) ;
pStop = new KPushButton ( iconLoader - > loadIcon ( " process- stop" , TDEIcon : : Small ) , i18n ( " Stop " ) , widget , " pStop " ) ;
pStop - > setFixedHeight ( pStop - > size ( ) . height ( ) ) ;
pStop - > setFixedHeight ( pStop - > size ( ) . height ( ) ) ;
pStop - > hide ( ) ;
pStop - > hide ( ) ;
pStop - > setPopup ( stopActionMenu - > popupMenu ( ) ) ;
pStop - > setPopup ( stopActionMenu - > popupMenu ( ) ) ;