umbrello  2.35.1
Umbrello UML Modeller is a Unified Modelling Language (UML) diagram program based on KDE Technology
Classes | Macros
uml.h File Reference
#include "basictypes.h"
#include "multipagedialogbase.h"
#include <kxmlguiwindow.h>
#include <kurl.h>
#include <ksharedconfig.h>
#include <QPointer>
Include dependency graph for uml.h:

Go to the source code of this file.

Classes

class  UMLApp
 

Macros

#define logDebug0(s)
 
#define logInfo0(s)   UMLApp::app()->logInfo(QLatin1String(s))
 
#define logWarn0(s)   UMLApp::app()->logWarn(QLatin1String(s))
 
#define logError0(s)   UMLApp::app()->logError(QLatin1String(s))
 
#define logDebug1(s, a)
 
#define logInfo1(s, a)   do { QString fmt = QString(QLatin1String(s)).arg(a); UMLApp::app()->logInfo(fmt); } while (0)
 
#define logWarn1(s, a)   do { QString fmt = QString(QLatin1String(s)).arg(a); UMLApp::app()->logWarn(fmt); } while (0)
 
#define logError1(s, a)   do { QString fmt = QString(QLatin1String(s)).arg(a); UMLApp::app()->logError(fmt); } while (0)
 
#define logDebug2(s, a, b)
 
#define logInfo2(s, a, b)   do { QString fmt = QString(QLatin1String(s)).arg(a).arg(b); UMLApp::app()->logInfo(fmt); } while (0)
 
#define logWarn2(s, a, b)   do { QString fmt = QString(QLatin1String(s)).arg(a).arg(b); UMLApp::app()->logWarn(fmt); } while (0)
 
#define logError2(s, a, b)   do { QString fmt = QString(QLatin1String(s)).arg(a).arg(b); UMLApp::app()->logError(fmt); } while (0)
 
#define logDebug3(s, a, b, c)
 
#define logInfo3(s, a, b, c)   do { QString fmt = QString(QLatin1String(s)).arg(a).arg(b).arg(c); UMLApp::app()->logInfo(fmt); } while (0)
 
#define logWarn3(s, a, b, c)   do { QString fmt = QString(QLatin1String(s)).arg(a).arg(b).arg(c); UMLApp::app()->logWarn(fmt); } while (0)
 
#define logError3(s, a, b, c)   do { QString fmt = QString(QLatin1String(s)).arg(a).arg(b).arg(c); UMLApp::app()->logError(fmt); } while (0)
 
#define logDebug4(s, a, b, c, d)
 
#define logInfo4(s, a, b, c, d)   do { QString fmt = QString(QLatin1String(s)).arg(a).arg(b).arg(c).arg(d); UMLApp::app()->logInfo(fmt); } while (0)
 
#define logWarn4(s, a, b, c, d)   do { QString fmt = QString(QLatin1String(s)).arg(a).arg(b).arg(c).arg(d); UMLApp::app()->logWarn(fmt); } while (0)
 
#define logError4(s, a, b, c, d)   do { QString fmt = QString(QLatin1String(s)).arg(a).arg(b).arg(c).arg(d); UMLApp::app()->logError(fmt); } while (0)
 
#define logDebug5(s, a, b, c, d, e)
 
#define logInfo5(s, a, b, c, d, e)
 
#define logWarn5(s, a, b, c, d, e)
 
#define logError5(s, a, b, c, d, e)
 
#define logDebug6(s, a, b, c, d, e, f)
 

Macro Definition Documentation

