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.
68 lines
2.3 KiB
68 lines
2.3 KiB
15 years ago
|
/***************************************************************************
|
||
|
mimehdrline.h - description
|
||
|
-------------------
|
||
|
begin : Wed Oct 11 2000
|
||
|
copyright : (C) 2000 by Sven Carstens
|
||
|
email : s.carstens@gmx.de
|
||
|
***************************************************************************/
|
||
|
|
||
|
/***************************************************************************
|
||
|
* *
|
||
|
* 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 MIMEHDRLINE_H
|
||
|
#define MIMEHDRLINE_H
|
||
|
|
||
|
|
||
15 years ago
|
#include <tqcstring.h>
|
||
|
#include <tqasciidict.h>
|
||
15 years ago
|
|
||
|
/**
|
||
|
*@author Sven Carstens
|
||
|
*/
|
||
|
|
||
|
class mimeHdrLine
|
||
|
{
|
||
|
public:
|
||
|
mimeHdrLine ();
|
||
|
mimeHdrLine (mimeHdrLine *);
|
||
15 years ago
|
mimeHdrLine (const TQCString &, const TQCString &);
|
||
15 years ago
|
~mimeHdrLine ();
|
||
|
/** parse a Line into the class
|
||
|
and report characters slurped */
|
||
|
int setStr (const char *);
|
||
|
int appendStr (const char *);
|
||
|
/** return the value */
|
||
15 years ago
|
const TQCString& getValue ();
|
||
15 years ago
|
/** return the label */
|
||
15 years ago
|
const TQCString& getLabel ();
|
||
|
static TQCString truncateLine (TQCString, unsigned int truncate = 80);
|
||
15 years ago
|
static int parseSeparator (char, const char *);
|
||
|
static int parseQuoted (char, char, const char *);
|
||
|
/** skip all white space characters */
|
||
|
static int skipWS (const char *);
|
||
|
/** slurp one word respecting backticks */
|
||
|
static int parseHalfWord (const char *);
|
||
|
static int parseWord (const char *);
|
||
|
static int parseAlphaNum (const char *);
|
||
|
|
||
|
protected: // Protected attributes
|
||
14 years ago
|
/** contains the Value
|
||
15 years ago
|
*/
|
||
15 years ago
|
TQCString mimeValue;
|
||
14 years ago
|
/** contains the Label of the line
|
||
15 years ago
|
*/
|
||
15 years ago
|
TQCString mimeLabel;
|
||
15 years ago
|
protected: // Protected methods
|
||
|
/** parses a continuated line */
|
||
|
int parseFullLine (const char *);
|
||
|
int parseHalfLine (const char *);
|
||
|
};
|
||
|
|
||
|
#endif
|