##// END OF EJS Templates
PySide2 bindings + some GUI clean...
PySide2 bindings + some GUI clean - simple Python plugin with scalar product works - launcher args are forwarded to SciQLop app, this allow to choose between wayland and xcb for example - removed all not implemented widgets on main GUI - moved all widgets except plots into QDocWidgets Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>

File last commit:

r1460:ffe37c282008
r1478:6e3f56cd8c8b
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