1999-10-07 18:44:17 +00:00
|
|
|
// -*- C++ -*-
|
|
|
|
|
|
|
|
#ifndef LYXDEBUG_H
|
|
|
|
#define LYXDEBUG_H
|
|
|
|
|
|
|
|
#include "LString.h"
|
1999-12-17 14:16:05 +00:00
|
|
|
#include "support/LOstream.h"
|
1999-11-25 17:29:19 +00:00
|
|
|
#include "support/lstrings.h"
|
1999-10-07 18:44:17 +00:00
|
|
|
|
|
|
|
/** Ideally this should have been a namespace, but since we try to be
|
|
|
|
compilable on older C++ compilators too, we use a struct instead.
|
|
|
|
This is all the different debug levels that we have.
|
|
|
|
*/
|
|
|
|
struct Debug {
|
|
|
|
///
|
|
|
|
enum type {
|
|
|
|
///
|
|
|
|
NONE = 0,
|
|
|
|
///
|
|
|
|
INFO = (1 << 0), // 1
|
|
|
|
///
|
|
|
|
INIT = (1 << 1), // 2
|
|
|
|
///
|
|
|
|
KEY = (1 << 2), // 4
|
|
|
|
///
|
|
|
|
TOOLBAR = (1 << 3), // 8
|
|
|
|
///
|
|
|
|
PARSER = (1 << 4), // 16
|
|
|
|
///
|
|
|
|
LYXRC = (1 << 5), // 32
|
|
|
|
///
|
|
|
|
KBMAP = (1 << 6), // 64
|
|
|
|
///
|
|
|
|
LATEX = (1 << 7), // 128
|
|
|
|
///
|
|
|
|
MATHED = (1 << 8), // 256 // Alejandro, please use this.
|
|
|
|
///
|
|
|
|
FONT = (1 << 9), // 512
|
|
|
|
///
|
|
|
|
TCLASS = (1 << 10), // 1024
|
|
|
|
///
|
|
|
|
LYXVC = (1 << 11), // 2048
|
|
|
|
///
|
|
|
|
LYXSERVER = (1 << 12), // 4096
|
|
|
|
///
|
1999-11-25 17:29:19 +00:00
|
|
|
ROFF = (1 << 13), // 8192
|
|
|
|
///
|
2000-01-06 02:44:26 +00:00
|
|
|
ACTION = (1 << 14), // 16384
|
|
|
|
///
|
2000-01-25 12:35:27 +00:00
|
|
|
LYXLEX = (1 << 15),
|
|
|
|
///
|
|
|
|
DEPEND = (1 << 16)
|
1999-10-07 18:44:17 +00:00
|
|
|
};
|
|
|
|
///
|
|
|
|
static const type ANY = type(INFO | INIT | KEY | TOOLBAR |
|
|
|
|
PARSER | LYXRC | KBMAP | LATEX |
|
|
|
|
MATHED | FONT | TCLASS | LYXVC |
|
2000-01-25 12:35:27 +00:00
|
|
|
LYXSERVER | ROFF | ACTION | LYXLEX |
|
|
|
|
DEPEND);
|
1999-11-04 01:40:20 +00:00
|
|
|
///
|
|
|
|
friend inline void operator|=(Debug::type & d1, Debug::type d2);
|
|
|
|
|
1999-10-07 18:44:17 +00:00
|
|
|
/** A function to convert symbolic string names on debug levels
|
|
|
|
to their numerical value.
|
|
|
|
*/
|
1999-12-13 15:31:52 +00:00
|
|
|
static Debug::type value(string const & val);
|
|
|
|
|
|
|
|
/** Display the tags and descriptions of the current debug level
|
|
|
|
of ds
|
|
|
|
*/
|
1999-12-13 21:59:26 +00:00
|
|
|
static void showLevel(ostream & o, type level);
|
1999-12-13 15:31:52 +00:00
|
|
|
|
|
|
|
/** show all the possible tags that can be used for debugging */
|
1999-12-13 21:59:26 +00:00
|
|
|
static void showTags(ostream & o);
|
1999-12-13 15:31:52 +00:00
|
|
|
|
1999-10-07 18:44:17 +00:00
|
|
|
};
|
1999-12-13 15:31:52 +00:00
|
|
|
|
1999-12-13 21:59:26 +00:00
|
|
|
|
1999-11-04 01:40:20 +00:00
|
|
|
///
|
2000-03-07 01:14:37 +00:00
|
|
|
inline
|
|
|
|
void operator|= (Debug::type & d1, Debug::type d2)
|
1999-11-04 01:40:20 +00:00
|
|
|
{
|
|
|
|
d1 = static_cast<Debug::type>(d1 | d2);
|
|
|
|
}
|
1999-10-07 18:44:17 +00:00
|
|
|
|
|
|
|
|
|
|
|
#include "support/DebugStream.h"
|
|
|
|
|
1999-12-13 21:59:26 +00:00
|
|
|
|
1999-10-13 10:34:07 +00:00
|
|
|
///
|
|
|
|
ostream & operator<<(ostream & o, Debug::type t);
|
|
|
|
|
1999-10-07 18:44:17 +00:00
|
|
|
extern DebugStream lyxerr;
|
|
|
|
|
|
|
|
#endif
|