summaryrefslogtreecommitdiffstats
path: root/addon/doxywizard/config_msg.cpp
blob: fc842064e5672aa3cf34452908db02054682d8cd (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
#include <QString>
#include "config_msg.h"
#include "doxywizard.h"

static QString warning_str = QString::fromLatin1("warning: ");
static QString error_str = QString::fromLatin1("error: ");

void config_err(const char *fmt, ...)
{
  QString msg = error_str;

  msg.append(QString::fromLatin1(fmt));
  va_list args;
  va_start(args, fmt);
  char debugOut[1000]; // this size should be sufficient
  vsnprintf(debugOut, 1000,qPrintable(msg), args);
  MainWindow::instance().outputLogText(QString::fromLatin1(debugOut));
  va_end(args);
}

void config_term(const char *fmt, ...)
{
  QString msg = error_str;

  msg.append(QString::fromLatin1(fmt));
  va_list args;
  va_start(args, fmt);
  char debugOut[1000]; // this size should be sufficient
  vsnprintf(debugOut, 1000,qPrintable(msg), args);
  MainWindow::instance().outputLogText(QString::fromLatin1(debugOut));
  va_end(args);
  exit(1);
}

void config_warn(const char *fmt, ...)
{
  QString msg = warning_str;

  msg.append(QString::fromLatin1(fmt));
  va_list args;
  va_start(args, fmt);
  char debugOut[1000];
  vsnprintf(debugOut, 1000,qPrintable(msg), args);
  MainWindow::instance().outputLogText(QString::fromLatin1(debugOut));
  va_end(args);
}

void config_open()
{
  MainWindow::instance().outputLogStart();
}

void config_finish()
{
  MainWindow::instance().outputLogFinish();
}