You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
148 lines
4.1 KiB
148 lines
4.1 KiB
15 years ago
|
/* This file is part of the KDE Project
|
||
|
Copyright (c) 2005 Jean-Remy Falleri <jr.falleri@laposte.net>
|
||
|
Copyright (c) 2005 Kévin Ottens <ervin ipsquad net>
|
||
|
|
||
|
This library is free software; you can redistribute it and/or
|
||
|
modify it under the terms of the GNU Library General Public
|
||
|
License version 2 as published by the Free Software Foundation.
|
||
|
|
||
|
This library is distributed in the hope that it will be useful,
|
||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||
|
Library General Public License for more details.
|
||
|
|
||
|
You should have received a copy of the GNU Library General Public License
|
||
|
along with this library; see the file COPYING.LIB. If not, write to
|
||
|
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
||
|
Boston, MA 02110-1301, USA.
|
||
|
*/
|
||
|
|
||
|
#include "notificationdialog.h"
|
||
|
#include <qlayout.h>
|
||
|
|
||
|
#include <krun.h>
|
||
|
#include <klocale.h>
|
||
|
#include <kstandarddirs.h>
|
||
|
#include <kio/global.h>
|
||
|
#include <klistbox.h>
|
||
|
#include <qlabel.h>
|
||
|
#include <qcheckbox.h>
|
||
|
#include <qpushbutton.h>
|
||
|
|
||
|
#include "actionlistboxitem.h"
|
||
|
#include "notificationdialogview.h"
|
||
|
|
||
|
NotificationDialog::NotificationDialog( KFileItem medium, NotifierSettings *settings,
|
||
|
QWidget* parent, const char* name )
|
||
|
: KDialogBase( parent, name, false, i18n( "Medium Detected" ), Ok|Cancel|User1, Ok, true),
|
||
|
m_medium(medium), m_settings( settings )
|
||
|
{
|
||
|
setCaption( KIO::decodeFileName(m_medium.name()) );
|
||
|
clearWState( WState_Polished );
|
||
|
|
||
|
QWidget *page = new QWidget( this );
|
||
|
setMainWidget(page);
|
||
|
QVBoxLayout *topLayout = new QVBoxLayout( page, 0, spacingHint() );
|
||
|
|
||
|
m_view = new NotificationDialogView( page );
|
||
|
|
||
|
topLayout->addWidget(m_view);
|
||
|
m_view->iconLabel->setPixmap( m_medium.pixmap(64) );
|
||
|
m_view->mimetypeLabel->setText( i18n( "<b>Medium type:</b>" ) + " "
|
||
|
+ m_medium.mimeTypePtr()->comment() );
|
||
|
|
||
|
updateActionsListBox();
|
||
|
|
||
|
resize( QSize(400,400).expandedTo( minimumSizeHint() ) );
|
||
|
|
||
|
|
||
|
m_actionWatcher = new KDirWatch();
|
||
|
QString services_dir
|
||
|
= locateLocal( "data", "konqueror/servicemenus", true );
|
||
|
m_actionWatcher->addDir( services_dir );
|
||
|
|
||
|
setButtonText( User1, i18n("Configure...") );
|
||
|
|
||
|
connect( m_actionWatcher, SIGNAL( dirty( const QString & ) ),
|
||
|
this, SLOT( slotActionsChanged( const QString & ) ) );
|
||
|
connect( this , SIGNAL( okClicked() ),
|
||
|
this, SLOT( slotOk() ) );
|
||
|
connect( this, SIGNAL( user1Clicked() ),
|
||
|
this, SLOT( slotConfigure() ) );
|
||
|
connect( m_view->actionsList, SIGNAL( doubleClicked ( QListBoxItem*, const QPoint & ) ),
|
||
|
this, SLOT( slotOk() ) );
|
||
|
|
||
|
connect( this, SIGNAL( finished() ),
|
||
|
this, SLOT( delayedDestruct() ) );
|
||
|
|
||
|
m_actionWatcher->startScan();
|
||
|
QPushButton * btn = actionButton( Ok );
|
||
|
btn->setFocus();
|
||
|
}
|
||
|
|
||
|
NotificationDialog::~NotificationDialog()
|
||
|
{
|
||
|
delete m_actionWatcher;
|
||
|
delete m_settings;
|
||
|
}
|
||
|
|
||
|
void NotificationDialog::updateActionsListBox()
|
||
|
{
|
||
|
m_view->actionsList->clear();
|
||
|
|
||
|
QValueList<NotifierAction*> actions
|
||
|
= m_settings->actionsForMimetype( m_medium.mimetype() );
|
||
|
|
||
|
QValueList<NotifierAction*>::iterator it = actions.begin();
|
||
|
QValueList<NotifierAction*>::iterator end = actions.end();
|
||
|
|
||
|
for ( ; it!=end; ++it )
|
||
|
{
|
||
|
new ActionListBoxItem( *it, m_medium.mimetype(),
|
||
|
m_view->actionsList );
|
||
|
}
|
||
|
|
||
|
m_view->actionsList->setSelected( 0, true );
|
||
|
}
|
||
|
|
||
|
|
||
|
void NotificationDialog::slotActionsChanged(const QString &/*dir*/)
|
||
|
{
|
||
|
m_settings->reload();
|
||
|
updateActionsListBox();
|
||
|
}
|
||
|
|
||
|
void NotificationDialog::slotOk()
|
||
|
{
|
||
|
QListBoxItem *item = m_view->actionsList->selectedItem();
|
||
|
|
||
|
if ( item != 0L )
|
||
|
{
|
||
|
ActionListBoxItem *action_item
|
||
|
= static_cast<ActionListBoxItem*>( item );
|
||
|
NotifierAction *action = action_item->action();
|
||
|
|
||
|
launchAction( action );
|
||
|
}
|
||
|
}
|
||
|
|
||
|
void NotificationDialog::launchAction( NotifierAction *action )
|
||
|
{
|
||
|
if ( m_view->autoActionCheck->isChecked() )
|
||
|
{
|
||
|
m_settings->setAutoAction( m_medium.mimetype(), action );
|
||
|
m_settings->save();
|
||
|
}
|
||
|
|
||
|
action->execute(m_medium);
|
||
|
|
||
|
QDialog::accept();
|
||
|
}
|
||
|
|
||
|
void NotificationDialog::slotConfigure()
|
||
|
{
|
||
|
KRun::runCommand("kcmshell media");
|
||
|
}
|
||
|
|
||
|
#include "notificationdialog.moc"
|