This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#pragma once | |
#include <iostream> | |
#include <string> | |
#include <list> | |
#include <iterator> | |
#include <type_traits> | |
#include <algorithm> | |
/* This is a small & simple example |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#pragma once | |
#include <QProxyStyle> | |
/*! | |
* \brief The SliderProxyStyle class | |
* This proxy style adds "mouse direct jump" to QSlider, i.e. | |
* QSlider with this style receives the ability to have it's value set | |
* by clicking on the desired position. | |
* Source: https://stackoverflow.com/questions/11132597/qslider-mouse-direct-jump |
NewerOlder