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.
79 lines
2.3 KiB
79 lines
2.3 KiB
/*
|
|
Copyright (C) 2003 ian reinhart geiser <geiseri@kde.org>
|
|
|
|
This library is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU Library General Public
|
|
version 2, License as published by the Free Software Foundation.
|
|
|
|
This library 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 Library General Public License
|
|
along with this library; 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 "kjsproblems.h"
|
|
#include "kjssupport_part.h"
|
|
#include <kiconloader.h>
|
|
|
|
class KJSProblemItem: public TDEListViewItem
|
|
{
|
|
public:
|
|
KJSProblemItem( TQListView* parent, const TQString& level, const TQString& problem,
|
|
const TQString& file, const TQString& line, const TQString& column )
|
|
: TDEListViewItem( parent, level, problem, file, line, column )
|
|
{}
|
|
|
|
KJSProblemItem( TQListViewItem* parent, const TQString& level, const TQString& problem,
|
|
const TQString& file, const TQString& line, const TQString& column )
|
|
: TDEListViewItem( parent, level, problem, file, line, column )
|
|
{}
|
|
|
|
int compare( TQListViewItem* item, int column, bool ascending ) const
|
|
{
|
|
if( column == 2 || column == 3 )
|
|
{
|
|
int a = text( column ).toInt();
|
|
int b = item->text( column ).toInt();
|
|
if( a == b )
|
|
return 0;
|
|
return( a > b ? 1 : -1 );
|
|
}
|
|
return TDEListViewItem::compare( item, column, ascending );
|
|
}
|
|
|
|
};
|
|
|
|
KJSProblems::KJSProblems(kjsSupportPart *part, TQWidget *parent, const char *name) : TDEListView(parent,name), m_part(part)
|
|
{
|
|
addColumn ("File");
|
|
addColumn ("Line #");
|
|
addColumn ("Problem:");
|
|
setIcon( SmallIcon("application-vnd.tde.info") );
|
|
}
|
|
|
|
|
|
KJSProblems::~KJSProblems()
|
|
{
|
|
|
|
}
|
|
|
|
void KJSProblems::clearItems()
|
|
{
|
|
clear();
|
|
setIcon( SmallIcon("application-vnd.tde.info") );
|
|
}
|
|
|
|
void KJSProblems::addLine(const TQString &file, int lineNo, const TQString &message)
|
|
{
|
|
new TQListViewItem( this, file, TQString::number( lineNo ), message);
|
|
setIcon( SmallIcon("error") );
|
|
}
|
|
|
|
|
|
#include "kjsproblems.moc"
|