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

r939:53840da09aee
r1477:70de8bd3d575
Show More
MacScrollBarStyle.h
18 lines | 485 B | text/x-c | CLexer
#ifndef SCIQLOP_MACSCROLLBARSTYLE_H
#define SCIQLOP_MACSCROLLBARSTYLE_H
#include <QProxyStyle>
/**
* @brief Special style to always display the scrollbars on MAC.
*/
class MacScrollBarStyle : public QProxyStyle {
public:
int styleHint(StyleHint hint, const QStyleOption *option, const QWidget *widget,
QStyleHintReturn *returnData) const override;
void selfInstallOn(QWidget *widget, bool installOnSubWidgets);
};
#endif // SCIQLOP_MACSCROLLBARSTYLE_H