Home | History | Annotate | Download | only in seekbackwardbutton
      1 /*
      2     Copyright (C) 2008,2009 INdT - Instituto Nokia de Tecnologia
      3     Copyright (C) 2009,2010 ProFUSION embedded systems
      4     Copyright (C) 2011 Samsung Electronics
      5 
      6     This file is free software; you can redistribute it and/or
      7     modify it under the terms of the GNU Library General Public
      8     License as published by the Free Software Foundation; either
      9     version 2 of the License, or (at your option) any later version.
     10 
     11     This file is distributed in the hope that it will be useful,
     12     but WITHOUT ANY WARRANTY; without even the implied warranty of
     13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
     14     Library General Public License for more details.
     15 
     16     You should have received a copy of the GNU Library General Public License
     17     along with this library; see the file COPYING.LIB.  If not, write to
     18     the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
     19     Boston, MA 02110-1301, USA.
     20 */
     21 
     22    group {
     23       name: "webkit/widget/mediacontrol/seekbackward_button";
     24 
     25       images {
     26          image: "widget/mediacontrol/seekbackwardbutton/seekbackwardbutton.png" COMP;
     27       }
     28 
     29       parts {
     30          part {
     31             name: "seekbackward_button";
     32             type: IMAGE;
     33             description { state: "default" 0.0;
     34                min: 25 25;
     35             }
     36             description { state: "seekbackward" 0.0;
     37                inherit: "default" 0.0;
     38                image.normal: "widget/mediacontrol/seekbackwardbutton/seekbackwardbutton.png";
     39             }
     40          }
     41       }
     42 
     43       programs {
     44          program {
     45              signal: "seekbackward";
     46              action: STATE_SET "seekbackward" 0.0;
     47              target: "seekbackward_button";
     48          }
     49       }
     50    }
     51