##// 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:

r1460:ffe37c282008
r1467:da44adcd99e4
Show More
browser.h
30 lines | 680 B | text/x-c | CLexer
#ifndef BROWSER_H
#define BROWSER_H
#include <Catalogue/CatalogueController.h>
#include <QWidget>
namespace Ui
{
class Browser;
}
class CataloguesBrowser : public QWidget
{
Q_OBJECT
public:
explicit CataloguesBrowser(QWidget* parent = nullptr);
~CataloguesBrowser();
private slots:
void repositorySelected(const QString& repo);
void catalogueSelected(const CatalogueController::Catalogue_ptr& catalogue);
void eventSelected(const CatalogueController::Event_ptr& event);
void productSelected(
const CatalogueController::Product_t& product, const CatalogueController::Event_ptr& event);
private:
Ui::Browser* ui;
};
#endif // BROWSER_H