##// END OF EJS Templates
Spectrogram segfault should be fixed now, added ability to provide Spectrogram min sampling time to avoid computation when possible...
Spectrogram segfault should be fixed now, added ability to provide Spectrogram min sampling time to avoid computation when possible Spectrogram visu is still broken... Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>

File last commit:

r1420:3c3e24550401
r1467:da44adcd99e4
Show More
VariableMenuHeaderWidget.h
39 lines | 917 B | text/x-c | CLexer
/ gui / include / Variable / VariableMenuHeaderWidget.h
#ifndef SCIQLOP_VARIABLEMENUHEADERWIDGET_H
#define SCIQLOP_VARIABLEMENUHEADERWIDGET_H
#include <QLoggingCategory>
#include <QWidget>
#include <memory>
namespace Ui
{
class VariableMenuHeaderWidget;
} // Ui
class Variable2;
Q_DECLARE_LOGGING_CATEGORY(LOG_VariableMenuHeaderWidget)
/**
* @brief The VariableMenuHeaderWidget class represents the widget used as a header of a menu in the
* variable inspector
* @sa VariableInspectorWidget
*/
class VariableMenuHeaderWidget : public QWidget
{
public:
/**
* Ctor
* @param variables the list of variables used to generate the header
* @param parent the parent widget
*/
explicit VariableMenuHeaderWidget(
const QVector<std::shared_ptr<Variable2>>& variables, QWidget* parent = 0);
virtual ~VariableMenuHeaderWidget() noexcept;
private:
Ui::VariableMenuHeaderWidget* ui;
};
#endif // SCIQLOP_VARIABLEMENUHEADERWIDGET_H