##// END OF EJS Templates
Sets temp data range...
Sets temp data range Code will be deleted when the widget to set data range will be implemented

File last commit:

r929:5ec3f5d1277b
r971:c6ade9b31291
Show More
MacScrollBarStyle.h
18 lines | 476 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;
void selfInstallOn(QWidget *widget, bool installOnSubWidgets);
};
#endif // SCIQLOP_MACSCROLLBARSTYLE_H