##// END OF EJS Templates
Started PySide2 migration, builds with CMake and produces a working binary...
Started PySide2 migration, builds with CMake and produces a working binary Need to port all previous stuff from Pybind11 to PySide2/shboken Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>

File last commit:

r1328:eb278710ae3b
r1477:70de8bd3d575
Show More
FilteringAction.h
19 lines | 492 B | text/x-c | CLexer
#ifndef SCIQLOP_FILTERINGACTION_H
#define SCIQLOP_FILTERINGACTION_H
#include <Common/spimpl.h>
#include <QWidgetAction>
/// A LineEdit inside an action which is able to filter other actions
class FilteringAction : public QWidgetAction {
public:
FilteringAction(QWidget *parent);
void addActionToFilter(QAction *action);
private:
class FilteringActionPrivate;
spimpl::unique_impl_ptr<FilteringActionPrivate> impl;
};
#endif // SCIQLOP_FILTERINGACTION_H