diff options
Diffstat (limited to 'ksystemlog/src/cups/cupsReader.h')
-rw-r--r-- | ksystemlog/src/cups/cupsReader.h | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/ksystemlog/src/cups/cupsReader.h b/ksystemlog/src/cups/cupsReader.h new file mode 100644 index 0000000..d6ad426 --- /dev/null +++ b/ksystemlog/src/cups/cupsReader.h @@ -0,0 +1,63 @@ +/*************************************************************************** + * Copyright (C) 2005 by Nicolas Ternisien * + * [email protected] * + * * + * 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; if not, write to the * + * Free Software Foundation, Inc., * + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * + ***************************************************************************/ + +#ifndef _CUPS_READER_H_ +#define _CUPS_READER_H_ + +#include <qobject.h> +#include <qstringlist.h> +#include <kurl.h> +#include <qfile.h> + +#include "view.h" +#include "globals.h" + +#include "defaultReader.h" + + +/** + * @author Nicolas Ternisien + */ +class CupsReader : public DefaultReader { + Q_OBJECT + + public: + CupsReader(QObject *parent = 0, const char *name = 0); + + virtual ~CupsReader(); + + virtual void initColumns(LogViewColumns* columns); + + protected: + + virtual LogLine* parseMessage(QString& logLine, LogFile* logFile); + + private: + QMap<QChar, LogLevel*> mapTypeLevels; + + void initializeTypeLevels(); + + LogLevel* getTypeLevel(const QChar& type); + + + +}; + +#endif |