/* * * $Id: k3bmovixview.cpp 619556 2007-01-03 17:38:12Z trueg $ * Copyright (C) 2003 Sebastian Trueg * * This file is part of the K3b project. * Copyright (C) 1998-2007 Sebastian Trueg * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * See the file "COPYING" for the exact licensing terms. */ #include "k3bmovixview.h" #include "k3bmovixdoc.h" #include "k3bmovixlistview.h" #include "k3bmovixburndialog.h" #include "k3bmovixfileitem.h" #include #include #include #include #include #include #include #include #include #include #include #include #include #include K3bMovixView::K3bMovixView( K3bMovixDoc* doc, TQWidget* parent, const char* name ) : K3bView( doc, parent, name ), m_doc(doc) { m_listView = new K3bMovixListView( m_doc, this ); setMainWidget( m_listView ); connect( m_listView, TQT_SIGNAL(contextMenuRequested( TQListViewItem*, const TQPoint& , int )), this, TQT_SLOT(slotContextMenuRequested(TQListViewItem*, const TQPoint& , int )) ); // setup actions m_actionProperties = new KAction( i18n("Properties"), "misc", 0, TQT_TQOBJECT(this), TQT_SLOT(showPropertiesDialog()), actionCollection(), "movix_show_props" ); m_actionRemove = new KAction( i18n( "Remove" ), "editdelete", Key_Delete, TQT_TQOBJECT(this), TQT_SLOT(slotRemoveItems()), actionCollection(), "movix_remove_item" ); m_actionRemoveSubTitle = new KAction( i18n( "Remove Subtitle File" ), "editdelete", 0, TQT_TQOBJECT(this), TQT_SLOT(slotRemoveSubTitleItems()), actionCollection(), "movix_remove_subtitle_item" ); m_actionAddSubTitle = new KAction( i18n("Add Subtitle File..."), "", 0, TQT_TQOBJECT(this), TQT_SLOT(slotAddSubTitleFile()), actionCollection(), "movix_add_subtitle" ); m_popupMenu = new KPopupMenu( this ); m_actionRemove->plug( m_popupMenu ); m_actionRemoveSubTitle->plug( m_popupMenu ); m_actionAddSubTitle->plug( m_popupMenu ); m_popupMenu->insertSeparator(); m_actionProperties->plug( m_popupMenu ); m_popupMenu->insertSeparator(); // k3bMain()->actionCollection()->action("file_burn")->plug( m_popupMenu ); addPluginButtons( K3bProjectPlugin::MOVIX_CD ); toolBox()->addStretch(); m_volumeIDEdit = new TQLineEdit( doc->isoOptions().volumeID(), toolBox() ); toolBox()->addLabel( i18n("Volume Name:") ); toolBox()->addSpacing(); toolBox()->addWidget( m_volumeIDEdit ); connect( m_volumeIDEdit, TQT_SIGNAL(textChanged(const TQString&)), m_doc, TQT_SLOT(setVolumeID(const TQString&)) ); connect( m_doc, TQT_SIGNAL(changed()), TQT_TQOBJECT(this), TQT_SLOT(slotDocChanged()) ); } K3bMovixView::~K3bMovixView() { } void K3bMovixView::slotContextMenuRequested(TQListViewItem* item, const TQPoint& p, int ) { if( item ) { m_actionRemove->setEnabled(true); m_actionRemoveSubTitle->setEnabled( true ); } else { m_actionRemove->setEnabled(false); m_actionRemoveSubTitle->setEnabled( false ); } m_popupMenu->popup( p ); } void K3bMovixView::showPropertiesDialog() { K3bFileItem* dataItem = 0; // get selected item if( K3bMovixListViewItem* viewItem = dynamic_cast( m_listView->selectedItems().first() ) ) { dataItem = viewItem->fileItem(); } if( dataItem ) { K3bDataPropertiesDialog d( dataItem, this ); d.exec(); } else slotProperties(); } void K3bMovixView::slotRemoveItems() { TQPtrList list = m_listView->selectedItems(); TQPtrListIterator it(list); if( list.isEmpty() ) kdDebug() << "nothing to remove" << endl; for( ; it.current(); ++it ) { K3bMovixListViewItem* vi = static_cast(*it); if( vi->isMovixFileItem() ) m_doc->removeItem( vi->fileItem() ); else m_doc->removeSubTitleItem( ((K3bMovixSubTitleViewItem*)*it)->fileItem() ); } } void K3bMovixView::slotRemoveSubTitleItems() { TQPtrList list = m_listView->selectedItems(); TQPtrListIterator it(list); if( list.isEmpty() ) kdDebug() << "nothing to remove" << endl; for( ; it.current(); ++it ) { K3bMovixListViewItem* vi = static_cast(*it); m_doc->removeSubTitleItem( vi->fileItem() ); } } void K3bMovixView::slotAddSubTitleFile() { TQListViewItem* item = m_listView->selectedItems().first(); if( K3bMovixListViewItem* vi = dynamic_cast(item) ) { KURL url = KFileDialog::getOpenURL(); if( url.isValid() ) { if( url.isLocalFile() ) m_doc->addSubTitleItem( vi->fileItem(), url ); else KMessageBox::error( 0, i18n("K3b currently only supports local files.") ); } } } K3bProjectBurnDialog* K3bMovixView::newBurnDialog( TQWidget* parent, const char* name ) { return new K3bMovixBurnDialog( m_doc, parent, name, true ); } void K3bMovixView::slotDocChanged() { // do not update the editor in case it changed the volume id itself if( m_doc->isoOptions().volumeID() != m_volumeIDEdit->text() ) m_volumeIDEdit->setText( m_doc->isoOptions().volumeID() ); } #include "k3bmovixview.moc"