histogramoptpanel.hpp 374 Bytes
Newer Older
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
#ifndef CVVISUAL_HISTOGRAM_OPT_PANEL
#define CVVISUAL_HISTOGRAM_OPT_PANEL

#include <QWidget>

#include "histogram.hpp"

namespace cvv
{
namespace qtutil
{

class HistogramOptPanel
  : public QWidget
{
  Q_OBJECT

  public:
    HistogramOptPanel(const Histogram& hist, bool showHideButton = true, QWidget* parent = nullptr);

};

}
}

#endif // CVVISUAL_HISTOGRAM_OPT_PANEL