00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021 #include <qdir.h>
00022
00023 #include <klocale.h>
00024 #include <kapplication.h>
00025 #include <kbookmarkmanager.h>
00026 #include <kdebug.h>
00027 #include <krun.h>
00028 #include <kprotocolinfo.h>
00029 #include <kiconloader.h>
00030 #include <kinputdialog.h>
00031 #include <kglobalsettings.h>
00032 #include <kstandarddirs.h>
00033 #include <kxmlguifactory.h>
00034 #include <kxmlguibuilder.h>
00035 #include <kparts/componentfactory.h>
00036
00037 #include <assert.h>
00038
00039 #include <kfileshare.h>
00040 #include <kprocess.h>
00041
00042 #include "kpropertiesdialog.h"
00043 #include "knewmenu.h"
00044 #include "konq_popupmenu.h"
00045 #include "konq_operations.h"
00046 #include <dcopclient.h>
00047
00048
00049 class KonqPopupMenuGUIBuilder : public KXMLGUIBuilder
00050 {
00051 public:
00052 KonqPopupMenuGUIBuilder( QPopupMenu *menu )
00053 : KXMLGUIBuilder( 0 )
00054 {
00055 m_menu = menu;
00056 }
00057 virtual ~KonqPopupMenuGUIBuilder()
00058 {
00059 }
00060
00061 virtual QWidget *createContainer( QWidget *parent, int index,
00062 const QDomElement &element,
00063 int &id )
00064 {
00065 if ( !parent && element.attribute( "name" ) == "popupmenu" )
00066 return m_menu;
00067
00068 return KXMLGUIBuilder::createContainer( parent, index, element, id );
00069 }
00070
00071 QPopupMenu *m_menu;
00072 };
00073
00074 class KonqPopupMenu::KonqPopupMenuPrivate
00075 {
00076 public:
00077 KonqPopupMenuPrivate() : m_parentWidget(0)
00078 {
00079 m_itemFlags=KParts::BrowserExtension::DefaultPopupItems;
00080 }
00081 QString m_urlTitle;
00082 QWidget *m_parentWidget;
00083 KParts::BrowserExtension::PopupFlags m_itemFlags;
00084 };
00085
00086 KonqPopupMenu::ProtocolInfo::ProtocolInfo( )
00087 {
00088 m_Reading = false;
00089 m_Writing = false;
00090 m_Deleting = false;
00091 m_Moving = false;
00092 m_TrashIncluded = false;
00093 }
00094 bool KonqPopupMenu::ProtocolInfo::supportsReading() const
00095 {
00096 return m_Reading;
00097 }
00098 bool KonqPopupMenu::ProtocolInfo::supportsWriting() const
00099 {
00100 return m_Writing;
00101 }
00102 bool KonqPopupMenu::ProtocolInfo::supportsDeleting() const
00103 {
00104 return m_Deleting;
00105 }
00106 bool KonqPopupMenu::ProtocolInfo::supportsMoving() const
00107 {
00108 return m_Moving;
00109 }
00110 bool KonqPopupMenu::ProtocolInfo::trashIncluded() const
00111 {
00112 return m_TrashIncluded;
00113 }
00114
00115 KonqPopupMenu::KonqPopupMenu( KBookmarkManager *mgr, const KFileItemList &items,
00116 KURL viewURL,
00117 KActionCollection & actions,
00118 KNewMenu * newMenu,
00119 bool showProperties )
00120 : QPopupMenu( 0L, "konq_popupmenu" ), m_actions( actions ), m_ownActions( static_cast<QObject *>( 0 ), "KonqPopupMenu::m_ownActions" ),
00121 m_pMenuNew( newMenu ), m_sViewURL(viewURL), m_lstItems(items), m_pManager(mgr)
00122
00123 {
00124 KonqPopupFlags kpf = ( showProperties ? ShowProperties : IsLink ) | ShowNewWindow;
00125 init(0, kpf, KParts::BrowserExtension::DefaultPopupItems);
00126 }
00127
00128 KonqPopupMenu::KonqPopupMenu( KBookmarkManager *mgr, const KFileItemList &items,
00129 KURL viewURL,
00130 KActionCollection & actions,
00131 KNewMenu * newMenu,
00132 QWidget * parentWidget,
00133 bool showProperties )
00134 : QPopupMenu( parentWidget, "konq_popupmenu" ), m_actions( actions ), m_ownActions( static_cast<QObject *>( 0 ), "KonqPopupMenu::m_ownActions" ), m_pMenuNew( newMenu ), m_sViewURL(viewURL), m_lstItems(items), m_pManager(mgr)
00135 {
00136 KonqPopupFlags kpf = ( showProperties ? ShowProperties : IsLink ) | ShowNewWindow;
00137 init(parentWidget, kpf, KParts::BrowserExtension::DefaultPopupItems);
00138 }
00139
00140 KonqPopupMenu::KonqPopupMenu( KBookmarkManager *mgr, const KFileItemList &items,
00141 const KURL& viewURL,
00142 KActionCollection & actions,
00143 KNewMenu * newMenu,
00144 QWidget * parentWidget,
00145 KonqPopupFlags kpf,
00146 KParts::BrowserExtension::PopupFlags flags)
00147 : QPopupMenu( parentWidget, "konq_popupmenu" ), m_actions( actions ), m_ownActions( static_cast<QObject *>( 0 ), "KonqPopupMenu::m_ownActions" ), m_pMenuNew( newMenu ), m_sViewURL(viewURL), m_lstItems(items), m_pManager(mgr)
00148 {
00149 init(parentWidget, kpf, flags);
00150 }
00151
00152 void KonqPopupMenu::init (QWidget * parentWidget, KonqPopupFlags kpf, KParts::BrowserExtension::PopupFlags flags)
00153 {
00154 d = new KonqPopupMenuPrivate;
00155 d->m_parentWidget = parentWidget;
00156 d->m_itemFlags = flags;
00157 setup(kpf);
00158 }
00159
00160
00161 int KonqPopupMenu::insertServicesSubmenus(const QMap<QString, ServiceList>& submenus,
00162 QDomElement& menu,
00163 bool isBuiltin)
00164 {
00165 int count = 0;
00166 QMap<QString, ServiceList>::ConstIterator it;
00167
00168 for (it = submenus.begin(); it != submenus.end(); ++it)
00169 {
00170 if (it.data().isEmpty())
00171 {
00172
00173 continue;
00174 }
00175
00176 QDomElement actionSubmenu = m_doc.createElement( "menu" );
00177 actionSubmenu.setAttribute( "name", "actions " + it.key() );
00178 menu.appendChild( actionSubmenu );
00179 QDomElement subtext = m_doc.createElement( "text" );
00180 actionSubmenu.appendChild( subtext );
00181 subtext.appendChild( m_doc.createTextNode( it.key() ) );
00182 count += insertServices(it.data(), actionSubmenu, isBuiltin);
00183 }
00184
00185 return count;
00186 }
00187
00188 int KonqPopupMenu::insertServices(const ServiceList& list,
00189 QDomElement& menu,
00190 bool isBuiltin)
00191 {
00192 static int id = 1000;
00193 int count = 0;
00194
00195 ServiceList::const_iterator it = list.begin();
00196 for( ; it != list.end(); ++it )
00197 {
00198 if ((*it).isEmpty())
00199 {
00200 if (!menu.firstChild().isNull() &&
00201 menu.lastChild().toElement().tagName().lower() != "separator")
00202 {
00203 QDomElement separator = m_doc.createElement( "separator" );
00204 menu.appendChild(separator);
00205 }
00206 continue;
00207 }
00208
00209 if (isBuiltin || (*it).m_display == true)
00210 {
00211 QCString name;
00212 name.setNum( id );
00213 name.prepend( isBuiltin ? "builtinservice_" : "userservice_" );
00214 KAction * act = new KAction( (*it).m_strName, 0,
00215 this, SLOT( slotRunService() ),
00216 &m_ownActions, name );
00217
00218 if ( !(*it).m_strIcon.isEmpty() )
00219 {
00220 QPixmap pix = SmallIcon( (*it).m_strIcon );
00221 act->setIconSet( pix );
00222 }
00223
00224 addAction( act, menu );
00225
00226 m_mapPopupServices[ id++ ] = *it;
00227 ++count;
00228 }
00229 }
00230
00231 return count;
00232 }
00233
00234 bool KonqPopupMenu::KIOSKAuthorizedAction(KConfig& cfg)
00235 {
00236 if ( !cfg.hasKey( "X-KDE-AuthorizeAction") )
00237 {
00238 return true;
00239 }
00240
00241 QStringList list = cfg.readListEntry("X-KDE-AuthorizeAction");
00242 if (kapp && !list.isEmpty())
00243 {
00244 for(QStringList::ConstIterator it = list.begin();
00245 it != list.end();
00246 ++it)
00247 {
00248 if (!kapp->authorize((*it).stripWhiteSpace()))
00249 {
00250 return false;
00251 }
00252 }
00253 }
00254
00255 return true;
00256 }
00257
00258
00259 void KonqPopupMenu::setup(KonqPopupFlags kpf)
00260 {
00261 assert( m_lstItems.count() >= 1 );
00262
00263 m_ownActions.setWidget( this );
00264
00265 bool bIsLink = (kpf & IsLink);
00266 bool currentDir = false;
00267 bool sReading = true;
00268 bool sWriting = true;
00269 bool sDeleting = true;
00270 bool sMoving = true;
00271 m_sMimeType = m_lstItems.first()->mimetype();
00272 mode_t mode = m_lstItems.first()->mode();
00273 bool isDirectory = m_sMimeType == "inode/directory";
00274 bool bTrashIncluded = false;
00275 bool bCanChangeSharing = false;
00276 m_lstPopupURLs.clear();
00277 int id = 0;
00278 if( isDirectory && m_lstItems.first()->isLocalFile())
00279 bCanChangeSharing=true;
00280 setFont(KGlobalSettings::menuFont());
00281 m_pluginList.setAutoDelete( true );
00282 m_ownActions.setHighlightingEnabled( true );
00283
00284 attrName = QString::fromLatin1( "name" );
00285
00286 prepareXMLGUIStuff();
00287 m_builder = new KonqPopupMenuGUIBuilder( this );
00288 m_factory = new KXMLGUIFactory( m_builder );
00289
00290 KURL url;
00291 KFileItemListIterator it ( m_lstItems );
00292
00293 bool devicesFile = false;
00294 for ( ; it.current(); ++it )
00295 {
00296 url = (*it)->url();
00297
00298
00299 m_lstPopupURLs.append( url );
00300
00301
00302 if ( mode != (*it)->mode() )
00303 mode = 0;
00304
00305
00306 if ( m_sMimeType != (*it)->mimetype() )
00307 m_sMimeType = QString::null;
00308
00309 if ( !bTrashIncluded &&
00310 (*it)->url().isLocalFile() &&
00311 (*it)->url().path( 1 ) == KGlobalSettings::trashPath() )
00312 bTrashIncluded = true;
00313
00314 if ( sReading )
00315 sReading = KProtocolInfo::supportsReading( url );
00316
00317 if ( sWriting )
00318 sWriting = KProtocolInfo::supportsWriting( url );
00319
00320 if ( sDeleting )
00321 sDeleting = KProtocolInfo::supportsDeleting( url );
00322
00323 if ( sMoving )
00324 sMoving = KProtocolInfo::supportsMoving( url );
00325 if ( url.protocol().find("device", 0, false)==0)
00326 devicesFile = true;
00327 }
00328
00329 if ( bTrashIncluded )
00330 {
00331 sMoving = false;
00332 sDeleting = false;
00333 }
00334
00335 url = m_sViewURL;
00336 url.cleanPath();
00337
00338 m_info.m_Reading = sReading;
00339 m_info.m_Writing = sWriting;
00340 m_info.m_Deleting = sDeleting;
00341 m_info.m_Moving = sMoving;
00342 m_info.m_TrashIncluded = bTrashIncluded;
00343
00344
00345 if ( m_lstItems.count() == 1 )
00346 {
00347 KURL firstPopupURL ( m_lstItems.first()->url() );
00348 firstPopupURL.cleanPath();
00349
00350
00351 currentDir = firstPopupURL.equals( url, true );
00352 }
00353
00354 bool isCurrentTrash = ( url.isLocalFile() &&
00355 url.path(1) == KGlobalSettings::trashPath() &&
00356 currentDir) ||
00357 ( m_lstItems.count() == 1 && bTrashIncluded );
00358 bool isIntoTrash = url.isLocalFile() && url.path(1).startsWith(KGlobalSettings::trashPath());
00359 clear();
00360
00362
00363 KAction * act;
00364
00365 if (!isCurrentTrash)
00366 addMerge( "konqueror" );
00367
00368 bool isKDesktop = QCString( kapp->name() ) == "kdesktop";
00369 KAction *actNewWindow = 0;
00370
00371 if (( kpf & ShowProperties ) && isKDesktop &&
00372 !kapp->authorize("editable_desktop_icons"))
00373 {
00374 kpf &= ~ShowProperties;
00375 }
00376
00377
00378
00379 if ( kpf & ShowNewWindow )
00380 {
00381 QString openStr = isKDesktop ? i18n( "&Open" ) : i18n( "Open in New &Window" );
00382 actNewWindow = new KAction( openStr, "window_new", 0, this, SLOT( slotPopupNewView() ), &m_ownActions, "newview" );
00383 }
00384
00385 if ( actNewWindow && !isKDesktop )
00386 {
00387 if (isCurrentTrash)
00388 actNewWindow->setStatusText( i18n( "Open the trash in a new window" ) );
00389 else
00390 actNewWindow->setStatusText( i18n( "Open the document in a new window" ) );
00391 }
00392
00393 if ( isCurrentTrash )
00394 {
00395 if (actNewWindow)
00396 {
00397 addAction( actNewWindow );
00398 addSeparator();
00399 }
00400 addGroup( "tabhandling" );
00401
00402 act = new KAction( i18n( "&Empty Trash Bin" ), 0, this, SLOT( slotPopupEmptyTrashBin() ), &m_ownActions, "empytrash" );
00403 addAction( act );
00404 if ( KPropertiesDialog::canDisplay( m_lstItems ) && (kpf & ShowProperties) )
00405 {
00406 act = new KAction( i18n( "&Properties" ), 0, this, SLOT( slotPopupProperties() ),
00407 &m_ownActions, "properties" );
00408 addAction( act );
00409 }
00410 m_factory->addClient( this );
00411 return;
00412 }
00413 else
00414 {
00415 if ( S_ISDIR(mode) && sWriting && !isIntoTrash )
00416 {
00417 if ( currentDir && m_pMenuNew )
00418 {
00419
00420 m_pMenuNew->slotCheckUpToDate();
00421 m_pMenuNew->setPopupFiles( m_lstPopupURLs );
00422
00423 addAction( m_pMenuNew );
00424
00425 addSeparator();
00426 }
00427 else
00428 {
00429 if (d->m_itemFlags & KParts::BrowserExtension::ShowCreateDirectory)
00430 {
00431 KAction *actNewDir = new KAction( i18n( "Create &Folder..." ), "folder_new", 0, this, SLOT( slotPopupNewDir() ), &m_ownActions, "newdir" );
00432 addAction( actNewDir );
00433 addSeparator();
00434 }
00435 }
00436 }
00437
00438 if (d->m_itemFlags & KParts::BrowserExtension::ShowNavigationItems)
00439 {
00440 if (d->m_itemFlags & KParts::BrowserExtension::ShowUp)
00441 addAction( "up" );
00442 addAction( "back" );
00443 addAction( "forward" );
00444 if (d->m_itemFlags & KParts::BrowserExtension::ShowReload)
00445 addAction( "reload" );
00446 addSeparator();
00447 }
00448
00449
00450 if (actNewWindow)
00451 {
00452 addAction( actNewWindow );
00453 addSeparator();
00454 }
00455 addGroup( "tabhandling" );
00456
00457 if ( !bIsLink )
00458 {
00459 if ( !currentDir && sReading && !isIntoTrash &&!devicesFile ) {
00460 if ( sDeleting ) {
00461 addAction( "cut" );
00462 }
00463 addAction( "copy" );
00464 }
00465
00466 if ( S_ISDIR(mode) && sWriting && !isIntoTrash) {
00467 if ( currentDir )
00468 addAction( "paste" );
00469 else
00470 addAction( "pasteto" );
00471 }
00472 if ( !isIntoTrash )
00473 {
00474 if (!currentDir )
00475 {
00476 if ( m_lstItems.count() == 1 && sWriting )
00477 addAction("rename");
00478
00479 if ( sMoving )
00480 addAction( "trash" );
00481
00482 if ( sDeleting ) {
00483 addAction( "del" );
00484 }
00485 }
00486 }
00487 }
00488 addGroup( "editactions" );
00489 }
00490 if ( !isCurrentTrash && !isIntoTrash && (d->m_itemFlags & KParts::BrowserExtension::ShowBookmark))
00491 {
00492 addSeparator();
00493 QString caption;
00494 if (currentDir)
00495 {
00496 bool httpPage = (m_sViewURL.protocol().find("http", 0, false) == 0);
00497 if (httpPage)
00498 caption = i18n("&Bookmark This Page");
00499 else
00500 caption = i18n("&Bookmark This Location");
00501 }
00502 else if (S_ISDIR(mode))
00503 caption = i18n("&Bookmark This Folder");
00504 else if (bIsLink)
00505 caption = i18n("&Bookmark This Link");
00506 else
00507 caption = i18n("&Bookmark This File");
00508
00509 act = new KAction( caption, "bookmark_add", 0, this, SLOT( slotPopupAddToBookmark() ), &m_ownActions, "bookmark_add" );
00510 if (m_lstItems.count() > 1)
00511 act->setEnabled(false);
00512 if (kapp->authorizeKAction("bookmarks"))
00513 addAction( act );
00514 if (bIsLink)
00515 addGroup( "linkactions" );
00516 }
00517
00519
00520 ServiceList builtin;
00521 ServiceList user, userToplevel, userPriority;
00522 QMap<QString, ServiceList> userSubmenus, userToplevelSubmenus, userPrioritySubmenus;
00523
00524 bool isSingleLocal = (m_lstItems.count() == 1 && m_lstItems.first()->url().isLocalFile());
00525
00526 if ( m_sMimeType == "application/x-desktop" && isSingleLocal )
00527 {
00528
00529 builtin = KDEDesktopMimeType::builtinServices( m_lstItems.first()->url() );
00530 user = KDEDesktopMimeType::userDefinedServices( m_lstItems.first()->url().path(), url.isLocalFile() );
00531 }
00532
00533 if ( !isCurrentTrash && !isIntoTrash)
00534 {
00535
00536
00537
00538
00539 if (isDirectory && isSingleLocal)
00540 {
00541 QString dotDirectoryFile = m_lstItems.first()->url().path(1).append(".directory");
00542 KSimpleConfig cfg( dotDirectoryFile, true );
00543 cfg.setDesktopGroup();
00544
00545 if (KIOSKAuthorizedAction(cfg))
00546 {
00547 QString submenuName = cfg.readEntry( "X-KDE-Submenu" );
00548 if (submenuName.isEmpty())
00549 {
00550 user += KDEDesktopMimeType::userDefinedServices( dotDirectoryFile, true );
00551 }
00552 else
00553 {
00554 userSubmenus[submenuName] += KDEDesktopMimeType::userDefinedServices( dotDirectoryFile, true );
00555 }
00556 }
00557 }
00558
00559 QStringList dirs = KGlobal::dirs()->findDirs( "data", "konqueror/servicemenus/" );
00560 QStringList::ConstIterator dIt = dirs.begin();
00561 QStringList::ConstIterator dEnd = dirs.end();
00562
00563 for (; dIt != dEnd; ++dIt )
00564 {
00565 QDir dir( *dIt );
00566
00567 QStringList entries = dir.entryList( "*.desktop", QDir::Files );
00568 QStringList::ConstIterator eIt = entries.begin();
00569 QStringList::ConstIterator eEnd = entries.end();
00570
00571 for (; eIt != eEnd; ++eIt )
00572 {
00573 KSimpleConfig cfg( *dIt + *eIt, true );
00574 cfg.setDesktopGroup();
00575
00576 if (!KIOSKAuthorizedAction(cfg))
00577 {
00578 continue;
00579 }
00580
00581 if ( cfg.hasKey( "X-KDE-ShowIfRunning" ) )
00582 {
00583 QString app = cfg.readEntry( "X-KDE-ShowIfRunning" );
00584 if ( !kapp->dcopClient()->isApplicationRegistered( app.utf8() ) )
00585 continue;
00586 }
00587
00588 if ( cfg.hasKey( "Actions" ) && cfg.hasKey( "ServiceTypes" ) )
00589 {
00590 QStringList types = cfg.readListEntry( "ServiceTypes" );
00591 QStringList excludeTypes = cfg.readListEntry( "ExcludeServiceTypes" );
00592 bool ok = false;
00593 QString mimeGroup = m_sMimeType.left(m_sMimeType.find('/'));
00594
00595
00596 for (QStringList::iterator it = types.begin(); it != types.end(); ++it)
00597 {
00598
00599
00600
00601
00602
00603 if (*it == "all/all" ||
00604 *it == "allfiles" )
00605 {
00606 if ( !excludeTypes.contains( m_sMimeType))
00607 {
00608 ok = true;
00609 break;
00610 }
00611 }
00612
00613
00614 if (*it == "all/allfiles" &&
00615 !isDirectory)
00616 {
00617 if ( !excludeTypes.contains( m_sMimeType))
00618 {
00619 ok = true;
00620 break;
00621 }
00622 }
00623
00624
00625
00626 if (!m_sMimeType.isNull() &&
00627 (*it == m_sMimeType ||
00628 ((*it).right(1) == "*" &&
00629 (*it).left((*it).find('/')) == mimeGroup)))
00630 {
00631 if (!excludeTypes.contains( m_sMimeType))
00632 {
00633 ok = true;
00634 break;
00635 }
00636 }
00637 }
00638
00639 if ( ok )
00640 {
00641
00642
00643 QString priority = cfg.readEntry("X-KDE-Priority");
00644 QString submenuName = cfg.readEntry( "X-KDE-Submenu" );
00645 ServiceList* list = &user;
00646
00647 if (submenuName.isEmpty())
00648 {
00649 if (priority == "TopLevel")
00650 {
00651 list = &userToplevel;
00652 }
00653 else if (priority == "Important")
00654 {
00655 list = &userPriority;
00656 }
00657 }
00658 else if (priority == "TopLevel")
00659 {
00660 list = &(userToplevelSubmenus[submenuName]);
00661 }
00662 else if (priority == "Important")
00663 {
00664 list = &(userPrioritySubmenus[submenuName]);
00665 }
00666 else
00667 {
00668 list = &(userSubmenus[submenuName]);
00669 }
00670
00671 (*list) += KDEDesktopMimeType::userDefinedServices( *dIt + *eIt, url.isLocalFile() );
00672 }
00673 }
00674 }
00675 }
00676
00677 KTrader::OfferList offers;
00678
00679 if (kapp->authorizeKAction("openwith"))
00680 {
00681
00682
00683 offers = KTrader::self()->query( m_sMimeType.isNull( ) ? QString::fromLatin1( "all/all" ) : m_sMimeType ,
00684 "Type == 'Application' and DesktopEntryName != 'kfmclient' and DesktopEntryName != 'kfmclient_dir' and DesktopEntryName != 'kfmclient_html'" );
00685 }
00686
00688
00689 m_mapPopup.clear();
00690 m_mapPopupServices.clear();
00691 if ( !devicesFile)
00692 {
00693 if ( !offers.isEmpty() )
00694 {
00695
00696 addSeparator();
00697
00698 id = 1;
00699
00700 QDomElement menu = m_menuElement;
00701
00702 if ( offers.count() > 1 )
00703 {
00704 menu = m_doc.createElement( "menu" );
00705 menu.setAttribute( "name", "openwith submenu" );
00706 m_menuElement.appendChild( menu );
00707 QDomElement text = m_doc.createElement( "text" );
00708 menu.appendChild( text );
00709 text.appendChild( m_doc.createTextNode( i18n("&Open With") ) );
00710 }
00711
00712 if ( menu == m_menuElement )
00713 {
00714 KAction *openWithAct = new KAction( i18n( "&Open With..." ), 0, this, SLOT( slotPopupOpenWith() ), &m_ownActions, "openwith" );
00715 addAction( openWithAct, menu );
00716 }
00717
00718 KTrader::OfferList::ConstIterator it = offers.begin();
00719 for( ; it != offers.end(); it++ )
00720 {
00721 QCString nam;
00722 nam.setNum( id );
00723
00724 act = new KAction( (*it)->name(), (*it)->pixmap( KIcon::Small ), 0,
00725 this, SLOT( slotRunService() ),
00726 &m_ownActions, nam.prepend( "appservice_" ) );
00727 addAction( act, menu );
00728
00729 m_mapPopup[ id++ ] = *it;
00730 }
00731
00732 if ( menu != m_menuElement )
00733 {
00734 addSeparator( menu );
00735 KAction *openWithAct = new KAction( i18n( "&Other..." ), 0, this, SLOT( slotPopupOpenWith() ), &m_ownActions, "openwith" );
00736 addAction( openWithAct, menu );
00737 }
00738 }
00739 else
00740 {
00741 addSeparator();
00742 act = new KAction( i18n( "&Open With..." ), 0, this, SLOT( slotPopupOpenWith() ), &m_ownActions, "openwith" );
00743 addAction( act );
00744 }
00745
00746 addGroup( "preview" );
00747 }
00748 }
00749
00750
00751 QDomElement actionMenu = m_menuElement;
00752 int userItemCount = 0;
00753 if (user.count() + userSubmenus.count() +
00754 userPriority.count() + userPrioritySubmenus.count())
00755 {
00756
00757 actionMenu = m_doc.createElement( "menu" );
00758 actionMenu.setAttribute( "name", "actions submenu" );
00759 m_menuElement.appendChild( actionMenu );
00760 QDomElement text = m_doc.createElement( "text" );
00761 actionMenu.appendChild( text );
00762 text.appendChild( m_doc.createTextNode( i18n("Ac&tions") ) );
00763 }
00764
00765 userItemCount += insertServicesSubmenus(userPrioritySubmenus, actionMenu, false);
00766 userItemCount += insertServices(userPriority, actionMenu, false);
00767
00768
00769 if (userItemCount > 0 &&
00770 (user.count() > 0 ||
00771 userSubmenus.count() > 0 ||
00772 builtin.count() > 0) &&
00773 actionMenu.lastChild().toElement().tagName().lower() != "separator")
00774 {
00775 QDomElement separator = m_doc.createElement( "separator" );
00776 actionMenu.appendChild(separator);
00777 }
00778
00779 userItemCount += insertServicesSubmenus(userSubmenus, actionMenu, false);
00780 userItemCount += insertServices(user, actionMenu, false);
00781 userItemCount += insertServices(builtin, m_menuElement, true);
00782
00783 userItemCount += insertServicesSubmenus(userToplevelSubmenus, m_menuElement, false);
00784 userItemCount += insertServices(userToplevel, m_menuElement, false);
00785
00786 if (userItemCount > 0)
00787 {
00788 addSeparator();
00789 }
00790
00791 if ( !isCurrentTrash && !isIntoTrash && !devicesFile)
00792 addPlugins( );
00793
00794 if ( KPropertiesDialog::canDisplay( m_lstItems ) && (kpf & ShowProperties) )
00795 {
00796 act = new KAction( i18n( "&Properties" ), 0, this, SLOT( slotPopupProperties() ),
00797 &m_ownActions, "properties" );
00798 addAction( act );
00799 }
00800
00801 while ( !m_menuElement.lastChild().isNull() &&
00802 m_menuElement.lastChild().toElement().tagName().lower() == "separator" )
00803 m_menuElement.removeChild( m_menuElement.lastChild() );
00804
00805 if( bCanChangeSharing && !isCurrentTrash && !isIntoTrash)
00806 {
00807 if(KFileShare::authorization()==KFileShare::Authorized)
00808 {
00809 addSeparator();
00810 QString label;
00811 label=i18n("Share");
00812
00813 act = new KAction( label, 0, this, SLOT( slotOpenShareFileDialog() ),
00814 &m_ownActions, "sharefile" );
00815 addAction( act );
00816 }
00817 }
00818
00819
00820 addMerge( 0 );
00821
00822 m_factory->addClient( this );
00823 }
00824
00825 void KonqPopupMenu::slotOpenShareFileDialog()
00826 {
00827
00828
00829
00830
00831
00832 if ( m_lstItems.count() == 1 )
00833 {
00834 KFileItem * item = m_lstItems.first();
00835 if (item->entry().count() == 0)
00836 {
00837
00838 KPropertiesDialog*dlg= new KPropertiesDialog( item->url(), d->m_parentWidget );
00839 dlg->showFileSharingPage();
00840
00841 return;
00842 }
00843 }
00844 KPropertiesDialog*dlg=new KPropertiesDialog( m_lstItems, d->m_parentWidget );
00845 dlg->showFileSharingPage();
00846 }
00847
00848 KonqPopupMenu::~KonqPopupMenu()
00849 {
00850 m_pluginList.clear();
00851 delete m_factory;
00852 delete m_builder;
00853 delete d;
00854 kdDebug(1203) << "~KonqPopupMenu leave" << endl;
00855 }
00856
00857 void KonqPopupMenu::setURLTitle( const QString& urlTitle )
00858 {
00859 d->m_urlTitle = urlTitle;
00860 }
00861
00862 void KonqPopupMenu::slotPopupNewView()
00863 {
00864 KURL::List::ConstIterator it = m_lstPopupURLs.begin();
00865 for ( ; it != m_lstPopupURLs.end(); it++ )
00866 (void) new KRun(*it);
00867 }
00868
00869 void KonqPopupMenu::slotPopupNewDir()
00870 {
00871 if (m_lstPopupURLs.empty())
00872 return;
00873
00874 KonqOperations::newDir(d->m_parentWidget, m_lstPopupURLs.first());
00875 }
00876
00877 void KonqPopupMenu::slotPopupEmptyTrashBin()
00878 {
00879 KonqOperations::emptyTrash();
00880 }
00881
00882 void KonqPopupMenu::slotPopupOpenWith()
00883 {
00884 KRun::displayOpenWithDialog( m_lstPopupURLs );
00885 }
00886
00887 void KonqPopupMenu::slotPopupAddToBookmark()
00888 {
00889 KBookmarkGroup root = m_pManager->root();
00890 if ( m_lstPopupURLs.count() == 1 ) {
00891 KURL url = m_lstPopupURLs.first();
00892 QString title = d->m_urlTitle.isEmpty() ? url.prettyURL() : d->m_urlTitle;
00893 root.addBookmark( m_pManager, title, url.url() );
00894 }
00895 else
00896 {
00897 KURL::List::ConstIterator it = m_lstPopupURLs.begin();
00898 for ( ; it != m_lstPopupURLs.end(); it++ )
00899 root.addBookmark( m_pManager, (*it).prettyURL(), (*it).url() );
00900 }
00901 m_pManager->emitChanged( root );
00902 }
00903
00904 void KonqPopupMenu::slotRunService()
00905 {
00906 QCString senderName = sender()->name();
00907 int id = senderName.mid( senderName.find( '_' ) + 1 ).toInt();
00908
00909
00910 QMap<int,KService::Ptr>::Iterator it = m_mapPopup.find( id );
00911 if ( it != m_mapPopup.end() )
00912 {
00913 KRun::run( **it, m_lstPopupURLs );
00914 return;
00915 }
00916
00917
00918 QMap<int,KDEDesktopMimeType::Service>::Iterator it2 = m_mapPopupServices.find( id );
00919 if ( it2 != m_mapPopupServices.end() )
00920 {
00921 KDEDesktopMimeType::executeService( m_lstPopupURLs, it2.data() );
00922 }
00923
00924 return;
00925 }
00926
00927 void KonqPopupMenu::slotPopupMimeType()
00928 {
00929 KonqOperations::editMimeType( m_sMimeType );
00930 }
00931
00932 void KonqPopupMenu::slotPopupProperties()
00933 {
00934
00935
00936
00937
00938 if ( m_lstItems.count() == 1 )
00939 {
00940 KFileItem * item = m_lstItems.first();
00941 if (item->entry().count() == 0)
00942 {
00943
00944 (void) new KPropertiesDialog( item->url(), d->m_parentWidget );
00945 return;
00946 }
00947 }
00948 (void) new KPropertiesDialog( m_lstItems, d->m_parentWidget );
00949 }
00950
00951 KAction *KonqPopupMenu::action( const QDomElement &element ) const
00952 {
00953 QCString name = element.attribute( attrName ).ascii();
00954 KAction *res = m_ownActions.action( name );
00955
00956 if ( !res )
00957 res = m_actions.action( name );
00958
00959 if ( !res && m_pMenuNew && strcmp( name, m_pMenuNew->name() ) == 0 )
00960 return m_pMenuNew;
00961
00962 return res;
00963 }
00964 KActionCollection *KonqPopupMenu::actionCollection() const
00965 {
00966 return const_cast<KActionCollection *>( &m_ownActions );
00967 }
00968
00969 QString KonqPopupMenu::mimeType( ) const {
00970 return m_sMimeType;
00971 }
00972 KonqPopupMenu::ProtocolInfo KonqPopupMenu::protocolInfo() const
00973 {
00974 return m_info;
00975 }
00976 void KonqPopupMenu::addPlugins( ){
00977
00978
00979 KTrader::OfferList plugin_offers;
00980 unsigned int pluginCount = 0;
00981 plugin_offers = KTrader::self()->query( m_sMimeType.isNull() ? QString::fromLatin1( "all/all" ) : m_sMimeType , "'KonqPopupMenu/Plugin' in ServiceTypes");
00982 if ( plugin_offers.isEmpty() )
00983 return;
00984
00985 KTrader::OfferList::ConstIterator iterator = plugin_offers.begin( );
00986 KTrader::OfferList::ConstIterator end = plugin_offers.end( );
00987
00988 addGroup( "plugins" );
00989
00990 for(; iterator != end; ++iterator, ++pluginCount ){
00991 KonqPopupMenuPlugin *plugin =
00992 KParts::ComponentFactory::
00993 createInstanceFromLibrary<KonqPopupMenuPlugin>( (*iterator)->library().local8Bit(),
00994 this,
00995 (*iterator)->name().latin1() );
00996 if ( !plugin )
00997 continue;
00998 QString pluginClientName = QString::fromLatin1( "Plugin%1" ).arg( pluginCount );
00999 addMerge( pluginClientName );
01000 plugin->domDocument().documentElement().setAttribute( "name", pluginClientName );
01001 m_pluginList.append( plugin );
01002 insertChildClient( plugin );
01003 }
01004
01005 addMerge( "plugins" );
01006 addSeparator();
01007 }
01008 KURL KonqPopupMenu::url( ) const {
01009 return m_sViewURL;
01010 }
01011 KFileItemList KonqPopupMenu::fileItemList( ) const {
01012 return m_lstItems;
01013 }
01014 KURL::List KonqPopupMenu::popupURLList( ) const {
01015 return m_lstPopupURLs;
01016 }
01021 KonqPopupMenuPlugin::KonqPopupMenuPlugin( KonqPopupMenu *parent, const char *name )
01022 : QObject( parent, name ) {
01023 }
01024 KonqPopupMenuPlugin::~KonqPopupMenuPlugin( ){
01025
01026 }
01027 #include "konq_popupmenu.moc"