##// END OF EJS Templates
Adds "hybrid" server mode...
Adds "hybrid" server mode Hybrid mode allows to use both the default server and the test server, depending on the "server" setting of each product in the JSON file

File last commit:

r980:53840da09aee
r1151:7dc72cc510ff
Show More
MacScrollBarStyle.h
18 lines | 485 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,
code improvements
r980 QStyleHintReturn *returnData) const override;
Thibaud Rabillard
New style on mac to keep the scrollbars visible
r929
void selfInstallOn(QWidget *widget, bool installOnSubWidgets);
};
#endif // SCIQLOP_MACSCROLLBARSTYLE_H