<widget source="CurrentService" render="Label" position="475,60" size="75,20" halign="left" backgroundColor="dark" font="Regular;18">
<convert type="ServicePosition">Remaining</convert>
</widget>
- <widget source="CurrentService" render="PositionGauge" position="247,60" size="225,20" zPosition="2" pointer="position_pointer.png:3,5" >
+ <widget source="CurrentService" render="PositionGauge" position="247,60" size="225,20" zPosition="2" pointer="position_pointer.png:3,5" foregroundColor="#225b7395">
<convert type="ServicePosition">Gauge</convert>
</widget>
</screen>
m_point_widget->setAlphatest(1);
m_position = 0;
m_length = 0;
+ m_have_foreground_color = 0;
}
ePositionGauge::~ePositionGauge()
}
}
- painter.setForegroundColor(gRGB(0x225b7395));
- int xi = scale(in), xo = scale(out);
- painter.fill(eRect(xi, 10, xo-xi, s.height()-14));
+ if (m_have_foreground_color)
+ {
+ painter.setForegroundColor(gRGB(m_foreground_color));
+ int xi = scale(in), xo = scale(out);
+ painter.fill(eRect(xi, 10, xo-xi, s.height()-14));
+ }
+
in = m_length;
if (i == m_cue_entries.end())
break;
}
// painter.setForegroundColor(gRGB(0x00000000));
- painter.setForegroundColor(gRGB(0x225b7395));
- painter.fill(eRect(s.width() - 2, 2, s.width() - 1, s.height() - 4));
- painter.fill(eRect(0, 2, 2, s.height() - 4));
+
+ if (m_have_foreground_color)
+ {
+ painter.setForegroundColor(gRGB(0x225b7395));
+ painter.fill(eRect(s.width() - 2, 2, s.width() - 1, s.height() - 4));
+ painter.fill(eRect(0, 2, 2, s.height() - 4));
+ }
#if 0
// border
return width * val / m_length;
}
+
+void ePositionGauge::setForegroundColor(const gRGB &col)
+{
+ if ((!m_have_foreground_color) || !(m_foreground_color == col))
+ {
+ m_foreground_color = col;
+ m_have_foreground_color = 1;
+ invalidate();
+ }
+}
void setPointer(gPixmap *pixmap, const ePoint ¢er);
void setInOutList(PyObject *list);
+ void setForegroundColor(const gRGB &col);
#ifndef SWIG
protected:
int event(int event, void *data=0, void *data2=0);
std::multiset<cueEntry> m_cue_entries;
int scale(const pts_t &val);
+
+ int m_have_foreground_color;
+ gRGB m_foreground_color;
#endif
};