From e9ae80694875f869892f13f4fcaf1170a00dea41 Mon Sep 17 00:00:00 2001 From: toma Date: Wed, 25 Nov 2009 17:56:58 +0000 Subject: Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. BUG:215923 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdewebdev@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- quanta/messages/messageitem.h | 54 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 quanta/messages/messageitem.h (limited to 'quanta/messages/messageitem.h') diff --git a/quanta/messages/messageitem.h b/quanta/messages/messageitem.h new file mode 100644 index 00000000..01e04b35 --- /dev/null +++ b/quanta/messages/messageitem.h @@ -0,0 +1,54 @@ +/*************************************************************************** + messageoutput.h - description + ------------------- + begin : Jan 12 2001 + copyright : (C) 2001 by Dmitry Poplavsky + (C) 2002-2005 Andras Mantia + ***************************************************************************/ + +/*************************************************************************** + * * + * 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. * + * * + ***************************************************************************/ + + +#ifndef MESSAGEITEM_H +#define MESSAGEITEM_H + +#include + +/** + Like QListBoxText with storing of filename and line in it. +*/ + +class MessageItem : public QListBoxText { + public: + + MessageItem( QListBox *listbox, const QString &text = QString::null, int line = -1, int column = -1, const QString &fname = QString::null); + + /** return line number for file , associated with this message */ + int line(); + /** return column number for file , associated with this message */ + int column(); + /** return name of file , associated with this message */ + QString fileName(); + + void setLine(int line) { lineNumber = line; } + void setColumn(int line) { columnNumber = line; } + void setFileName(const QString &fileName ) { filename = fileName; } + void addText(const QString &text); + private: + + // line number and filename , associated with this line + int lineNumber; ///< the line of the item. -1 if not defined + int columnNumber; ///< the column of the item. -1 if not defined + QString filename; ///< the filename (URL) of the item. Empty if not defined + +}; + +#endif + -- cgit v1.2.3