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.
274 lines
8.1 KiB
274 lines
8.1 KiB
/*
|
|
* Copyright (C) 2007 Dukju Ahn (dukjuahn@gmail.com)
|
|
*
|
|
* 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.
|
|
*
|
|
* This program 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 General Public License
|
|
* along with this program; 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 "svn_logviewwidget.h"
|
|
#include "svn_blamewidget.h"
|
|
#include "subversion_core.h"
|
|
#include "subversion_global.h"
|
|
#include <kdevproject.h>
|
|
#include <ktextedit.h>
|
|
#include <tdemessagebox.h>
|
|
#include <kdebug.h>
|
|
#include <tdelocale.h>
|
|
#include <tqradiobutton.h>
|
|
#include <tqcombobox.h>
|
|
#include <knuminput.h>
|
|
#include <tqcheckbox.h>
|
|
|
|
#include <tqsplitter.h>
|
|
#include <tqheader.h>
|
|
#include <tqlistview.h>
|
|
#include <tqlayout.h>
|
|
#include <tqstringlist.h>
|
|
|
|
SvnLogViewWidget::SvnLogViewWidget(subversionPart *part, TQWidget *parent)
|
|
:TQWidget(parent), m_part(part)
|
|
{
|
|
m_layout = new TQGridLayout( this, 1, 1, 11, 6, "SvnLogViewWidgetBaseLayout");
|
|
|
|
splitter1 = new TQSplitter( this, "splitter1" );
|
|
splitter1->setOrientation( TQt::Horizontal );
|
|
splitter1->setMargin(1);
|
|
|
|
listView1 = new TQListView( splitter1, "listView1" );
|
|
listView1->addColumn( i18n( "Rev" ) );
|
|
listView1->addColumn( i18n( "Date" ) );
|
|
listView1->addColumn( i18n( "Author" ) );
|
|
listView1->addColumn( i18n( "Comment" ) );
|
|
listView1->resize( TQSize(1, 1).expandedTo(minimumSizeHint()) );
|
|
TQFont listView1_font( listView1->font() );
|
|
listView1_font.setPointSize( 9 );
|
|
listView1->setFont( listView1_font );
|
|
listView1->setAllColumnsShowFocus( TRUE );
|
|
listView1->setShowSortIndicator( TRUE );
|
|
|
|
textEdit1 = new KTextEdit( splitter1, "textEdit1" );
|
|
textEdit1->resize( TQSize(1, 1).expandedTo(minimumSizeHint()) );
|
|
TQFont textEdit1_font( textEdit1->font() );
|
|
textEdit1_font.setPointSize( 9 );
|
|
textEdit1->setFont( textEdit1_font );
|
|
textEdit1->setFocusPolicy( TQWidget::WheelFocus );
|
|
textEdit1->setReadOnly( TRUE );
|
|
|
|
m_layout->addWidget( splitter1, 0, 0 );
|
|
m_layout->setMargin(1);
|
|
|
|
resize( TQSize(692, 343).expandedTo(minimumSizeHint()) );
|
|
clearWState( WState_Polished );
|
|
|
|
connect( listView1, TQ_SIGNAL(clicked( TQListViewItem *)), this, TQ_SLOT(slotClicked(TQListViewItem*)) );
|
|
connect( listView1, TQ_SIGNAL(contextMenuRequested( TQListViewItem*, const TQPoint&, int )),
|
|
this, TQ_SLOT(contextMenuRequested(TQListViewItem*, const TQPoint&, int)) );
|
|
}
|
|
SvnLogViewWidget::~SvnLogViewWidget()
|
|
{
|
|
}
|
|
|
|
void SvnLogViewWidget::setLogResult( TQValueList<SvnLogHolder> *loglist )
|
|
{
|
|
this->listView1->clear();
|
|
this->textEdit1->clear();
|
|
this->listView1->setSorting( 1, false );
|
|
|
|
for( TQValueList<SvnLogHolder>::Iterator it=loglist->begin(); it!=loglist->end(); ++it ){
|
|
|
|
SvnLogHolder holder = *it;
|
|
SvnLogViewItem *item = new SvnLogViewItem(this->listView1);
|
|
|
|
TQString prettyDate = holder.date.left(16).replace(10, 1, ' ');
|
|
|
|
item->setText(0, holder.rev );
|
|
item->setText(1, prettyDate );
|
|
item->setText(2, holder.author );
|
|
item->setText(3, holder.logMsg.simplifyWhiteSpace() );
|
|
|
|
item->m_pathList = holder.pathList;
|
|
item->m_message = holder.logMsg;
|
|
}
|
|
// this->listView1->show();
|
|
}
|
|
|
|
void SvnLogViewWidget::setRequestedUrl( TQString reqUrl )
|
|
{
|
|
m_reqUrl = reqUrl;
|
|
}
|
|
|
|
void SvnLogViewWidget::slotClicked( TQListViewItem *oneItem )
|
|
{
|
|
if( !oneItem ) return;
|
|
SvnLogViewItem *item = dynamic_cast<SvnLogViewItem*>( oneItem );
|
|
if( !item ) return;
|
|
textEdit1->clear();
|
|
textEdit1->append( item->m_pathList );
|
|
textEdit1->append( "\n\n" );
|
|
textEdit1->append( item->m_message + "\n" );
|
|
}
|
|
void SvnLogViewWidget::contextMenuRequested( TQListViewItem *item, const TQPoint & pos, int col )
|
|
{
|
|
if( !item || col == -1 )
|
|
return;
|
|
m_ctxLogItem = dynamic_cast<SvnLogViewItem*>(item);
|
|
if( !m_ctxLogItem )
|
|
return;
|
|
TQPopupMenu *menu = new TQPopupMenu(this);
|
|
menu->insertItem( i18n("Blame this revision"), this, TQ_SLOT(blameThis()) );
|
|
menu->insertItem( i18n("Difference to previous revision"), this, TQ_SLOT(diffToPrevious()) );
|
|
menu->exec( pos );
|
|
}
|
|
void SvnLogViewWidget::blameThis()
|
|
{
|
|
if( !m_ctxLogItem ){
|
|
KMessageBox::error( this, i18n("No revision was clicked"), i18n("error") );
|
|
return;
|
|
}
|
|
// note that blame is done on single file.
|
|
TQStringList modifies = TQStringList::split( "\n", m_ctxLogItem->m_pathList, false );
|
|
TQString selectedPath;
|
|
if( modifies.count() > 1 ){
|
|
SvnBlameFileSelectDlg dlg(this);
|
|
dlg.setCandidate( &modifies );
|
|
if( dlg.exec() == TQDialog::Accepted ){
|
|
selectedPath = dlg.selected();
|
|
} else{
|
|
return;
|
|
}
|
|
|
|
} else if( modifies.count() == 1 ){
|
|
selectedPath = *( modifies.at(0) );
|
|
} else {
|
|
return;
|
|
}
|
|
|
|
TQString relPath = selectedPath.section( '/', 1 );
|
|
|
|
TQValueList< SvnGlobal::SvnInfoHolder > holderList = m_part->m_prjInfoMap.values();
|
|
SvnGlobal::SvnInfoHolder holder;
|
|
if( holderList.count() > 0 ){
|
|
// get full Url
|
|
holder = holderList.first();
|
|
TQString absPath = holder.reposRootUrl.url(-1) + '/' + relPath;
|
|
kdDebug(9036) << " Blame requested on path " << absPath << endl;
|
|
// get revision
|
|
int revEnd = m_ctxLogItem->text(0).toInt();
|
|
// final request
|
|
m_part->svncore()->blame( KURL(absPath), SvnGlobal::dont_touch, 0, "", revEnd, "" );
|
|
}
|
|
else{
|
|
return;
|
|
}
|
|
}
|
|
|
|
void SvnLogViewWidget::diffToPrevious()
|
|
{
|
|
if( !m_ctxLogItem ){
|
|
KMessageBox::error( this, i18n("No revision was clicked"), i18n("error") );
|
|
return;
|
|
}
|
|
int revThis = m_ctxLogItem->text(0).toInt();
|
|
int revPrev = revThis - 1;
|
|
kdDebug(9036) << " Diff to prev requested on " << m_reqUrl << endl;
|
|
m_part->svncore()->diffAsync( m_reqUrl, m_reqUrl, revPrev, "", revThis, "",
|
|
true/*recurse*/, true/*peg_diff*/ );
|
|
}
|
|
|
|
SvnLogViewOptionDlg::SvnLogViewOptionDlg( TQWidget *parent, const char* name, bool modal, WFlags f )
|
|
: SvnLogViewOptionDlgBase( parent, name, modal,f )
|
|
{
|
|
// radio1->setChecked(true); //repository log
|
|
radio4->setChecked(true); //start revistion by revision keyword
|
|
radio5->setChecked(true); //end revision by revision number
|
|
reinstallRevisionSpecifiers();
|
|
connect( intInput1, TQ_SIGNAL(valueChanged(int)), this, TQ_SLOT(setStartRevnumRadio()) );
|
|
connect( comboBox1, TQ_SIGNAL(activated(const TQString&)), this, TQ_SLOT(setStartRevkindRadio()) );
|
|
connect( intInput2, TQ_SIGNAL(valueChanged(int)), this, TQ_SLOT(setEndRevnumRadio()) );
|
|
connect( comboBox2, TQ_SIGNAL(activated(const TQString&)), this, TQ_SLOT(setEndRevkindRadio()) );
|
|
}
|
|
SvnLogViewOptionDlg::~SvnLogViewOptionDlg()
|
|
{}
|
|
void SvnLogViewOptionDlg::reinstallRevisionSpecifiers()
|
|
{
|
|
comboBox1->clear();
|
|
comboBox2->clear();
|
|
|
|
TQStringList items;
|
|
items << "HEAD" << "BASE" << "PREV" << "COMMITTED";
|
|
comboBox1->insertStringList( items );
|
|
comboBox2->insertStringList( items );
|
|
}
|
|
int SvnLogViewOptionDlg::revstart()
|
|
{
|
|
if( !radio3->isChecked() ){
|
|
return -1;
|
|
} else{
|
|
return intInput1->value();
|
|
}
|
|
}
|
|
TQString SvnLogViewOptionDlg::revKindStart()
|
|
{
|
|
if( !radio4->isChecked() ){
|
|
return TQString("");
|
|
} else{
|
|
return comboBox1->currentText();
|
|
}
|
|
}
|
|
int SvnLogViewOptionDlg::revend()
|
|
{
|
|
if( !radio5->isChecked() ){
|
|
return -1;
|
|
} else{
|
|
return intInput2->value();
|
|
}
|
|
}
|
|
TQString SvnLogViewOptionDlg::revKindEnd()
|
|
{
|
|
if( !radio6->isChecked() ){
|
|
return TQString("");
|
|
} else{
|
|
return comboBox2->currentText();
|
|
}
|
|
}
|
|
bool SvnLogViewOptionDlg::strictNode()
|
|
{
|
|
if( checkBox1->isChecked() ){
|
|
return true;
|
|
} else{
|
|
return false;
|
|
}
|
|
}
|
|
void SvnLogViewOptionDlg::setStartRevnumRadio()
|
|
{
|
|
radio3->setChecked(true);
|
|
}
|
|
void SvnLogViewOptionDlg::setStartRevkindRadio()
|
|
{
|
|
radio4->setChecked(true);
|
|
}
|
|
void SvnLogViewOptionDlg::setEndRevnumRadio()
|
|
{
|
|
radio5->setChecked(true);
|
|
}
|
|
void SvnLogViewOptionDlg::setEndRevkindRadio()
|
|
{
|
|
radio6->setChecked(true);
|
|
}
|
|
|
|
#include "svn_logviewwidget.moc"
|
|
|