~ubuntu-branches/debian/sid/kdevelop/sid

« back to all changes in this revision

Viewing changes to languages/kjssupport/kjsproblems.h

  • Committer: Bazaar Package Importer
  • Author(s): Jeremy Lainé
  • Date: 2006-05-23 18:39:42 UTC
  • Revision ID: james.westby@ubuntu.com-20060523183942-hucifbvh68k2bwz7
Tags: upstream-3.3.2
Import upstream version 3.3.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* 
 
2
   Copyright (C) 2003 ian reinhart geiser <geiseri@kde.org> 
 
3
 
 
4
   This library is free software; you can redistribute it and/or
 
5
   modify it under the terms of the GNU Library General Public
 
6
   version 2, License as published by the Free Software Foundation.
 
7
 
 
8
   This library is distributed in the hope that it will be useful,
 
9
   but WITHOUT ANY WARRANTY; without even the implied warranty of
 
10
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
11
   Library General Public License for more details.
 
12
 
 
13
   You should have received a copy of the GNU Library General Public License
 
14
   along with this library; see the file COPYING.LIB.  If not, write to
 
15
   the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 
16
   Boston, MA 02111-1307, USA.
 
17
*/
 
18
 
 
19
#ifndef KJSPROBLEMS_H
 
20
#define KJSPROBLEMS_H
 
21
 
 
22
#include <klistview.h>
 
23
class kjsSupportPart;
 
24
 
 
25
/**
 
26
@author ian reinhart geiser
 
27
*/
 
28
class KJSProblems : public KListView
 
29
{
 
30
Q_OBJECT
 
31
public:
 
32
 
 
33
    KJSProblems(kjsSupportPart *part, QWidget *parent = 0L, const char *name = 0L);
 
34
    ~KJSProblems();
 
35
 
 
36
    void clearItems();
 
37
    void addLine(const QString &file, int lineNo, const QString &message);
 
38
 
 
39
private:
 
40
    kjsSupportPart *m_part;
 
41
};
 
42
 
 
43
#endif