1. 26 Nov, 2010 13 commits
  2. 25 Nov, 2010 1 commit
  3. 24 Nov, 2010 12 commits
  4. 23 Nov, 2010 7 commits
  5. 22 Nov, 2010 7 commits
    • Erwan Tulou's avatar
      skins: add some transparency to the default skin · f07499ac
      Erwan Tulou authored
      Default skin becomes slightly transparent when moved.
      (deactivated by default, needs to be set up in preferences)
      f07499ac
    • Erwan Tulou's avatar
      skins2: rework and simplify transparency · 64c2daf4
      Erwan Tulou authored
      Several redraw were no longer needed
      (tested successfully on Ubuntu/metacity and WinNT)
      
      On Win32, switching back and forth between layered Window and not layered
       window (case where only one of the two alpha parameters is < 255) was removed
      because display was not satisfactory. (transition a bit weird)
      64c2daf4
    • Rémi Duraffort's avatar
      gestures: use static when needed. · af5900ae
      Rémi Duraffort authored
      af5900ae
    • Rémi Duraffort's avatar
      access_oss: return NULL instead of 0. · c661b609
      Rémi Duraffort authored
      c661b609
    • Lari Natri's avatar
      Fix for KDE device actions · 99ebae0c
      Lari Natri authored
      This tiny patch enables opening of VideoCD/AudioCD/DVD discs with VLC in KDE when inserted, which was broken before.
      Signed-off-by: default avatarRémi Denis-Courmont <remi@remlab.net>
      99ebae0c
    • Erwan Tulou's avatar
      skins2: improve the default skin placements · f511daad
      Erwan Tulou authored
      The default skins now benefits from relative positioning:
         - main window centered
         - playlist window centered with a 5% offset
         - fullscreen controller centered at the bottom
           of the screen with a 3% margin from the border
         - other ancillary windows all centered
      f511daad
    • Erwan Tulou's avatar
      skins2: implement relative positioning · 6f772953
      Erwan Tulou authored
      So far in skins2, all x, y, width and height were given in pixels, and
      no reference to the screen resolution could be made.
      
      This patch implements the following :
      - all x, y, width, height can be given in pixels or in % of their container.
        For windows, the container is the screen. For widgets, it can be the
        layout or a panel.
      - Five new tags eases up positioning
        - position : relative position given as "Center", "West", "NorthWest", ...
        - x/y-margin : margins to take into account (in px or %) wrt the borders.
        - x/y-offset : additional offset to apply (in px or %).
      - the image control can now accept a width and a height parameters.
      6f772953