mirror of https://github.com/procxx/kepka.git
Support variable width tabs slider.
This commit is contained in:
parent
0255d0c59e
commit
fc66550a32
|
@ -103,6 +103,15 @@ void DiscreteSlider::enumerateSections(Lambda callback) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
template <typename Lambda>
|
||||||
|
void DiscreteSlider::enumerateSections(Lambda callback) const {
|
||||||
|
for (auto §ion : _sections) {
|
||||||
|
if (!callback(section)) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
void DiscreteSlider::mousePressEvent(QMouseEvent *e) {
|
void DiscreteSlider::mousePressEvent(QMouseEvent *e) {
|
||||||
auto index = getIndexFromPosition(e->pos());
|
auto index = getIndexFromPosition(e->pos());
|
||||||
if (_selectOnPress) {
|
if (_selectOnPress) {
|
||||||
|
@ -183,20 +192,55 @@ void SettingsSlider::resizeSections(int newWidth) {
|
||||||
auto count = getSectionsCount();
|
auto count = getSectionsCount();
|
||||||
if (!count) return;
|
if (!count) return;
|
||||||
|
|
||||||
auto sectionsWidth = newWidth - (count - 1) * _st.barSkip;
|
auto sectionWidths = countSectionsWidths(newWidth);
|
||||||
auto sectionWidth = sectionsWidth / float64(count);
|
|
||||||
auto skip = 0;
|
auto skip = 0;
|
||||||
auto x = 0.;
|
auto x = 0.;
|
||||||
enumerateSections([this, &x, &skip, sectionWidth](Section §ion) {
|
auto sectionWidth = sectionWidths.begin();
|
||||||
|
enumerateSections([&](Section §ion) {
|
||||||
|
Expects(sectionWidth != sectionWidths.end());
|
||||||
|
|
||||||
section.left = qFloor(x) + skip;
|
section.left = qFloor(x) + skip;
|
||||||
x += sectionWidth;
|
x += *sectionWidth;
|
||||||
section.width = qRound(x) - (section.left - skip);
|
section.width = qRound(x) - (section.left - skip);
|
||||||
skip += _st.barSkip;
|
skip += _st.barSkip;
|
||||||
|
++sectionWidth;
|
||||||
return true;
|
return true;
|
||||||
});
|
});
|
||||||
stopAnimation();
|
stopAnimation();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
std::vector<float64> SettingsSlider::countSectionsWidths(
|
||||||
|
int newWidth) const {
|
||||||
|
auto count = getSectionsCount();
|
||||||
|
auto sectionsWidth = newWidth - (count - 1) * _st.barSkip;
|
||||||
|
auto sectionWidth = sectionsWidth / float64(count);
|
||||||
|
|
||||||
|
auto result = std::vector<float64>(count, sectionWidth);
|
||||||
|
auto labelsWidth = 0;
|
||||||
|
auto commonWidth = true;
|
||||||
|
enumerateSections([&](const Section §ion) {
|
||||||
|
labelsWidth += section.labelWidth;
|
||||||
|
if (section.labelWidth >= sectionWidth) {
|
||||||
|
commonWidth = false;
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
});
|
||||||
|
// If labelsWidth > sectionsWidth we're screwed anyway.
|
||||||
|
if (!commonWidth && labelsWidth <= sectionsWidth) {
|
||||||
|
auto padding = (sectionsWidth - labelsWidth) / (2. * count);
|
||||||
|
auto currentWidth = result.begin();
|
||||||
|
enumerateSections([&](const Section §ion) {
|
||||||
|
Expects(currentWidth != result.end());
|
||||||
|
|
||||||
|
*currentWidth = padding + section.labelWidth + padding;
|
||||||
|
++currentWidth;
|
||||||
|
return true;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
int SettingsSlider::resizeGetHeight(int newWidth) {
|
int SettingsSlider::resizeGetHeight(int newWidth) {
|
||||||
resizeSections(newWidth);
|
resizeSections(newWidth);
|
||||||
return _st.height;
|
return _st.height;
|
||||||
|
|
|
@ -71,6 +71,9 @@ protected:
|
||||||
template <typename Lambda>
|
template <typename Lambda>
|
||||||
void enumerateSections(Lambda callback);
|
void enumerateSections(Lambda callback);
|
||||||
|
|
||||||
|
template <typename Lambda>
|
||||||
|
void enumerateSections(Lambda callback) const;
|
||||||
|
|
||||||
virtual void startRipple(int sectionIndex) {
|
virtual void startRipple(int sectionIndex) {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -122,6 +125,7 @@ private:
|
||||||
QImage prepareRippleMask(int sectionIndex, const Section §ion);
|
QImage prepareRippleMask(int sectionIndex, const Section §ion);
|
||||||
|
|
||||||
void resizeSections(int newWidth);
|
void resizeSections(int newWidth);
|
||||||
|
std::vector<float64> countSectionsWidths(int newWidth) const;
|
||||||
|
|
||||||
const style::SettingsSlider &_st;
|
const style::SettingsSlider &_st;
|
||||||
int _rippleTopRoundRadius = 0;
|
int _rippleTopRoundRadius = 0;
|
||||||
|
|
Loading…
Reference in New Issue