summaryrefslogtreecommitdiffstats
path: root/src/rip
diff options
context:
space:
mode:
Diffstat (limited to 'src/rip')
-rw-r--r--src/rip/k3baudiocdlistview.h2
-rw-r--r--src/rip/k3baudiocdview.cpp30
-rw-r--r--src/rip/k3baudiocdview.h14
-rw-r--r--src/rip/k3baudioprojectconvertingdialog.cpp8
-rw-r--r--src/rip/k3baudiorippingdialog.cpp10
-rw-r--r--src/rip/k3baudiorippingdialog.h4
-rw-r--r--src/rip/k3bvideocdrippingdialog.h2
-rw-r--r--src/rip/k3bvideocdview.cpp22
-rw-r--r--src/rip/k3bvideocdview.h14
-rw-r--r--src/rip/videodvd/base_k3bvideodvdrippingwidget.ui2
-rw-r--r--src/rip/videodvd/k3bvideodvdrippingview.cpp22
-rw-r--r--src/rip/videodvd/k3bvideodvdrippingview.h14
12 files changed, 72 insertions, 72 deletions
diff --git a/src/rip/k3baudiocdlistview.h b/src/rip/k3baudiocdlistview.h
index 658222e..bb7c7ea 100644
--- a/src/rip/k3baudiocdlistview.h
+++ b/src/rip/k3baudiocdlistview.h
@@ -35,7 +35,7 @@ class K3bAudioCdListView : public K3bListView
protected:
/**
- * @reimpl from KListView
+ * @reimpl from TDEListView
*/
TQDragObject* dragObject();
diff --git a/src/rip/k3baudiocdview.cpp b/src/rip/k3baudiocdview.cpp
index 7cdf686..d083af6 100644
--- a/src/rip/k3baudiocdview.cpp
+++ b/src/rip/k3baudiocdview.cpp
@@ -121,8 +121,8 @@ K3bAudioCdView::K3bAudioCdView( TQWidget* parent, const char *name )
connect( m_trackView, TQT_SIGNAL(itemRenamed(TQListViewItem*, const TQString&, int)),
this, TQT_SLOT(slotItemRenamed(TQListViewItem*, const TQString&, int)) );
- connect( m_trackView, TQT_SIGNAL(contextMenu(KListView*, TQListViewItem*, const TQPoint&)),
- this, TQT_SLOT(slotContextMenu(KListView*, TQListViewItem*, const TQPoint&)) );
+ connect( m_trackView, TQT_SIGNAL(contextMenu(TDEListView*, TQListViewItem*, const TQPoint&)),
+ this, TQT_SLOT(slotContextMenu(TDEListView*, TQListViewItem*, const TQPoint&)) );
// connect( m_trackView, TQT_SIGNAL(selectionChanged(TQListViewItem*)),
// this, TQT_SLOT(slotTrackSelectionChanged(TQListViewItem*)) );
@@ -224,41 +224,41 @@ void K3bAudioCdView::reloadMedium()
void K3bAudioCdView::initActions()
{
- m_actionCollection = new KActionCollection( this );
+ m_actionCollection = new TDEActionCollection( this );
- KAction* actionSelectAll = new KAction( i18n("Check All"), 0, 0, TQT_TQOBJECT(this),
+ TDEAction* actionSelectAll = new TDEAction( i18n("Check All"), 0, 0, TQT_TQOBJECT(this),
TQT_SLOT(slotCheckAll()), actionCollection(),
"check_all" );
- KAction* actionDeselectAll = new KAction( i18n("Uncheck All"), 0, 0, TQT_TQOBJECT(this),
+ TDEAction* actionDeselectAll = new TDEAction( i18n("Uncheck All"), 0, 0, TQT_TQOBJECT(this),
TQT_SLOT(slotUncheckAll()), actionCollection(),
"uncheck_all" );
- KAction* actionSelect = new KAction( i18n("Check Track"), 0, 0, TQT_TQOBJECT(this),
+ TDEAction* actionSelect = new TDEAction( i18n("Check Track"), 0, 0, TQT_TQOBJECT(this),
TQT_SLOT(slotSelect()), actionCollection(),
"select_track" );
- KAction* actionDeselect = new KAction( i18n("Uncheck Track"), 0, 0, TQT_TQOBJECT(this),
+ TDEAction* actionDeselect = new TDEAction( i18n("Uncheck Track"), 0, 0, TQT_TQOBJECT(this),
TQT_SLOT(slotDeselect()), actionCollection(),
"deselect_track" );
- KAction* actionEditTrackCddbInfo = new KAction( i18n("Edit Track cddb Info"), "edit", 0, TQT_TQOBJECT(this),
+ TDEAction* actionEditTrackCddbInfo = new TDEAction( i18n("Edit Track cddb Info"), "edit", 0, TQT_TQOBJECT(this),
TQT_SLOT(slotEditTrackCddb()), actionCollection(),
"edit_track_cddb" );
- KAction* actionEditAlbumCddbInfo = new KAction( i18n("Edit Album cddb Info"), "edit", 0, TQT_TQOBJECT(this),
+ TDEAction* actionEditAlbumCddbInfo = new TDEAction( i18n("Edit Album cddb Info"), "edit", 0, TQT_TQOBJECT(this),
TQT_SLOT(slotEditAlbumCddb()), actionCollection(),
"edit_album_cddb" );
- KAction* actionStartRip = new KAction( i18n("Start Ripping"), "cddarip", 0, TQT_TQOBJECT(this),
+ TDEAction* actionStartRip = new TDEAction( i18n("Start Ripping"), "cddarip", 0, TQT_TQOBJECT(this),
TQT_SLOT(startRip()), actionCollection(), "start_rip" );
- KAction* actionQueryCddb = new KAction( i18n("Query cddb"), "reload", 0, TQT_TQOBJECT(this),
+ TDEAction* actionQueryCddb = new TDEAction( i18n("Query cddb"), "reload", 0, TQT_TQOBJECT(this),
TQT_SLOT(queryCddb()), actionCollection(), "query_cddb" );
- KAction* actionSaveCddbLocally = new KAction( i18n("Save Cddb Entry Locally"), "filesave", 0, TQT_TQOBJECT(this),
+ TDEAction* actionSaveCddbLocally = new TDEAction( i18n("Save Cddb Entry Locally"), "filesave", 0, TQT_TQOBJECT(this),
TQT_SLOT(slotSaveCddbLocally()), actionCollection(), "save_cddb_local" );
// TODO: set the actions tooltips and whatsthis infos
// setup the popup menu
- m_popupMenu = new KActionMenu( actionCollection(), "popup_menu" );
- KAction* separator = new KActionSeparator( actionCollection(), "separator" );
+ m_popupMenu = new TDEActionMenu( actionCollection(), "popup_menu" );
+ TDEAction* separator = new TDEActionSeparator( actionCollection(), "separator" );
m_popupMenu->insert( actionSelect );
m_popupMenu->insert( actionDeselect );
m_popupMenu->insert( actionSelectAll );
@@ -279,7 +279,7 @@ void K3bAudioCdView::initActions()
}
-void K3bAudioCdView::slotContextMenu( KListView*, TQListViewItem*, const TQPoint& p )
+void K3bAudioCdView::slotContextMenu( TDEListView*, TQListViewItem*, const TQPoint& p )
{
m_popupMenu->popup(p);
}
diff --git a/src/rip/k3baudiocdview.h b/src/rip/k3baudiocdview.h
index 03ec0ed..b86135a 100644
--- a/src/rip/k3baudiocdview.h
+++ b/src/rip/k3baudiocdview.h
@@ -25,11 +25,11 @@
#include <k3bcdtext.h>
class K3bListView;
-class KListView;
+class TDEListView;
class TQListViewItem;
class TQPoint;
-class KActionCollection;
-class KActionMenu;
+class TDEActionCollection;
+class TDEActionMenu;
class K3bCddb;
class TQLabel;
class K3bToolBox;
@@ -50,7 +50,7 @@ class K3bAudioCdView : public K3bMediaContentsView
K3bAudioCdView( TQWidget* parent = 0, const char * name = 0 );
~K3bAudioCdView();
- KActionCollection* actionCollection() const { return m_actionCollection; }
+ TDEActionCollection* actionCollection() const { return m_actionCollection; }
/**
* internal
@@ -61,7 +61,7 @@ class K3bAudioCdView : public K3bMediaContentsView
void queryCddb();
private slots:
- void slotContextMenu( KListView*, TQListViewItem*, const TQPoint& );
+ void slotContextMenu( TDEListView*, TQListViewItem*, const TQPoint& );
void slotItemRenamed( TQListViewItem*, const TQString&, int );
void slotCddbQueryFinished( int );
void slotTrackSelectionChanged( TQListViewItem* );
@@ -88,8 +88,8 @@ class K3bAudioCdView : public K3bMediaContentsView
K3bCddbResultEntry m_cddbInfo;
- KActionCollection* m_actionCollection;
- KActionMenu* m_popupMenu;
+ TDEActionCollection* m_actionCollection;
+ TDEActionMenu* m_popupMenu;
K3bListView* m_trackView;
K3bToolBox* m_toolBox;
diff --git a/src/rip/k3baudioprojectconvertingdialog.cpp b/src/rip/k3baudioprojectconvertingdialog.cpp
index 43fe621..f9bcfdb 100644
--- a/src/rip/k3baudioprojectconvertingdialog.cpp
+++ b/src/rip/k3baudioprojectconvertingdialog.cpp
@@ -241,7 +241,7 @@ void K3bAudioProjectConvertingDialog::refresh()
m_patternWidget->blankReplaceString() );
- (void)new KListViewItem( m_viewTracks,
+ (void)new TDEListViewItem( m_viewTracks,
m_viewTracks->lastItem(),
filename + "." + extension,
m_doc->length().toString(),
@@ -251,7 +251,7 @@ void K3bAudioProjectConvertingDialog::refresh()
if( m_optionWidget->createCueFile() ) {
d->cueFilename = K3b::fixupPath( baseDir + "/" + filename + ".cue" );
- (void)new KListViewItem( m_viewTracks,
+ (void)new TDEListViewItem( m_viewTracks,
m_viewTracks->lastItem(),
filename + ".cue",
"-",
@@ -279,7 +279,7 @@ void K3bAudioProjectConvertingDialog::refresh()
m_patternWidget->replaceBlanks(),
m_patternWidget->blankReplaceString() ) + "." + extension;
- (void)new KListViewItem( m_viewTracks,
+ (void)new TDEListViewItem( m_viewTracks,
m_viewTracks->lastItem(),
filename,
track->length().toString(),
@@ -299,7 +299,7 @@ void K3bAudioProjectConvertingDialog::refresh()
m_patternWidget->replaceBlanks(),
m_patternWidget->blankReplaceString() ) + ".m3u";
- (void)new KListViewItem( m_viewTracks,
+ (void)new TDEListViewItem( m_viewTracks,
m_viewTracks->lastItem(),
filename,
"-",
diff --git a/src/rip/k3baudiorippingdialog.cpp b/src/rip/k3baudiorippingdialog.cpp
index aace387..876d91f 100644
--- a/src/rip/k3baudiorippingdialog.cpp
+++ b/src/rip/k3baudiorippingdialog.cpp
@@ -123,7 +123,7 @@ void K3bAudioRippingDialog::setupGui()
Form1Layout->setSpacing( KDialog::spacingHint() );
Form1Layout->setMargin( 0 );
- m_viewTracks = new KListView( frame, "m_viewTracks" );
+ m_viewTracks = new TDEListView( frame, "m_viewTracks" );
m_viewTracks->addColumn(i18n( "Filename") );
m_viewTracks->addColumn(i18n( "Length") );
m_viewTracks->addColumn(i18n( "File Size") );
@@ -330,7 +330,7 @@ void K3bAudioRippingDialog::refresh()
filename = d->fsInfo.fixupPath( filename );
- (void)new KListViewItem( m_viewTracks,
+ (void)new TDEListViewItem( m_viewTracks,
m_viewTracks->lastItem(),
filename + "." + extension,
K3b::Msf(length).toString(),
@@ -339,7 +339,7 @@ void K3bAudioRippingDialog::refresh()
d->filenames.append( baseDir + "/" + filename + "." + extension );
if( m_optionWidget->createCueFile() )
- (void)new KListViewItem( m_viewTracks,
+ (void)new TDEListViewItem( m_viewTracks,
m_viewTracks->lastItem(),
filename + ".cue",
"-",
@@ -388,7 +388,7 @@ void K3bAudioRippingDialog::refresh()
filename = d->fsInfo.fixupPath( filename );
- (void)new KListViewItem( m_viewTracks,
+ (void)new TDEListViewItem( m_viewTracks,
m_viewTracks->lastItem(),
filename,
trackLength.toString(),
@@ -406,7 +406,7 @@ void K3bAudioRippingDialog::refresh()
m_patternWidget->replaceBlanks(),
m_patternWidget->blankReplaceString() ) + ".m3u";
- (void)new KListViewItem( m_viewTracks,
+ (void)new TDEListViewItem( m_viewTracks,
m_viewTracks->lastItem(),
filename,
"-",
diff --git a/src/rip/k3baudiorippingdialog.h b/src/rip/k3baudiorippingdialog.h
index f660efe..2a77d3f 100644
--- a/src/rip/k3baudiorippingdialog.h
+++ b/src/rip/k3baudiorippingdialog.h
@@ -29,7 +29,7 @@ namespace K3bDevice {
}
-class KListView;
+class TDEListView;
class TQCheckBox;
class TQSpinBox;
class TQComboBox;
@@ -66,7 +66,7 @@ class K3bAudioRippingDialog : public K3bInteractionDialog
K3bCddbResultEntry m_cddbEntry;
TQValueList<int> m_trackNumbers;
- KListView* m_viewTracks;
+ TDEListView* m_viewTracks;
TQComboBox* m_comboParanoiaMode;
TQSpinBox* m_spinRetries;
diff --git a/src/rip/k3bvideocdrippingdialog.h b/src/rip/k3bvideocdrippingdialog.h
index 1d2aafd..454f4c3 100644
--- a/src/rip/k3bvideocdrippingdialog.h
+++ b/src/rip/k3bvideocdrippingdialog.h
@@ -23,7 +23,7 @@
#include <k3bdiskinfo.h>
#include "k3bvideocdrippingoptions.h"
-class KListView;
+class TDEListView;
class TQCheckBox;
class TQLabel;
class TQSpinBox;
diff --git a/src/rip/k3bvideocdview.cpp b/src/rip/k3bvideocdview.cpp
index 1924d23..c7799bd 100644
--- a/src/rip/k3bvideocdview.cpp
+++ b/src/rip/k3bvideocdview.cpp
@@ -173,8 +173,8 @@ K3bVideoCdView::K3bVideoCdView( TQWidget* parent, const char *name )
m_trackView->setItemsRenameable( false );
m_trackView->setRootIsDecorated( true );
- connect( m_trackView, TQT_SIGNAL( contextMenu( KListView*, TQListViewItem*, const TQPoint& ) ),
- this, TQT_SLOT( slotContextMenu( KListView*, TQListViewItem*, const TQPoint& ) ) );
+ connect( m_trackView, TQT_SIGNAL( contextMenu( TDEListView*, TQListViewItem*, const TQPoint& ) ),
+ this, TQT_SLOT( slotContextMenu( TDEListView*, TQListViewItem*, const TQPoint& ) ) );
connect( m_trackView, TQT_SIGNAL( selectionChanged( TQListViewItem* ) ),
this, TQT_SLOT( slotTrackSelectionChanged( TQListViewItem* ) ) );
connect( m_trackView, TQT_SIGNAL( clicked( TQListViewItem* ) ),
@@ -320,28 +320,28 @@ void K3bVideoCdView::updateDisplay()
void K3bVideoCdView::initActions()
{
- m_actionCollection = new KActionCollection( this );
+ m_actionCollection = new TDEActionCollection( this );
- KAction* actionSelectAll = KStdAction::selectAll( TQT_TQOBJECT(this), TQT_SLOT( slotSelectAll() ),
+ TDEAction* actionSelectAll = KStdAction::selectAll( TQT_TQOBJECT(this), TQT_SLOT( slotSelectAll() ),
m_actionCollection, "select_all" );
- KAction* actionDeselectAll = KStdAction::deselect( TQT_TQOBJECT(this), TQT_SLOT( slotDeselectAll() ),
+ TDEAction* actionDeselectAll = KStdAction::deselect( TQT_TQOBJECT(this), TQT_SLOT( slotDeselectAll() ),
m_actionCollection, "deselect_all" );
actionDeselectAll->setText( i18n( "Dese&lect All" ) );
- KAction* actionSelect = new KAction( i18n( "Select Track" ), 0, 0, TQT_TQOBJECT(this),
+ TDEAction* actionSelect = new TDEAction( i18n( "Select Track" ), 0, 0, TQT_TQOBJECT(this),
TQT_SLOT( slotSelect() ), actionCollection(),
"select_track" );
- KAction* actionDeselect = new KAction( i18n( "Deselect Track" ), 0, 0, TQT_TQOBJECT(this),
+ TDEAction* actionDeselect = new TDEAction( i18n( "Deselect Track" ), 0, 0, TQT_TQOBJECT(this),
TQT_SLOT( slotDeselect() ), actionCollection(),
"deselect_track" );
- KAction* actionStartRip = new KAction( i18n( "Start Ripping" ), "run", 0, TQT_TQOBJECT(this),
+ TDEAction* actionStartRip = new TDEAction( i18n( "Start Ripping" ), "run", 0, TQT_TQOBJECT(this),
TQT_SLOT( startRip() ), actionCollection(), "start_rip" );
// TODO: set the actions tooltips and whatsthis infos
// setup the popup menu
- m_popupMenu = new KActionMenu( actionCollection(), "popup_menu" );
- KAction* separator = new KActionSeparator( actionCollection(), "separator" );
+ m_popupMenu = new TDEActionMenu( actionCollection(), "popup_menu" );
+ TDEAction* separator = new TDEActionSeparator( actionCollection(), "separator" );
m_popupMenu->insert( actionSelect );
m_popupMenu->insert( actionDeselect );
m_popupMenu->insert( actionSelectAll );
@@ -354,7 +354,7 @@ void K3bVideoCdView::initActions()
}
-void K3bVideoCdView::slotContextMenu( KListView*, TQListViewItem*, const TQPoint& p )
+void K3bVideoCdView::slotContextMenu( TDEListView*, TQListViewItem*, const TQPoint& p )
{
m_popupMenu->popup( p );
}
diff --git a/src/rip/k3bvideocdview.h b/src/rip/k3bvideocdview.h
index a7fab7f..7e8a992 100644
--- a/src/rip/k3bvideocdview.h
+++ b/src/rip/k3bvideocdview.h
@@ -24,9 +24,9 @@
#include "k3bvideocdinfo.h"
-class KActionCollection;
-class KActionMenu;
-class KListView;
+class TDEActionCollection;
+class TDEActionMenu;
+class TDEListView;
class TQLabel;
class TQListViewItem;
@@ -52,13 +52,13 @@ class K3bVideoCdView : public K3bMediaContentsView
K3bVideoCdView( TQWidget* parent = 0, const char * name = 0 );
~K3bVideoCdView();
- KActionCollection* actionCollection() const
+ TDEActionCollection* actionCollection() const
{
return m_actionCollection;
}
private slots:
- void slotContextMenu( KListView*, TQListViewItem*, const TQPoint& );
+ void slotContextMenu( TDEListView*, TQListViewItem*, const TQPoint& );
void slotTrackSelectionChanged( TQListViewItem* );
void slotStateChanged( TQListViewItem* );
void slotVideoCdInfoFinished( bool );
@@ -83,8 +83,8 @@ class K3bVideoCdView : public K3bMediaContentsView
K3bDevice::Toc m_toc;
- KActionCollection* m_actionCollection;
- KActionMenu* m_popupMenu;
+ TDEActionCollection* m_actionCollection;
+ TDEActionMenu* m_popupMenu;
K3bVideoCdInfoResult m_videocdinfoResult;
K3bVideoCdInfo* m_videocdinfo;
diff --git a/src/rip/videodvd/base_k3bvideodvdrippingwidget.ui b/src/rip/videodvd/base_k3bvideodvdrippingwidget.ui
index 5c22e83..3195f3c 100644
--- a/src/rip/videodvd/base_k3bvideodvdrippingwidget.ui
+++ b/src/rip/videodvd/base_k3bvideodvdrippingwidget.ui
@@ -28,7 +28,7 @@
<string>Please select the audio streams you want to include in every ripped title</string>
</property>
</widget>
- <widget class="KListView">
+ <widget class="TDEListView">
<property name="name">
<cstring>m_titleView</cstring>
</property>
diff --git a/src/rip/videodvd/k3bvideodvdrippingview.cpp b/src/rip/videodvd/k3bvideodvdrippingview.cpp
index ca9e467..9567afd 100644
--- a/src/rip/videodvd/k3bvideodvdrippingview.cpp
+++ b/src/rip/videodvd/k3bvideodvdrippingview.cpp
@@ -62,8 +62,8 @@ K3bVideoDVDRippingView::K3bVideoDVDRippingView( TQWidget* parent, const char * n
// ----------------------------------------------------------------------------------
m_titleView = new K3bVideoDVDRippingTitleListView( mainWidget() );
- connect( m_titleView, TQT_SIGNAL(contextMenu(KListView*, TQListViewItem*, const TQPoint&)),
- this, TQT_SLOT(slotContextMenu(KListView*, TQListViewItem*, const TQPoint&)) );
+ connect( m_titleView, TQT_SIGNAL(contextMenu(TDEListView*, TQListViewItem*, const TQPoint&)),
+ this, TQT_SLOT(slotContextMenu(TDEListView*, TQListViewItem*, const TQPoint&)) );
// general layout
// ----------------------------------------------------------------------------------
@@ -176,7 +176,7 @@ void K3bVideoDVDRippingView::slotStartRipping()
}
-void K3bVideoDVDRippingView::slotContextMenu( KListView*, TQListViewItem*, const TQPoint& p )
+void K3bVideoDVDRippingView::slotContextMenu( TDEListView*, TQListViewItem*, const TQPoint& p )
{
m_popupMenu->popup(p);
}
@@ -216,28 +216,28 @@ void K3bVideoDVDRippingView::slotUncheck()
void K3bVideoDVDRippingView::initActions()
{
- m_actionCollection = new KActionCollection( this );
+ m_actionCollection = new TDEActionCollection( this );
- KAction* actionSelectAll = new KAction( i18n("Check All"), 0, 0, TQT_TQOBJECT(this),
+ TDEAction* actionSelectAll = new TDEAction( i18n("Check All"), 0, 0, TQT_TQOBJECT(this),
TQT_SLOT(slotCheckAll()), actionCollection(),
"check_all" );
- KAction* actionDeselectAll = new KAction( i18n("Uncheck All"), 0, 0, TQT_TQOBJECT(this),
+ TDEAction* actionDeselectAll = new TDEAction( i18n("Uncheck All"), 0, 0, TQT_TQOBJECT(this),
TQT_SLOT(slotUncheckAll()), actionCollection(),
"uncheck_all" );
- KAction* actionSelect = new KAction( i18n("Check Track"), 0, 0, TQT_TQOBJECT(this),
+ TDEAction* actionSelect = new TDEAction( i18n("Check Track"), 0, 0, TQT_TQOBJECT(this),
TQT_SLOT(slotCheck()), actionCollection(),
"select_track" );
- KAction* actionDeselect = new KAction( i18n("Uncheck Track"), 0, 0, TQT_TQOBJECT(this),
+ TDEAction* actionDeselect = new TDEAction( i18n("Uncheck Track"), 0, 0, TQT_TQOBJECT(this),
TQT_SLOT(slotUncheck()), actionCollection(),
"deselect_track" );
- KAction* actionStartRip = new KAction( i18n("Start Ripping"), "gear", 0, TQT_TQOBJECT(this),
+ TDEAction* actionStartRip = new TDEAction( i18n("Start Ripping"), "gear", 0, TQT_TQOBJECT(this),
TQT_SLOT(slotStartRipping()), m_actionCollection, "start_rip" );
actionStartRip->setToolTip( i18n("Open the Video DVD ripping dialog") );
// setup the popup menu
- m_popupMenu = new KActionMenu( actionCollection(), "popup_menu" );
- KAction* separator = new KActionSeparator( actionCollection(), "separator" );
+ m_popupMenu = new TDEActionMenu( actionCollection(), "popup_menu" );
+ TDEAction* separator = new TDEActionSeparator( actionCollection(), "separator" );
m_popupMenu->insert( actionSelect );
m_popupMenu->insert( actionDeselect );
m_popupMenu->insert( actionSelectAll );
diff --git a/src/rip/videodvd/k3bvideodvdrippingview.h b/src/rip/videodvd/k3bvideodvdrippingview.h
index b0f2b64..a7820ca 100644
--- a/src/rip/videodvd/k3bvideodvdrippingview.h
+++ b/src/rip/videodvd/k3bvideodvdrippingview.h
@@ -23,9 +23,9 @@
class K3bVideoDVDRippingTitleListView;
class K3bToolBox;
class TQLabel;
-class KActionCollection;
-class KActionMenu;
-class KListView;
+class TDEActionCollection;
+class TDEActionMenu;
+class TDEListView;
class TQListViewItem;
class K3bVideoDVDRippingView : public K3bMediaContentsView
@@ -37,12 +37,12 @@ class K3bVideoDVDRippingView : public K3bMediaContentsView
K3bVideoDVDRippingView( TQWidget* parent = 0, const char * name = 0 );
~K3bVideoDVDRippingView();
- KActionCollection* actionCollection() const { return m_actionCollection; }
+ TDEActionCollection* actionCollection() const { return m_actionCollection; }
private slots:
void slotStartRipping();
- void slotContextMenu( KListView*, TQListViewItem*, const TQPoint& );
+ void slotContextMenu( TDEListView*, TQListViewItem*, const TQPoint& );
void slotCheckAll();
void slotUncheckAll();
@@ -54,8 +54,8 @@ class K3bVideoDVDRippingView : public K3bMediaContentsView
void enableInteraction( bool enable );
void initActions();
- KActionCollection* m_actionCollection;
- KActionMenu* m_popupMenu;
+ TDEActionCollection* m_actionCollection;
+ TDEActionMenu* m_popupMenu;
K3bToolBox* m_toolBox;
TQLabel* m_labelLength;