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.
188 lines
5.9 KiB
188 lines
5.9 KiB
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
#include <tqtextstream.h>
|
|
|
|
#include <kbookmarkimporter.h>
|
|
#include <kmimetype.h>
|
|
#include <kpopupmenu.h>
|
|
#include <ksavefile.h>
|
|
#include <kstandarddirs.h>
|
|
//#include <kbookmarkmenu.h>
|
|
|
|
#include "konsole_mnu.h"
|
|
#include "konsolebookmarkmenu.h"
|
|
#include "konsolebookmarkhandler.h"
|
|
|
|
#include <tqfile.h>
|
|
|
|
#include <kaction.h>
|
|
#include <klocale.h>
|
|
|
|
|
|
KonsoleBookmarkMenu::KonsoleBookmarkMenu( KBookmarkManager* mgr,
|
|
KonsoleBookmarkHandler * _owner, KPopupMenu * _parentMenu,
|
|
KActionCollection *collec, bool _isRoot, bool _add,
|
|
const TQString & parentAddress )
|
|
: KBookmarkMenu( mgr, _owner, _parentMenu, collec, _isRoot, _add,
|
|
parentAddress),
|
|
m_kOwner(_owner)
|
|
{
|
|
/*
|
|
* First, we disconnect KBookmarkMenu::slotAboutToShow()
|
|
* Then, we connect KonsoleBookmarkMenu::slotAboutToShow().
|
|
* They are named differently because the TQT_SLOT() macro thinks we want
|
|
* KonsoleBookmarkMenu::KBookmarkMenu::slotAboutToShow()
|
|
* Could this be solved if slotAboutToShow() is virtual in KBookmarMenu?
|
|
*/
|
|
disconnect( _parentMenu, TQT_SIGNAL( aboutToShow() ), this,
|
|
TQT_SLOT( slotAboutToShow() ) );
|
|
connect( _parentMenu, TQT_SIGNAL( aboutToShow() ),
|
|
TQT_SLOT( slotAboutToShow2() ) );
|
|
}
|
|
|
|
/*
|
|
* Duplicate this exactly because KBookmarkMenu::slotBookmarkSelected can't
|
|
* be overrided. I would have preferred to NOT have to do this.
|
|
*
|
|
* Why did I do this?
|
|
* - when KBookmarkMenu::fillbBookmarkMenu() creates sub-KBookmarkMenus.
|
|
* - when ... adds KActions, it uses KBookmarkMenu::slotBookmarkSelected()
|
|
* instead of KonsoleBookmarkMenu::slotBookmarkSelected().
|
|
*/
|
|
void KonsoleBookmarkMenu::slotAboutToShow2()
|
|
{
|
|
// Did the bookmarks change since the last time we showed them ?
|
|
if ( m_bDirty )
|
|
{
|
|
m_bDirty = false;
|
|
refill();
|
|
}
|
|
}
|
|
|
|
void KonsoleBookmarkMenu::refill()
|
|
{
|
|
//kdDebug(1203) << "KBookmarkMenu::refill()" << endl;
|
|
m_lstSubMenus.clear();
|
|
TQPtrListIterator<KAction> it( m_actions );
|
|
for (; it.current(); ++it )
|
|
it.current()->unplug( m_parentMenu );
|
|
m_parentMenu->clear();
|
|
m_actions.clear();
|
|
fillBookmarkMenu();
|
|
m_parentMenu->adjustSize();
|
|
}
|
|
|
|
void KonsoleBookmarkMenu::fillBookmarkMenu()
|
|
{
|
|
if ( m_bIsRoot )
|
|
{
|
|
if ( m_bAddBookmark )
|
|
addAddBookmark();
|
|
|
|
addEditBookmarks();
|
|
|
|
if ( m_bAddBookmark )
|
|
addNewFolder();
|
|
|
|
if ( m_pManager->showNSBookmarks()
|
|
&& TQFile::exists( KNSBookmarkImporter::netscapeBookmarksFile() ) )
|
|
{
|
|
m_parentMenu->insertSeparator();
|
|
|
|
KActionMenu * actionMenu = new KActionMenu( i18n("Netscape Bookmarks"),
|
|
"netscape",
|
|
m_actionCollection, 0L );
|
|
actionMenu->plug( m_parentMenu );
|
|
m_actions.append( actionMenu );
|
|
KonsoleBookmarkMenu *subMenu = new KonsoleBookmarkMenu( m_pManager,
|
|
m_kOwner, actionMenu->popupMenu(),
|
|
m_actionCollection, false,
|
|
m_bAddBookmark, TQString::null );
|
|
m_lstSubMenus.append(subMenu);
|
|
connect( actionMenu->popupMenu(), TQT_SIGNAL(aboutToShow()), subMenu,
|
|
TQT_SLOT(slotNSLoad()));
|
|
}
|
|
}
|
|
|
|
KBookmarkGroup parentBookmark = m_pManager->findByAddress( m_parentAddress ).toGroup();
|
|
Q_ASSERT(!parentBookmark.isNull());
|
|
bool separatorInserted = false;
|
|
for ( KBookmark bm = parentBookmark.first(); !bm.isNull();
|
|
bm = parentBookmark.next(bm) )
|
|
{
|
|
TQString text = bm.text();
|
|
text.replace( '&', "&&" );
|
|
if ( !separatorInserted && m_bIsRoot) { // inserted before the first konq bookmark, to avoid the separator if no konq bookmark
|
|
m_parentMenu->insertSeparator();
|
|
separatorInserted = true;
|
|
}
|
|
if ( !bm.isGroup() )
|
|
{
|
|
if ( bm.isSeparator() )
|
|
{
|
|
m_parentMenu->insertSeparator();
|
|
}
|
|
else
|
|
{
|
|
// kdDebug(1203) << "Creating URL bookmark menu item for " << bm.text() << endl;
|
|
// create a normal URL item, with ID as a name
|
|
KAction * action = new KAction( text, bm.icon(), 0,
|
|
this, TQT_SLOT( slotBookmarkSelected() ),
|
|
m_actionCollection, bm.url().url().utf8() );
|
|
|
|
action->setStatusText( bm.url().prettyURL() );
|
|
|
|
action->plug( m_parentMenu );
|
|
m_actions.append( action );
|
|
}
|
|
}
|
|
else
|
|
{
|
|
// kdDebug(1203) << "Creating bookmark submenu named " << bm.text() << endl;
|
|
KActionMenu * actionMenu = new KActionMenu( text, bm.icon(),
|
|
m_actionCollection, 0L );
|
|
actionMenu->plug( m_parentMenu );
|
|
m_actions.append( actionMenu );
|
|
KonsoleBookmarkMenu *subMenu = new KonsoleBookmarkMenu( m_pManager,
|
|
m_kOwner, actionMenu->popupMenu(),
|
|
m_actionCollection, false,
|
|
m_bAddBookmark, bm.address() );
|
|
m_lstSubMenus.append( subMenu );
|
|
}
|
|
}
|
|
|
|
if ( !m_bIsRoot && m_bAddBookmark )
|
|
{
|
|
m_parentMenu->insertSeparator();
|
|
addAddBookmark();
|
|
addNewFolder();
|
|
}
|
|
}
|
|
|
|
void KonsoleBookmarkMenu::slotBookmarkSelected()
|
|
{
|
|
KAction * a;
|
|
TQString b;
|
|
|
|
if ( !m_pOwner ) return; // this view doesn't handle bookmarks...
|
|
a = (KAction*)sender();
|
|
b = a->text();
|
|
m_kOwner->openBookmarkURL( TQString::fromUtf8(TQT_TQOBJECT_CONST(sender())->name()), /* URL */
|
|
( (KAction *)sender() )->text() /* Title */ );
|
|
}
|
|
|
|
void KonsoleBookmarkMenu::slotNSBookmarkSelected()
|
|
{
|
|
KAction *a;
|
|
TQString b;
|
|
|
|
TQString link(TQT_TQOBJECT_CONST(sender())->name()+8);
|
|
a = (KAction*)sender();
|
|
b = a->text();
|
|
m_kOwner->openBookmarkURL( link, /*URL */
|
|
( (KAction *)sender() )->text() /* Title */ );
|
|
}
|
|
|
|
#include "konsolebookmarkmenu.moc"
|