##// END OF EJS Templates
Change CatalogAPI wrip file to clone develop branch instead of master
Change CatalogAPI wrip file to clone develop branch instead of master

File last commit:

r939:53840da09aee
r1092:23a5d4fa5b8c
Show More
MacScrollBarStyle.h
18 lines | 485 B | text/x-c | CLexer
Thibaud Rabillard
New style on mac to keep the scrollbars visible
r930 #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,
code improvements
r939 QStyleHintReturn *returnData) const override;
Thibaud Rabillard
New style on mac to keep the scrollbars visible
r930
void selfInstallOn(QWidget *widget, bool installOnSubWidgets);
};
#endif // SCIQLOP_MACSCROLLBARSTYLE_H