MCPcopy Create free account
hub / github.com/cpvrlab/ImagePlay / AboutWindow

Method AboutWindow

ImagePlay/src/AboutWindow.cpp:25–34  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

23#include "MainWindow.h"
24
25AboutWindow::AboutWindow(QWidget *parent) :
26 QDialog(parent),
27 ui(new Ui::AboutWindow)
28{
29 ui->setupUi(this);
30
31 QString version("<b>Version: </b> %1, <b>Build Date: </b> %2 %3, <b>IPL API: </b>%4, <b>OpenCV: </b>%5.%6, <b>Qt: </b>%7");
32
33 ui->labelVersion->setText(version.arg(IMAGEPLAY_VERSION).arg(IMAGEPLAY_BUILDDATE).arg(IMAGEPLAY_BUILDTIME).arg(IPL_VERSION).arg(CV_MAJOR_VERSION).arg(CV_MINOR_VERSION).arg(QT_VERSION_STR));
34}
35
36AboutWindow::~AboutWindow()
37{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected