Code cleaning: const fix
authorChris Tallon <chris@vomp.tv>
Wed, 26 Mar 2008 15:04:27 +0000 (15:04 +0000)
committerChris Tallon <chris@vomp.tv>
Wed, 26 Mar 2008 15:04:27 +0000 (15:04 +0000)
14 files changed:
CREDITS
boxx.cc
boxx.h
colour.h
tbboxx.cc
tbboxx.h
vepg.cc
vepg.h
wjpeg.cc
wjpeg.h
wselectlist.cc
wselectlist.h
wtextbox.cc
wtextbox.h

diff --git a/CREDITS b/CREDITS
index 285ccd3f0d058056e45aaa9f2269c188ecd92eac..8585f168dc39438f83625467ac66e5e55c74a8e4 100644 (file)
--- a/CREDITS
+++ b/CREDITS
@@ -44,13 +44,16 @@ Marten Richter
 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.
 
diff --git a/boxx.cc b/boxx.cc
index 7c880472207dda9f422c7459bdfcfa2bfe9d1602..f1ba98a307348e95b923ac5c3da9d4a4ffad425d 100644 (file)
--- a/boxx.cc
+++ b/boxx.cc
@@ -107,7 +107,7 @@ void Boxx::setParent(Boxx* newParent)
   parent = newParent;
 }
 
-void Boxx::setBackgroundColour(Colour& Tcolour)
+void Boxx::setBackgroundColour(const Colour& Tcolour)
 {
   backgroundColour = Tcolour;
   backgroundColourSet = true;
@@ -221,12 +221,12 @@ void Boxx::getRootBoxRegion(Region* r)
 
 // 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;
@@ -302,44 +302,44 @@ void Boxx::drawPara(char* text, int x, int y, Colour& colour)
   }
 }
 
-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
@@ -377,4 +377,3 @@ int Boxx::charWidth(char c)
   if (parent) return parent->charWidth(c);
   else return surface->getCharWidth(c);
 }
-
diff --git a/boxx.h b/boxx.h
index d8fc18efb40a63a2863528145c50392e1c5b3d2c..46c6924f1a7604259e2558da952bba81fe6f88d7 100644 (file)
--- a/boxx.h
+++ b/boxx.h
@@ -49,7 +49,7 @@ class Boxx
     
     
     void setGap(UINT gap);
-    void setBackgroundColour(Colour& colour);
+    void setBackgroundColour(const Colour& colour);
     void setVisible(bool isVisible);
 
 
@@ -79,18 +79,18 @@ class Boxx
     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();
index 757ad9ead48a504f1d584f4a6717ac87b54ee121..3b0eecd9d98f0bfd24422c6b259014868d70dc2b 100644 (file)
--- a/colour.h
+++ b/colour.h
@@ -39,7 +39,7 @@ class Colour
     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;
     }
index 84f6af01b0bcf80d0c2103b20ed5956a6b084377..76ac705fd4637c28ed36821b24d600caaf12ea5d 100644 (file)
--- a/tbboxx.cc
+++ b/tbboxx.cc
@@ -68,7 +68,7 @@ void TBBoxx::draw()
   Boxx::draw();  
 }
 
-void TBBoxx::setTitleBarColour(Colour& Tcolour)
+void TBBoxx::setTitleBarColour(const Colour& Tcolour)
 {
   titleBarColour = Tcolour;
 }
index 39565ae3ba59f5154c4a237ff87431d70150094d..63e8b8c12065414451101ed91a767afba9b3125b 100644 (file)
--- a/tbboxx.h
+++ b/tbboxx.h
@@ -41,7 +41,7 @@ class TBBoxx : public Boxx
     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:
diff --git a/vepg.cc b/vepg.cc
index b1aaa5056a41d7c9bd81adf5368bc1fda63ed4c2..fde0b5277d9d0dd5dcd23f8a4c2707153a41ddda 100644 (file)
--- a/vepg.cc
+++ b/vepg.cc
@@ -682,7 +682,7 @@ void VEpg::setCurrentChannel()
   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
diff --git a/vepg.h b/vepg.h
index a03eed1e55efa3cbe574d8f7db663691afd54c7f..e9de9c810ae1661f5e614d2f2cf6cf211455deb6 100644 (file)
--- a/vepg.h
+++ b/vepg.h
@@ -79,7 +79,7 @@ class VEpg : public Boxx, public TimerReceiver
     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;
index 2b0bda9d12ab82efbe645ee9b8932b7754e23f8d..33e422c23b37581a0aed58ad90a27bfcca477245 100644 (file)
--- a/wjpeg.cc
+++ b/wjpeg.cc
@@ -194,7 +194,7 @@ void WJpeg::draw()
    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) {
diff --git a/wjpeg.h b/wjpeg.h
index 0f2b079e3abaf926ef79cb11cbaca10a63c5edc6..f8c626f466dca9ca6923c896bf2e9468b70a84e8 100644 (file)
--- a/wjpeg.h
+++ b/wjpeg.h
@@ -115,7 +115,7 @@ class WJpeg : public Boxx
   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
index b961523df54f28ffe1571ff9ab43925e27849c45..b309e85a830626b4ae2d7d65a01a2a2d4315243c 100644 (file)
@@ -59,7 +59,7 @@ void WSelectList::setNoLoop()
   noLoop = 1;
 }
 
-void WSelectList::setBackgroundColour(Colour& colour)
+void WSelectList::setBackgroundColour(const Colour& colour)
 {
   backgroundColour = colour;
 }
@@ -133,7 +133,7 @@ void WSelectList::addColumn(int x)
   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)
   {
index 008d8945aec7072a5732749b51d15664362f8b95..ce2e853c3455efce11537428cee6dc4c944053ac 100644 (file)
@@ -49,7 +49,7 @@ class WSelectList : public Boxx
     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();
@@ -69,7 +69,7 @@ class WSelectList : public Boxx
     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;
index 42c574bd77a551eab34e57b158d12fde6371b1d6..f6ec878216c8a518f690757487702981528c45b2 100644 (file)
@@ -56,7 +56,7 @@ void WTextbox::setText(const char* takeText)
   strcpy(text, takeText);
 }
 
-void WTextbox::setForegroundColour(Colour fcolour)
+void WTextbox::setForegroundColour(const Colour& fcolour)
 {
   foreColour = fcolour;
 }
index 9ac707288c32bb283d40c2ad3a9720c8a10cf74d..d8b257b1db9b7fa1a5e2605749f31fe06fe469aa 100644 (file)
@@ -36,7 +36,7 @@ class WTextbox : public Boxx
     ~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);