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.
65 lines
1.9 KiB
65 lines
1.9 KiB
/***************************************************************************
|
|
sagroupparser.h - description
|
|
-------------------
|
|
begin : Wed Feb 11 2004
|
|
copyright : (C) 2004 Andras Mantia <amantia@kde.org>
|
|
***************************************************************************/
|
|
|
|
/***************************************************************************
|
|
* *
|
|
* 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 SAGROUPPARSER_H
|
|
#define SAGROUPPARSER_H
|
|
|
|
//qt includes
|
|
#include <tqobject.h>
|
|
|
|
//forward definitions
|
|
class TQTimer;
|
|
class Document;
|
|
class Node;
|
|
class SAParser;
|
|
|
|
/**
|
|
This class is used to parse for special area (script) groups in the node tree.
|
|
*/
|
|
class SAGroupParser : public TQObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
public:
|
|
SAGroupParser(SAParser *parent, Document *write, Node *startNode, Node *endNode, bool synchronous, bool parsingLastNode, bool paringLastGroup);
|
|
~SAGroupParser() {};
|
|
|
|
TQTimer *m_parseForGroupTimer;
|
|
|
|
public slots:
|
|
void slotParseForScriptGroup();
|
|
|
|
signals:
|
|
void rebuildStructureTree(bool);
|
|
void cleanGroups();
|
|
void parsingDone(SAGroupParser*);
|
|
|
|
private:
|
|
void parseForScriptGroup(Node *node);
|
|
|
|
bool m_lastGroupParsed;
|
|
bool m_parsingLastNode;
|
|
bool m_synchronous;
|
|
SAParser *m_parent;
|
|
Node* g_node;
|
|
Node* g_endNode;
|
|
Document *m_write;
|
|
int m_count;
|
|
};
|
|
|
|
#endif
|