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.
335 lines
7.6 KiB
335 lines
7.6 KiB
/***************************************************************************
|
|
* Copyright (C) 2003 by Jens Dagerbo *
|
|
* jens.dagerbo@swipnet.se *
|
|
* *
|
|
* 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. *
|
|
* *
|
|
***************************************************************************/
|
|
|
|
#include <tqdict.h>
|
|
#include <tqheader.h>
|
|
#include <tqtooltip.h>
|
|
#include <tqpair.h>
|
|
#include <tqstylesheet.h>
|
|
|
|
#include <tdeparts/part.h>
|
|
#include <klibloader.h>
|
|
#include <kurl.h>
|
|
#include <kdebug.h>
|
|
#include <kiconloader.h>
|
|
#include <tdepopupmenu.h>
|
|
#include <tdelocale.h>
|
|
|
|
#include <kdevpartcontroller.h>
|
|
#include <kdevcore.h>
|
|
|
|
|
|
#include "bookmarks_part.h"
|
|
#include "bookmarks_widget.h"
|
|
#include "bookmarks_config.h"
|
|
|
|
namespace
|
|
{
|
|
|
|
// shamelessly lifted from tdelibs/kate/part/kateviewhelpers.cpp
|
|
static const char* const bookmark_xpm[]={
|
|
"12 12 4 1",
|
|
"b c #808080",
|
|
"a c #000080",
|
|
"# c #0000ff",
|
|
". c None",
|
|
"........###.",
|
|
".......#...a",
|
|
"......#.##.a",
|
|
".....#.#..aa",
|
|
"....#.#...a.",
|
|
"...#.#.a.a..",
|
|
"..#.#.a.a...",
|
|
".#.#.a.a....",
|
|
"#.#.a.a.....",
|
|
"#.#a.a......",
|
|
"#...a.......",
|
|
".aaa........"};
|
|
|
|
}
|
|
|
|
class BookmarkItem : public TQListViewItem
|
|
{
|
|
public:
|
|
BookmarkItem( TQListView * parent, KURL const & url )
|
|
: TQListViewItem( parent, url.fileName() ),
|
|
_url( url ), _line( -1 ), _isBookmark( false )
|
|
{}
|
|
|
|
BookmarkItem( TQListViewItem * parent, KURL const & url, TQPair<int,TQString> mark )
|
|
: TQListViewItem( parent, TQString::number( mark.first +1 ).rightJustify( 5 ) ),
|
|
_url( url ), _line( mark.first ), _isBookmark( true )
|
|
{
|
|
BookmarksWidget * lv = static_cast<BookmarksWidget*>( listView() );
|
|
BookmarksConfig::CodeLineType codeline = lv->config()->codeline();
|
|
|
|
if ( codeline == BookmarksConfig::Never )
|
|
{
|
|
return;
|
|
}
|
|
|
|
if ( codeline == BookmarksConfig::Token )
|
|
{
|
|
if ( mark.second.startsWith( lv->config()->token() ) )
|
|
{
|
|
setText( 0, text( 0 ) + " " + mark.second );
|
|
}
|
|
return;
|
|
}
|
|
|
|
setText( 0, text( 0 ) + " " + mark.second );
|
|
}
|
|
|
|
KURL url()
|
|
{
|
|
return _url;
|
|
}
|
|
int line()
|
|
{
|
|
return _line;
|
|
}
|
|
|
|
TQString tipText()
|
|
{
|
|
if ( _isBookmark )
|
|
{
|
|
BookmarksWidget * w = static_cast<BookmarksWidget*> ( listView() );
|
|
TQStringList list = w->getContext( _url, _line );
|
|
|
|
TQString code = "<qt><table><tr><td><pre>";
|
|
for ( uint i = 0; i < list.count(); i++)
|
|
{
|
|
TQString temp = TQStyleSheet::escape( list[i] );
|
|
|
|
if ( i == (list.count() / 2) ) // count() is always odd
|
|
{
|
|
temp = "<b>" + temp + "</b>";
|
|
}
|
|
code += temp + "\n";
|
|
}
|
|
code += "</pre></td></tr></table></qt>";
|
|
|
|
return code;
|
|
}
|
|
else
|
|
{
|
|
return _url.prettyURL();
|
|
}
|
|
}
|
|
|
|
bool isBookmark()
|
|
{
|
|
return _isBookmark;
|
|
}
|
|
|
|
private:
|
|
KURL _url;
|
|
int _line;
|
|
bool _isBookmark;
|
|
TQString _code;
|
|
|
|
};
|
|
|
|
BookmarksWidget::BookmarksWidget(BookmarksPart *part)
|
|
: TDEListView(0, "bookmarks widget"), TQToolTip( viewport() ),
|
|
_part( part )
|
|
|
|
{
|
|
addColumn( TQString() );
|
|
header()->hide();
|
|
setRootIsDecorated( true );
|
|
setResizeMode( TQListView::LastColumn );
|
|
setAllColumnsShowFocus( true );
|
|
// setSortColumn( -1 );
|
|
|
|
connect( this, TQ_SIGNAL( executed( TQListViewItem * ) ), this, TQ_SLOT( itemClicked( TQListViewItem * ) ) );
|
|
connect( this, TQ_SIGNAL( returnPressed( TQListViewItem * ) ), this, TQ_SLOT( itemClicked( TQListViewItem * ) ) );
|
|
connect( this, TQ_SIGNAL( contextMenuRequested ( TQListViewItem *, const TQPoint & , int ) ),
|
|
this, TQ_SLOT( popupMenu(TQListViewItem *, const TQPoint & , int ) ) );
|
|
}
|
|
|
|
|
|
BookmarksWidget::~BookmarksWidget()
|
|
{}
|
|
|
|
void BookmarksWidget::maybeTip(const TQPoint &p)
|
|
{
|
|
// kdDebug(0) << "ToolTip::maybeTip()" << endl;
|
|
|
|
if ( ! _part->config()->toolTip() ) return;
|
|
|
|
BookmarkItem * item = dynamic_cast<BookmarkItem*>( itemAt( p ) );
|
|
TQRect r = itemRect( item );
|
|
|
|
if ( item && r.isValid() )
|
|
{
|
|
tip( r, item->tipText() );
|
|
}
|
|
}
|
|
|
|
void BookmarksWidget::update( TQDict<EditorData> const & map )
|
|
{
|
|
// kdDebug(0) << "BookmarksWidget::update()" << endl;
|
|
|
|
TQListView::clear();
|
|
|
|
TQDictIterator<EditorData> it( map );
|
|
while ( it.current() )
|
|
{
|
|
if ( ! it.current()->marks.isEmpty() )
|
|
{
|
|
createURL( it.current() );
|
|
}
|
|
++it;
|
|
}
|
|
}
|
|
|
|
void BookmarksWidget::updateURL( EditorData * data )
|
|
{
|
|
// kdDebug(0) << "BookmarksWidget::updateURL()" << endl;
|
|
|
|
// remove the node that contains 'data'
|
|
removeURL( data->url );
|
|
|
|
// create it again with new data
|
|
createURL( data );
|
|
}
|
|
|
|
void BookmarksWidget::createURL( EditorData * data )
|
|
{
|
|
// kdDebug(0) << "BookmarksWidget::createURL()" << endl;
|
|
|
|
if ( data )
|
|
{
|
|
TQListViewItem * file = new BookmarkItem( this, data->url );
|
|
file->setOpen( true );
|
|
file->setPixmap( 0, SmallIcon( "text-x-generic" ) );
|
|
|
|
TQValueListIterator< TQPair<int,TQString> > it = data->marks.begin();
|
|
while ( it != data->marks.end() )
|
|
{
|
|
TQListViewItem * item = new BookmarkItem( file, data->url, *it );
|
|
item->setPixmap( 0, TQPixmap((const char**)bookmark_xpm) );
|
|
++it;
|
|
}
|
|
}
|
|
}
|
|
|
|
bool BookmarksWidget::removeURL( KURL const & url )
|
|
{
|
|
// kdDebug(0) << "BookmarksWidget::removeURL()" << endl;
|
|
|
|
TQListViewItem * item = firstChild();
|
|
while ( item )
|
|
{
|
|
BookmarkItem * bm = static_cast<BookmarkItem*>(item);
|
|
if ( bm->url() == url )
|
|
{
|
|
delete item;
|
|
return true;
|
|
}
|
|
item = item->nextSibling();
|
|
}
|
|
return false;
|
|
}
|
|
|
|
void BookmarksWidget::doEmitRemoveBookMark()
|
|
{
|
|
// kdDebug(0) << "BookmarksWidget::doEmitRemoveBookMark()" << endl;
|
|
|
|
if ( _selectedItem->isBookmark() )
|
|
{
|
|
emit removeBookmarkForURL( _selectedItem->url(), _selectedItem->line() );
|
|
}
|
|
else
|
|
{
|
|
emit removeAllBookmarksForURL( _selectedItem->url() );
|
|
}
|
|
}
|
|
|
|
void BookmarksWidget::popupMenu( TQListViewItem * item, const TQPoint & p, int )
|
|
{
|
|
// kdDebug(0) << "BookmarksWidget::contextMenuRequested()" << endl;
|
|
|
|
if ( item )
|
|
{
|
|
_selectedItem = static_cast<BookmarkItem *>(item);
|
|
|
|
TDEPopupMenu popup;
|
|
|
|
if ( _selectedItem->isBookmark() )
|
|
{
|
|
popup.insertTitle( _selectedItem->url().fileName() + i18n(", line ")
|
|
+ TQString::number( _selectedItem->line() +1 ) );
|
|
|
|
popup.insertItem( i18n("Remove This Bookmark"), this, TQ_SLOT( doEmitRemoveBookMark() ) );
|
|
}
|
|
else
|
|
{
|
|
popup.insertTitle( _selectedItem->url().fileName() + i18n( ", All" ) );
|
|
popup.insertItem( i18n("Remove These Bookmarks"), this, TQ_SLOT( doEmitRemoveBookMark() ) );
|
|
}
|
|
|
|
popup.insertSeparator();
|
|
|
|
popup.insertItem( i18n( "Collapse All" ), this, TQ_SLOT(collapseAll()) );
|
|
popup.insertItem( i18n( "Expand All" ), this, TQ_SLOT(expandAll()) );
|
|
|
|
popup.exec(p);
|
|
}
|
|
|
|
}
|
|
|
|
void BookmarksWidget::itemClicked( TQListViewItem * clickedItem )
|
|
{
|
|
// kdDebug(0) << "BookmarksWidget::itemClicked()" << endl;
|
|
|
|
if ( ! clickedItem )
|
|
return;
|
|
|
|
BookmarkItem * item = static_cast<BookmarkItem*>( clickedItem );
|
|
_part->partController()->editDocument( item->url(), item->line() );
|
|
|
|
}
|
|
|
|
BookmarksConfig * BookmarksWidget::config( )
|
|
{
|
|
return _part->config();
|
|
}
|
|
|
|
TQStringList BookmarksWidget::getContext( KURL const & url, unsigned int line )
|
|
{
|
|
return _part->getContext( url, line, config()->context() );
|
|
}
|
|
|
|
void BookmarksWidget::collapseAll( )
|
|
{
|
|
TQListViewItem * it = firstChild();
|
|
while( it )
|
|
{
|
|
it->setOpen( false );
|
|
it = it->nextSibling();
|
|
}
|
|
}
|
|
|
|
void BookmarksWidget::expandAll( )
|
|
{
|
|
TQListViewItem * it = firstChild();
|
|
while( it )
|
|
{
|
|
it->setOpen( true );
|
|
it = it->nextSibling();
|
|
}
|
|
}
|
|
|
|
|
|
#include "bookmarks_widget.moc"
|