summaryrefslogtreecommitdiffstats
path: root/src/kile/kilestdtools.h
blob: ca5e6b261d4e7fde9698fbbad4295ae512e620fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
/***************************************************************************
    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 KConfig;

namespace KileTool
{
	class View;
	class Compile;
	class Manager;

	class Factory
	{
	public:
		Factory(Manager *mngr, KConfig *config) : m_manager(mngr), m_config(config) {}
		~Factory() {}

		Base* create(const TQString & tool, bool prepare = true);

		void writeStdConfig();

	private:
		Manager		*m_manager;
		KConfig		*m_config;
	};

	class LaTeX : public Compile
	{
		Q_OBJECT
  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
	{
		Q_OBJECT
  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
	{
		Q_OBJECT
  TQ_OBJECT

	public:
		ViewHTML(const TQString & tool, Manager *mngr, bool prepare = true) : View(tool, mngr, prepare) {}

	protected:
		bool determineTarget();

	signals:
		void updatetqStatus(bool, bool);
	};
}

#endif