File: config_msg.cpp

package info (click to toggle)
doxygen 1.9.4-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 22,612 kB
  • sloc: cpp: 214,140; lex: 40,502; python: 31,110; ansic: 17,177; xml: 11,891; javascript: 2,630; yacc: 580; php: 441; perl: 377; makefile: 186; sh: 26; objc: 14; cs: 5; f90: 4; java: 1
file content (56 lines) | stat: -rw-r--r-- 1,343 bytes parent folder | download | duplicates (6)
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();
}