This implements the proposal from #124512. For that it contains the following changes: * Remove the global override of `new`/`delete` when `WITH_CXX_GUARDEDALLOC` was enabled. * Always use `MEM_CXX_CLASS_ALLOC_FUNCS` where it is currently used. This used to be guarded by `WITH_CXX_GUARDEDALLOC` in some but not all cases. This means that a few classes which didn't use our guarded allocator by default before, are now using it. Pull Request: https://projects.blender.org/blender/blender/pulls/130181
76 lines
1.1 KiB
C++
76 lines
1.1 KiB
C++
/* SPDX-FileCopyrightText: 2023 Blender Authors
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
|
|
#pragma once
|
|
|
|
/** \file
|
|
* \ingroup freestyle
|
|
* \brief Class to encapsulate a progress bar
|
|
*/
|
|
|
|
#include <string>
|
|
|
|
#include "MEM_guardedalloc.h"
|
|
|
|
using namespace std;
|
|
|
|
namespace Freestyle {
|
|
|
|
class ProgressBar {
|
|
public:
|
|
inline ProgressBar()
|
|
{
|
|
_numtotalsteps = 0;
|
|
_progress = 0;
|
|
}
|
|
|
|
virtual ~ProgressBar() {}
|
|
|
|
virtual void reset()
|
|
{
|
|
_numtotalsteps = 0;
|
|
_progress = 0;
|
|
}
|
|
|
|
virtual void setTotalSteps(uint n)
|
|
{
|
|
_numtotalsteps = n;
|
|
}
|
|
|
|
virtual void setProgress(uint i)
|
|
{
|
|
_progress = i;
|
|
}
|
|
|
|
virtual void setLabelText(const string &s)
|
|
{
|
|
_label = s;
|
|
}
|
|
|
|
/** accessors */
|
|
inline uint getTotalSteps() const
|
|
{
|
|
return _numtotalsteps;
|
|
}
|
|
|
|
inline uint getProgress() const
|
|
{
|
|
return _progress;
|
|
}
|
|
|
|
inline string getLabelText() const
|
|
{
|
|
return _label;
|
|
}
|
|
|
|
protected:
|
|
uint _numtotalsteps;
|
|
uint _progress;
|
|
string _label;
|
|
|
|
MEM_CXX_CLASS_ALLOC_FUNCS("Freestyle:ProgressBar")
|
|
};
|
|
|
|
} /* namespace Freestyle */
|