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

r1420:3c3e24550401
r1478:6e3f56cd8c8b
Show More
IVariableContainer.h
23 lines | 592 B | text/x-c | CLexer
Alexandre Leroux
Creates a interface that defines a variable container...
r209 #ifndef SCIQLOP_IVARIABLECONTAINER_H
#define SCIQLOP_IVARIABLECONTAINER_H
Switched to new TS impl but quite broken!...
r1420 class Variable2;
Alexandre Leroux
Creates a interface that defines a variable container...
r209
/**
* @brief The IVariableContainer interface represents an UI object that can accommodate a variable
*/
Switched to new TS impl but quite broken!...
r1420 class IVariableContainer
{
Alexandre Leroux
Creates a interface that defines a variable container...
r209
public:
virtual ~IVariableContainer() = default;
/// Checks if the container can handle the variable passed in parameter
Switched to new TS impl but quite broken!...
r1420 virtual bool canDrop(Variable2& variable) const = 0;
Alexandre Leroux
Unplot menu (5): adds contains() method to an IVariableContainer...
r327
/// Checks if the container contains the variable passed in parameter
Switched to new TS impl but quite broken!...
r1420 virtual bool contains(Variable2& variable) const = 0;
Alexandre Leroux
Creates a interface that defines a variable container...
r209 };
#endif // SCIQLOP_IVARIABLECONTAINER_H