##// END OF EJS Templates
Set revision to 1.1.0 some work to bring back catalogs...
Set revision to 1.1.0 some work to bring back catalogs Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>

File last commit:

r1460:ffe37c282008
r1460:ffe37c282008
Show More
browser.h
30 lines | 680 B | text/x-c | CLexer
Some progress on new Catalogue GUI, can display most of items, still lack edition and link to SciQLop...
r1408 #ifndef BROWSER_H
#define BROWSER_H
#include <Catalogue/CatalogueController.h>
Set revision to 1.1.0 some work to bring back catalogs...
r1460 #include <QWidget>
Some progress on new Catalogue GUI, can display most of items, still lack edition and link to SciQLop...
r1408
Set revision to 1.1.0 some work to bring back catalogs...
r1460 namespace Ui
{
Some progress on new Catalogue GUI, can display most of items, still lack edition and link to SciQLop...
r1408 class Browser;
}
Set revision to 1.1.0 some work to bring back catalogs...
r1460 class CataloguesBrowser : public QWidget
Some progress on new Catalogue GUI, can display most of items, still lack edition and link to SciQLop...
r1408 {
Q_OBJECT
public:
Set revision to 1.1.0 some work to bring back catalogs...
r1460 explicit CataloguesBrowser(QWidget* parent = nullptr);
~CataloguesBrowser();
Some progress on new Catalogue GUI, can display most of items, still lack edition and link to SciQLop...
r1408 private slots:
void repositorySelected(const QString& repo);
void catalogueSelected(const CatalogueController::Catalogue_ptr& catalogue);
void eventSelected(const CatalogueController::Event_ptr& event);
Set revision to 1.1.0 some work to bring back catalogs...
r1460 void productSelected(
const CatalogueController::Product_t& product, const CatalogueController::Event_ptr& event);
Some progress on new Catalogue GUI, can display most of items, still lack edition and link to SciQLop...
r1408 private:
Set revision to 1.1.0 some work to bring back catalogs...
r1460 Ui::Browser* ui;
Some progress on new Catalogue GUI, can display most of items, still lack edition and link to SciQLop...
r1408 };
#endif // BROWSER_H