Andreas Vogel
Media player
+Alexander Pipelka
+ Code cleaning patches
+ Various bug fixes
+
Thanks to the following people for their work with the MVP:
Jon Gettler, BtB and the other MVPMC developers
Dominic Morris for the vdr-mediamvp VDR plugin
-Apologies to anyone I have forgotten, I only just started
-trying to keep track of all this... (And now I don't remember
-to keep it up to date!)
+This list is most likely incomplete. Apologies to anyone
+I have forgotten, and for forgetting to update this list.
parent = newParent;
}
-void Boxx::setBackgroundColour(Colour& Tcolour)
+void Boxx::setBackgroundColour(const Colour& Tcolour)
{
backgroundColour = Tcolour;
backgroundColourSet = true;
// Level 1 drawing functions
-void Boxx::fillColour(Colour& colour)
+void Boxx::fillColour(const Colour& colour)
{
rectangle(0, 0, area.w, area.h, colour);
}
-void Boxx::drawPara(char* text, int x, int y, Colour& colour)
+void Boxx::drawPara(char* text, int x, int y, const Colour& colour)
{
char line[256];
int lineHeight = surface->getFontHeight() + paraVSpace;
}
}
-void Boxx::rectangle(Region& region, Colour& colour)
+void Boxx::rectangle(Region& region, const Colour& colour)
{
rectangle(region.x, region.y, region.w, region.h, colour);
}
// Level 0 drawing functions
-void Boxx::rectangle(UINT x, UINT y, UINT w, UINT h, Colour& colour)
+void Boxx::rectangle(UINT x, UINT y, UINT w, UINT h, const Colour& colour)
{
if (parent) parent->rectangle(area.x + x, area.y + y, w, h, colour);
else surface->fillblt(x, y, w, h, colour.rgba());
}
-void Boxx::drawText(const char* text, int x, int y, Colour& colour)
+void Boxx::drawText(const char* text, int x, int y, const Colour& colour)
{
if (parent) parent->drawText(text, area.x + x, area.y + y, colour);
else surface->drawText(text, x, y, colour.rgba());
}
-void Boxx::drawText(const char* text, int x, int y, int width, Colour& colour)
+void Boxx::drawText(const char* text, int x, int y, int width, const Colour& colour)
{
if (parent) parent->drawText(text, area.x + x, area.y + y, width, colour);
else surface->drawText(text, x, y, width, colour.rgba());
}
-void Boxx::drawTextRJ(const char* text, int x, int y, Colour& colour)
+void Boxx::drawTextRJ(const char* text, int x, int y, const Colour& colour)
{
if (parent) parent->drawTextRJ(text, area.x + x, area.y + y, colour);
else surface->drawTextRJ(text, x, y, colour.rgba());
}
-void Boxx::drawTextCentre(const char* text, int x, int y, Colour& colour)
+void Boxx::drawTextCentre(const char* text, int x, int y, const Colour& colour)
{
if (parent) parent->drawTextCentre(text, area.x + x, area.y + y, colour);
else surface->drawTextCentre(text, x, y, colour.rgba());
}
-void Boxx::drawPixel(UINT x, UINT y, Colour& colour)
+void Boxx::drawPixel(UINT x, UINT y, const Colour& colour)
{
if (parent) parent->drawPixel(area.x + x, area.y + y, colour);
else
if (parent) return parent->charWidth(c);
else return surface->getCharWidth(c);
}
-
void setGap(UINT gap);
- void setBackgroundColour(Colour& colour);
+ void setBackgroundColour(const Colour& colour);
void setVisible(bool isVisible);
void getRootBoxRegion(Region*);
// Drawing functions level 1
- void fillColour(Colour& colour);
- void drawPara(char* text, int x, int y, Colour& colour);
+ void fillColour(const Colour& colour);
+ void drawPara(char* text, int x, int y, const Colour& colour);
// Drawing functions level 0
- void rectangle(UINT x, UINT y, UINT w, UINT h, Colour& colour);
- void rectangle(Region& region, Colour& colour);
-
- void drawText(const char* text, int x, int y, Colour& colour);
- void drawText(const char* text, int x, int y, int width, Colour& colour);
- void drawTextRJ(const char* text, int x, int y, Colour& colour);
- void drawTextCentre(const char* text, int x, int y, Colour& colour);
- void drawPixel(UINT x, UINT y, Colour& colour);
+ void rectangle(UINT x, UINT y, UINT w, UINT h, const Colour& colour);
+ void rectangle(Region& region, const Colour& colour);
+
+ void drawText(const char* text, int x, int y, const Colour& colour);
+ void drawText(const char* text, int x, int y, int width, const Colour& colour);
+ void drawTextRJ(const char* text, int x, int y, const Colour& colour);
+ void drawTextCentre(const char* text, int x, int y, const Colour& colour);
+ void drawPixel(UINT x, UINT y, const Colour& colour);
/* This is for system which need a locking of the drawing surface to speed up drawing */
void startFastDraw();
void set(int Tred, int Tgreen, int Tblue, int Talpha)
{ red = Tred; green = Tgreen; blue = Tblue; alpha = Talpha; }
- unsigned long rgba()
+ unsigned long rgba() const
{
return (alpha << 24) | (red << 16) | (green << 8) | blue;
}
Boxx::draw();
}
-void TBBoxx::setTitleBarColour(Colour& Tcolour)
+void TBBoxx::setTitleBarColour(const Colour& Tcolour)
{
titleBarColour = Tcolour;
}
void setTitleBarOn(UCHAR on);
void setTitleText(const char* title, int width=0);
- void setTitleBarColour(Colour& colour);
+ void setTitleBarColour(const Colour& colour);
char* getTitleText() { return titleText; };
private:
boxstack->update(this, &r);
}
-void VEpg::paintCell(Event* event, int yOffset, Colour bg, Colour fg)
+void VEpg::paintCell(Event* event, int yOffset, const Colour& bg, const Colour& fg)
{
int w, x, y, h;
w = x = 0; // keep compiler happy
int listWindowSize;
void updateChanList();
void updateEventList();
- void paintCell(Event* event, int yOffset, Colour bg, Colour fg);
+ void paintCell(Event* event, int yOffset, const Colour& bg, const Colour& fg);
time_t prevHour(time_t* t);
void* parent;
BoxStack* boxstack;
270:xr=y
yr=w-x
*/
-void WJpeg::drawPixel(int x, int y,int w,int h,int xpos, int ypos,Colour c){
+void WJpeg::drawPixel(int x, int y,int w,int h,int xpos, int ypos, const Colour& c){
int xb=0;
int yb=0;
switch(rotate) {
private:
int drawJpeg();
//our drawPixel with considers rotation
- void drawPixel(int x, int y,int w,int h,int xpos, int ypos,Colour c);
+ void drawPixel(int x, int y,int w,int h,int xpos, int ypos, const Colour& c);
char* fileName;
JpegReader *reader;
#ifdef WIN32
noLoop = 1;
}
-void WSelectList::setBackgroundColour(Colour& colour)
+void WSelectList::setBackgroundColour(const Colour& colour)
{
backgroundColour = colour;
}
columns[numColumns++] = x;
}
-void WSelectList::drawOptionLine(char* text, int xpos, int ypos, int width, Colour& colour)
+void WSelectList::drawOptionLine(char* text, int xpos, int ypos, int width, const Colour& colour)
{
if (!numColumns)
{
void setShowSelOption(bool set) { showseloption = set; };
int addOption(const char* text, ULONG data, int selected);
void draw();
- void setBackgroundColour(Colour& colour);
+ void setBackgroundColour(const Colour& colour);
void down();
void up();
virtual bool mouseLBDOWN(int x, int y);
private:
- void drawOptionLine(char* text, int xpos, int ypos, int width, Colour& colour);
+ void drawOptionLine(char* text, int xpos, int ypos, int width, const Colour& colour);
int getMouseLine(int x, int y);
vector<wsloption> options;
strcpy(text, takeText);
}
-void WTextbox::setForegroundColour(Colour fcolour)
+void WTextbox::setForegroundColour(const Colour& fcolour)
{
foreColour = fcolour;
}
~WTextbox();
void setText(const char* text);
void draw();
- void setForegroundColour(Colour fcolour);
+ void setForegroundColour(const Colour& fcolour);
void setTextPos(int x, int y); // optional
void setParaMode(bool mode);