1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
|
/**
Copyright (C) 2003-2005 Mickael Marchand <marchand@kde.org>
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
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. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
#include <kparts/part.h>
#include <kdevcore.h>
#include <kdebug.h>
#include <klineedit.h>
#include "subversion_part.h"
#include "subversion_widget.h"
#include <ktextedit.h>
#include <klocale.h>
#include <tqtoolbutton.h>
#include <tqpushbutton.h>
subversionWidget::subversionWidget( subversionPart *part, TQWidget *tqparent, const char* name )
: KTabWidget(tqparent)
{
m_part = part;
m_edit = new KTextEdit( this );
m_edit->setReadOnly( TRUE );
tab()->addTab( m_edit, i18n("Notification") );
m_closeButton = new TQPushButton( tab() );
m_closeButton->setText( i18n("Close") );
tab()->setCornerWidget(m_closeButton);
connect( m_closeButton, TQT_SIGNAL(clicked()), this, TQT_SLOT(closeCurrentTab()) );
}
subversionWidget::~subversionWidget()
{}
void subversionWidget::append( TQString notifications )
{
if( !m_edit ){
// should not happen
m_edit = new KTextEdit(this);
}
m_edit->append( notifications );
showPage( m_edit );
}
void subversionWidget::showLogResult( TQValueList<SvnLogHolder> *holderList, TQString reqUrl )
{
SvnLogViewWidget *widget = new SvnLogViewWidget( m_part, this );
widget->setLogResult( holderList );
widget->setRequestedUrl( reqUrl );
tab()->addTab( widget, i18n("Log History") );
tab()->setTabEnabled( widget, true );
tab()->showPage( widget );
}
void subversionWidget::showBlameResult( TQValueList<SvnBlameHolder> *blamelist )
{
SvnBlameWidget *widget = new SvnBlameWidget( this );
widget->copyBlameData( blamelist );
tab()->addTab( widget, i18n("Blame") );
tab()->setTabEnabled( widget, true );
tab()->showPage( widget );
}
void subversionWidget::closeCurrentTab()
{
TQWidget *current = tab()->currentPage();
KTextEdit *edit = static_cast<KTextEdit*>(current);
if( edit ){
if( edit == m_edit ) // main notification output should not be deleted
return;
}
tab()->removePage( current );
delete current;
}
////////////////////////////////////////////////////////////////////////
SvnIntSortListItem::SvnIntSortListItem( TQListView* tqparent )
:TQListViewItem(tqparent)
{}
SvnIntSortListItem::~SvnIntSortListItem()
{}
int SvnIntSortListItem::compare( TQListViewItem *item, int col, bool ascending ) const
{
unsigned int myVal = this->text(col).toUInt();
unsigned int yourVal = item->text(col).toUInt();
if( myVal < yourVal ) return -1;
if( myVal > yourVal ) return 1;
return 0;
}
SvnLogViewItem::SvnLogViewItem( TQListView * tqparent )
:SvnIntSortListItem( tqparent )
{
m_pathList = "";
m_message = "";
}
SvnLogViewItem ::~SvnLogViewItem ()
{}
////////////////////////////////////////////////////////////////////////
SvnProgressDlg::SvnProgressDlg( bool showNow )
: KIO::DefaultProgress( showNow )
{
setStopOnClose( true );
setCaption( i18n("Subversion Job Progress") );
}
SvnProgressDlg::~SvnProgressDlg()
{}
void SvnProgressDlg::setSourceUrl( const TQString &src )
{
sourceEdit->setText( src );
}
void SvnProgressDlg::setDestUrl( const TQString &dest )
{
destEdit->setText( dest );
}
#include "subversion_widget.moc"
|