Current File : //opt/RZphp73/includes/data/Gtk_Styled/Buttons.php
<?php
/* vim: set expandtab tabstop=4 shiftwidth=4: */
// +----------------------------------------------------------------------+
// | PHP Version 4                                                        |
// +----------------------------------------------------------------------+
// | Copyright (c) 2005 Scott Mattocks                                    |
// +----------------------------------------------------------------------+
// | This source file is subject to version 3.0 of the PHP license,       |
// | that is bundled with this package in the file LICENSE, and is        |
// | available through the world-wide-web at the following url:           |
// | http://www.php.net/license/3_0.txt.                                  |
// | If you did not receive a copy of the PHP license and are unable to   |
// | obtain it through the world-wide-web, please send a note to          |
// | license@php.net so we can mail you a copy immediately.               |
// +----------------------------------------------------------------------+
// | Author: Scott Mattocks <scottmattocks@php.net>                       |
// +----------------------------------------------------------------------+
//
// $Id: Buttons.php,v 1.2 2005/01/11 13:55:04 scottmattocks Exp $
// Create the image button arrays.
$buttons = array();
$buttons['horizontal_less'] = array(
                                    '15 15 2 1',
                                    '   c none', 'x  c #000000',
                                    '               ',
                                    '               ',
                                    '         x     ',
                                    '        xx     ',
                                    '       xxx     ',
                                    '      xxxx     ',
                                    '     xxxxx     ',
                                    '    xxxxxx     ',
                                    '     xxxxx     ',
                                    '      xxxx     ',
                                    '       xxx     ',
                                    '        xx     ',
                                    '         x     ',
                                    '               ',
                                    '               '
                                    );
$buttons['horizontal_more'] = array(
                                    '15 15 2 1',
                                    '   c none', 'x  c #000000',
                                    '               ',
                                    '               ',
                                    '    x          ',
                                    '    xx         ',
                                    '    xxx        ',
                                    '    xxxx       ',
                                    '    xxxxx      ',
                                    '    xxxxxx     ',
                                    '    xxxxx      ',
                                    '    xxxx       ',
                                    '    xxx        ',
                                    '    xx         ',
                                    '    x          ',
                                    '               ',
                                    '               '
                                    );
$buttons['vertical_less'] = array(
                                  '15 15 2 1',
                                  '   c none', 'x  c #000000',
                                  '               ',
                                  '               ',
                                  '               ',
                                  '               ',
                                  '               ',
                                  '       x       ',
                                  '      xxx      ',
                                  '     xxxxx     ',
                                  '    xxxxxxx    ',
                                  '   xxxxxxxxx   ',
                                  '  xxxxxxxxxxx  ',
                                  '               ',
                                  '               ',
                                  '               ',
                                  '               '
                                  );
$buttons['vertical_more'] = array(
                                  '15 15 2 1',
                                  '   c none', 'x  c #000000',
                                  '               ',
                                  '               ',
                                  '               ',
                                  '               ',
                                  '               ',
                                  '  xxxxxxxxxxx  ',
                                  '   xxxxxxxxx   ',
                                  '    xxxxxxx    ',
                                  '     xxxxx     ',
                                  '      xxx      ',
                                  '       x       ',
                                  '               ',
                                  '               ',
                                  '               ',
                                  '               '
                                  );
/*
 * Local variables:
 * tab-width: 4
 * c-basic-offset: 4
 * End:
 */
?>