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.
koffice/filters/kword/rtf/import/rtfimport_tokenizer.h

63 lines
1.3 KiB

/*
This file is part of the KDE project
Copyright (C) 2001 Ewald Snel <ewald@rambo.its.tudelft.nl>
Copyright (C) 2001 Tomasz Grobelny <grotk@poczta.onet.pl>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
*/
#ifndef __RTFIMPORT_TOKENIZER_H__
#define __RTFIMPORT_TOKENIZER_H__
#include <tqcstring.h>
#include <tqfile.h>
/// This class represents the tokenizer and the token
class RTFTokenizer
{
public:
enum TokenType { OpenGroup, CloseGroup, ControlWord, PlainText, BinaryData };
RTFTokenizer();
/**
* Open tokenizer from file.
* @param in the input file
*/
void open( TQFile *in );
/**
* Reads the next token.
*/
void next();
// token data
/// plain text or control word/symbol
char *text;
TokenType type;
/// numeric parameter
int value;
/// token has a (numeric) parameter
bool hasParam;
public:
/// Binary data (of \\bin keyword)
TQByteArray binaryData;
// tokenizer (private) data
private:
int nextChar();
TQFile *infile;
TQByteArray fileBuffer;
TQCString tokenText;
uchar *fileBufferPtr;
uchar *fileBufferEnd;
};
#endif