[vlc-devel] commit: Skins2: Cosmetics. (JP Dinger )

git version control git at videolan.org
Sat Dec 5 22:35:09 CET 2009


vlc | branch: master | JP Dinger <jpd at videolan.org> | Sat Nov 21 15:24:23 2009 +0100| [d51a30f15993f2c531154bb0b9fdb3670265282c] | committer: JP Dinger 

Skins2: Cosmetics.

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=d51a30f15993f2c531154bb0b9fdb3670265282c
---

 modules/gui/skins2/x11/x11_display.cpp |   48 ++++++++-----------------------
 modules/gui/skins2/x11/x11_loop.cpp    |    8 -----
 2 files changed, 13 insertions(+), 43 deletions(-)

diff --git a/modules/gui/skins2/x11/x11_display.cpp b/modules/gui/skins2/x11/x11_display.cpp
index 11d73a6..8fc362f 100644
--- a/modules/gui/skins2/x11/x11_display.cpp
+++ b/modules/gui/skins2/x11/x11_display.cpp
@@ -144,18 +144,16 @@ X11Display::X11Display( intf_thread_t *pIntf ): SkinObject( pIntf ),
                                  &xVInfoTemplate, &vCount );
         if( pVInfo == NULL )
         {
-            msg_Err( getIntf(), "No TrueColor visual for depth %d",
-                     depth );
+            msg_Err( getIntf(), "No TrueColor visual for depth %d", depth );
             m_pDisplay = NULL;
             break;
         }
         m_pVisual = pVInfo->visual;
 
         // Compute the color shifts
-        getShifts( pVInfo->red_mask, m_redLeftShift, m_redRightShift );
-        getShifts( pVInfo->green_mask, m_greenLeftShift,
-                   m_greenRightShift );
-        getShifts( pVInfo->blue_mask, m_blueLeftShift, m_blueRightShift );
+        getShifts( pVInfo->red_mask,   m_redLeftShift,   m_redRightShift   );
+        getShifts( pVInfo->green_mask, m_greenLeftShift, m_greenRightShift );
+        getShifts( pVInfo->blue_mask,  m_blueLeftShift,  m_blueRightShift  );
 
         if( depth == 15 || depth == 16 )
         {
@@ -238,7 +236,6 @@ X11Display::X11Display( intf_thread_t *pIntf ): SkinObject( pIntf ),
                              mask, ShapeSet );
         XDestroyRegion( mask );
 
-        // Map the window
         XMapWindow( m_pDisplay, m_mainWindow);
 
         // Move it outside the screen to avoid seeing it in workspace selector
@@ -249,22 +246,10 @@ X11Display::X11Display( intf_thread_t *pIntf ): SkinObject( pIntf ),
 
 X11Display::~X11Display()
 {
-    if( m_mainWindow )
-    {
-        XDestroyWindow( m_pDisplay, m_mainWindow );
-    }
-    if( m_gc )
-    {
-        XFreeGC( m_pDisplay, m_gc );
-    }
-    if( m_colormap )
-    {
-        XFreeColormap( m_pDisplay, m_colormap );
-    }
-    if( m_pDisplay )
-    {
-        XCloseDisplay( m_pDisplay );
-    }
+    if( m_mainWindow ) XDestroyWindow( m_pDisplay, m_mainWindow );
+    if( m_gc )         XFreeGC( m_pDisplay, m_gc );
+    if( m_colormap )   XFreeColormap( m_pDisplay, m_colormap );
+    if( m_pDisplay )   XCloseDisplay( m_pDisplay );
 }
 
 
@@ -321,8 +306,8 @@ void X11Display::blendPixel16LSB( uint8_t *pPixel, uint8_t r, uint8_t g,
 void X11Display::blendPixel32MSB( uint8_t *pPixel, uint8_t r, uint8_t g,
                                   uint8_t b, uint8_t a ) const
 {
-    uint32_t value = pPixel[3] | pPixel[2] << 8 | pPixel[1] << 16 |
-                          pPixel[0] << 24;
+    uint32_t value = pPixel[3] | pPixel[2] << 8 |
+                     pPixel[1] << 16 | pPixel[0] << 24;
 
     value = blendPixel<uint32_t>(value,r,g,b,a);
 
@@ -336,8 +321,8 @@ void X11Display::blendPixel32MSB( uint8_t *pPixel, uint8_t r, uint8_t g,
 void X11Display::blendPixel32LSB( uint8_t *pPixel, uint8_t r, uint8_t g,
                                   uint8_t b, uint8_t a ) const
 {
-    uint32_t value = pPixel[0] | pPixel[1] << 8 | pPixel[2] << 16 |
-                          pPixel[3] << 24;
+    uint32_t value = pPixel[0] | pPixel[1] << 8 |
+                     pPixel[2] << 16 | pPixel[3] << 24;
 
     value = blendPixel<uint32_t>(value,r,g,b,a);
 
@@ -403,14 +388,7 @@ unsigned long X11Display::getPixelValue( uint8_t r, uint8_t g, uint8_t b )
 {
     unsigned long value = putPixel<unsigned long>(r,g,b);
 
-    if( m_pixelSize == 1 )
-    {
-        return 255 - value;
-    }
-    else
-    {
-        return value;
-    }
+    return m_pixelSize==1 ? 255 - value : value;
 }
 
 
diff --git a/modules/gui/skins2/x11/x11_loop.cpp b/modules/gui/skins2/x11/x11_loop.cpp
index 06b7303..be95c2e 100644
--- a/modules/gui/skins2/x11/x11_loop.cpp
+++ b/modules/gui/skins2/x11/x11_loop.cpp
@@ -372,21 +372,13 @@ void X11Loop::handleX11Event()
             }
 
             if( type == "XdndEnter" )
-            {
                 pDnd->dndEnter( event.xclient.data.l );
-            }
             else if( type == "XdndPosition" )
-            {
                 pDnd->dndPosition( event.xclient.data.l );
-            }
             else if( type == "XdndLeave" )
-            {
                 pDnd->dndLeave( event.xclient.data.l );
-            }
             else if( type == "XdndDrop" )
-            {
                 pDnd->dndDrop( event.xclient.data.l );
-            }
             break;
         }
     }




More information about the vlc-devel mailing list