##// END OF EJS Templates
Some progress on new Catalogue GUI, can display most of items, still lack edition and link to SciQLop...
Some progress on new Catalogue GUI, can display most of items, still lack edition and link to SciQLop Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>

File last commit:

r1408:45ab63a4480c
r1408:45ab63a4480c
Show More
browser.h
27 lines | 640 B | text/x-c | CLexer
#ifndef BROWSER_H
#define BROWSER_H
#include <QWidget>
#include <Catalogue/CatalogueController.h>
namespace Ui {
class Browser;
}
class Browser : public QWidget
{
Q_OBJECT
public:
explicit Browser(QWidget *parent = nullptr);
~Browser();
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