#define logDebug0 (   s)
Value:
if (UMLApp::app()->logToConsole() || Tracer::instance()->isEnabled(DBG_SRC)) \
UMLApp::app()->logDebug(QLatin1String(s))
static UMLApp * app()
Definition: uml.cpp:349
static Tracer * instance()
Definition: debug_utils.cpp:110
#define DBG_SRC
Definition: assocrules.cpp:10
#define logDebug1 (   s,
  a 
)
Value:
if (UMLApp::app()->logToConsole() || Tracer::instance()->isEnabled(DBG_SRC)) \
do { QString fmt = QString(QLatin1String(s)).arg(a); UMLApp::app()->logDebug(fmt); } while (0)
QString a
Definition: petalnode.cpp:13
static UMLApp * app()
Definition: uml.cpp:349
void logDebug(const QString &s)
Definition: uml.cpp:2037
static Tracer * instance()
Definition: debug_utils.cpp:110
#define DBG_SRC
Definition: assocrules.cpp:10
#define logDebug2 (   s,
  a,
  b 
)
Value:
if (UMLApp::app()->logToConsole() || Tracer::instance()->isEnabled(DBG_SRC)) \
do { QString fmt = QString(QLatin1String(s)).arg(a).arg(b); UMLApp::app()->logDebug(fmt); } while (0)
QString a
Definition: petalnode.cpp:13
static UMLApp * app()
Definition: uml.cpp:349
void logDebug(const QString &s)
Definition: uml.cpp:2037
static Tracer * instance()
Definition: debug_utils.cpp:110
bool b
Definition: cxx11-null-pointer-constant.h:6
#define DBG_SRC
Definition: assocrules.cpp:10
#define logDebug3 (   s,
  a,
  b,
 
)
Value:
if (UMLApp::app()->logToConsole() || Tracer::instance()->isEnabled(DBG_SRC)) \
do { QString fmt = QString(QLatin1String(s)).arg(a).arg(b).arg(c); UMLApp::app()->logDebug(fmt); } while (0)
QString a
Definition: petalnode.cpp:13
static UMLApp * app()
Definition: uml.cpp:349
void logDebug(const QString &s)
Definition: uml.cpp:2037
static Tracer * instance()
Definition: debug_utils.cpp:110
bool b
Definition: cxx11-null-pointer-constant.h:6
#define DBG_SRC
Definition: assocrules.cpp:10
#define logDebug4 (   s,
  a,
  b,
  c,
 
)
Value:
if (UMLApp::app()->logToConsole() || Tracer::instance()->isEnabled(DBG_SRC)) \
do { QString fmt = QString(QLatin1String(s)).arg(a).arg(b).arg(c).arg(d); UMLApp::app()->logDebug(fmt); } while (0)
QString a
Definition: petalnode.cpp:13
static UMLApp * app()
Definition: uml.cpp:349
void logDebug(const QString &s)
Definition: uml.cpp:2037
static Tracer * instance()
Definition: debug_utils.cpp:110
bool b
Definition: cxx11-null-pointer-constant.h:6
#define DBG_SRC
Definition: assocrules.cpp:10
#define logDebug5 (   s,
  a,
  b,
  c,
  d,
 
)
Value:
if (UMLApp::app()->logToConsole() || Tracer::instance()->isEnabled(DBG_SRC)) \
do { QString fmt = QString(QLatin1String(s)).arg(a).arg(b).arg(c).arg(d).arg(e); \
UMLApp::app()->logDebug(fmt); } while (0)
QString a
Definition: petalnode.cpp:13
static UMLApp * app()
Definition: uml.cpp:349
static Tracer * instance()
Definition: debug_utils.cpp:110
bool b
Definition: cxx11-null-pointer-constant.h:6
#define DBG_SRC
Definition: assocrules.cpp:10
#define logDebug6 (   s,
  a,
  b,
  c,
  d,
  e,
 
)
Value:
if (UMLApp::app()->logToConsole() || Tracer::instance()->isEnabled(DBG_SRC)) \
do { QString fmt = QString(QLatin1String(s)).arg(a).arg(b).arg(c).arg(d).arg(e).arg(f); UMLApp::app()->logDebug(fmt); } while (0)
QString a
Definition: petalnode.cpp:13
static UMLApp * app()
Definition: uml.cpp:349
void logDebug(const QString &s)
Definition: uml.cpp:2037
static Tracer * instance()
Definition: debug_utils.cpp:110
bool b
Definition: cxx11-null-pointer-constant.h:6
#define DBG_SRC
Definition: assocrules.cpp:10
#define logError0 (   s)    UMLApp::app()->logError(QLatin1String(s))
#define logError1 (   s,
  a 
)    do { QString fmt = QString(QLatin1String(s)).arg(a); UMLApp::app()->logError(fmt); } while (0)
#define logError2 (   s,
  a,
  b 
)    do { QString fmt = QString(QLatin1String(s)).arg(a).arg(b); UMLApp::app()->logError(fmt); } while (0)
#define logError3 (   s,
  a,
  b,
 
)    do { QString fmt = QString(QLatin1String(s)).arg(a).arg(b).arg(c); UMLApp::app()->logError(fmt); } while (0)
#define logError4 (   s,
  a,
  b,
  c,
 
)    do { QString fmt = QString(QLatin1String(s)).arg(a).arg(b).arg(c).arg(d); UMLApp::app()->logError(fmt); } while (0)
#define logError5 (   s,
  a,
  b,
  c,
  d,
 
)
Value:
do { QString fmt = QString(QLatin1String(s)).arg(a).arg(b).arg(c).arg(d).arg(e); \
UMLApp::app()->logError(fmt); } while (0)
QString a
Definition: petalnode.cpp:13
bool b
Definition: cxx11-null-pointer-constant.h:6
#define logInfo0 (   s)    UMLApp::app()->logInfo(QLatin1String(s))
#define logInfo1 (   s,
  a 
)    do { QString fmt = QString(QLatin1String(s)).arg(a); UMLApp::app()->logInfo(fmt); } while (0)
#define logInfo2 (   s,
  a,
  b 
)    do { QString fmt = QString(QLatin1String(s)).arg(a).arg(b); UMLApp::app()->logInfo(fmt); } while (0)
#define logInfo3 (   s,
  a,
  b,
 
)    do { QString fmt = QString(QLatin1String(s)).arg(a).arg(b).arg(c); UMLApp::app()->logInfo(fmt); } while (0)
#define logInfo4 (   s,
  a,
  b,
  c,
 
)    do { QString fmt = QString(QLatin1String(s)).arg(a).arg(b).arg(c).arg(d); UMLApp::app()->logInfo(fmt); } while (0)
#define logInfo5 (   s,
  a,
  b,
  c,
  d,
 
)
Value:
do { QString fmt = QString(QLatin1String(s)).arg(a).arg(b).arg(c).arg(d).arg(e); \
UMLApp::app()->logInfo(fmt); } while (0)
QString a
Definition: petalnode.cpp:13
bool b
Definition: cxx11-null-pointer-constant.h:6
#define logWarn0 (   s)    UMLApp::app()->logWarn(QLatin1String(s))
#define logWarn1 (   s,
  a 
)    do { QString fmt = QString(QLatin1String(s)).arg(a); UMLApp::app()->logWarn(fmt); } while (0)
#define logWarn2 (   s,
  a,
  b 
)    do { QString fmt = QString(QLatin1String(s)).arg(a).arg(b); UMLApp::app()->logWarn(fmt); } while (0)
#define logWarn3 (   s,
  a,
  b,
 
)    do { QString fmt = QString(QLatin1String(s)).arg(a).arg(b).arg(c); UMLApp::app()->logWarn(fmt); } while (0)
#define logWarn4 (   s,
  a,
  b,
  c,
 
)    do { QString fmt = QString(QLatin1String(s)).arg(a).arg(b).arg(c).arg(d); UMLApp::app()->logWarn(fmt); } while (0)
#define logWarn5 (   s,
  a,
  b,
  c,
  d,
 
)
Value:
do { QString fmt = QString(QLatin1String(s)).arg(a).arg(b).arg(c).arg(d).arg(e); \
UMLApp::app()->logWarn(fmt); } while (0)
QString a
Definition: petalnode.cpp:13
bool b
Definition: cxx11-null-pointer-constant.h:6