##// END OF EJS Templates
Add link option for MAC
Add link option for MAC

File last commit:

r929:5ec3f5d1277b
r1007:c9bbc280f1dc
Show More
MacScrollBarStyle.h
18 lines | 476 B | text/x-c | CLexer
Thibaud Rabillard
New style on mac to keep the scrollbars visible
r929 #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;
void selfInstallOn(QWidget *widget, bool installOnSubWidgets);
};
#endif // SCIQLOP_MACSCROLLBARSTYLE_H