/**
 * $Id: PictureBarBaseConfig.js 84386 2009-10-01 11:47:48Z k.reimer $
 * Copyright (C) 2008 IP Labs GmbH <http://www.iplabs.de/>
 * All rights reserved.
 * 
 * @fileoverview
 * Provides the PictureBarBaseConfig class.
 * 
 * @author Thorsten Schueller (t.schueller@iplabs.de)
 * @version $Revision: 84386 $
 *
 */

var PictureBarBaseConfig;


/**
 * Constructs a new base configuration for the picturebar.
 *
 * @class
 * This class defines the picture base configuration. This means stuff like 
 * the thumslider size, ...
 * 
 * PLEASE NOTE: Do NOT copy or edit this file. If you want to override properties then use
 * then copy the PictureBarCutomConfig.js and insert the your changes in the constuctor.
 * 
 * @constructor
 */

PictureBarBaseConfig = function()
{    
    // Empty
};


/** The viewsize slider geometry in px. @type {Array} */
PictureBarBaseConfig.prototype.viewSizeSliderGeometry = [15, 0, 87, 15];

/** The viewsize slider button size in px. @type {Array} */
PictureBarBaseConfig.prototype.viewSizeSliderButtonSize= [15, 15];


