PeriDyno 1.0.0
Loading...
Searching...
No Matches
PStatusBar.cpp
Go to the documentation of this file.
1#include "PStatusBar.h"
2
3#include <QPushButton>
4#include <QProgressBar>
5#include <QLabel>
6
7namespace dyno
8{
9 PStatusBar::PStatusBar(QWidget *parent) :
10 QStatusBar(parent),
11 m_progressBar(nullptr),
12 m_progressLabel(nullptr)
13 {
14 m_progressBar = new QProgressBar();
15 m_progressLabel = new QLabel();
16
17 m_progressBar->setFixedWidth(200);
18
19 addPermanentWidget(m_progressBar);
20 addPermanentWidget(m_progressLabel);
21
22 m_progressBar->hide();
23 }
24
25}
26
QProgressBar * m_progressBar
Definition PStatusBar.h:17
PStatusBar(QWidget *parent=Q_NULLPTR)
Definition PStatusBar.cpp:9
QLabel * m_progressLabel
Definition PStatusBar.h:18
This is an implementation of AdditiveCCD based on peridyno.
Definition Array.h:25