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.
kile/src/kile/kilestdtools.h

133 lines
2.8 KiB

/***************************************************************************
begin : Thu Nov 27 2003
copyright : (C) 2003 by Jeroen Wijnhout
email : Jeroen.Wijnhout@kdemail.net
***************************************************************************/
/***************************************************************************
* *
* 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 KILESTDTOOLS_H
#define KILESTDTOOLS_H
#include "kiledebug.h"
#include <tqstring.h>
#include "kiletool.h"
class TDEConfig;
namespace KileTool
{
class View;
class Compile;
class Manager;
class Factory
{
public:
Factory(Manager *mngr, TDEConfig *config) : m_manager(mngr), m_config(config) {}
~Factory() {}
Base* create(const TQString & tool, bool prepare = true);
void writeStdConfig();
private:
Manager *m_manager;
TDEConfig *m_config;
};
class LaTeX : public Compile
{
TQ_OBJECT
public:
LaTeX(const TQString & tool, Manager *mngr, bool prepare) : Compile(tool, mngr, prepare) {}
signals:
void jumpToFirstError();
public slots:
bool finish(int);
protected:
bool filterLogfile();
void checkErrors(int &nErrors, int &nWarnings);
void checkAutoRun(int nErrors, int nWarnings);
private:
bool updateBibs();
bool updateIndex();
bool updateAsy();
private:
static int m_reRun;
};
class PreviewLaTeX : public LaTeX
{
TQ_OBJECT
public:
PreviewLaTeX(const TQString & tool, Manager *mngr, bool prepare) : LaTeX(tool, mngr, prepare) {}
void setPreviewInfo(const TQString &filename, int selrow,int docrow);
public slots:
bool finish(int);
private:
TQString m_filename;
int m_selrow;
int m_docrow;
};
class ForwardDVI : public View
{
public:
ForwardDVI(const TQString & tool, Manager *mngr, bool prepare = true) : View(tool, mngr, prepare) {}
protected:
bool determineTarget();
private:
TQString m_urlstr;
};
class ViewBib : public View
{
public:
ViewBib(const TQString & tool, Manager *mngr, bool prepare = true) : View(tool, mngr, prepare) {}
protected:
bool determineSource();
};
class ViewHTML : public View
{
TQ_OBJECT
public:
ViewHTML(const TQString & tool, Manager *mngr, bool prepare = true) : View(tool, mngr, prepare) {}
protected:
bool determineTarget();
signals:
void updateStatus(bool, bool);
};
}
#endif