Gtk_Styled
[ class tree: Gtk_Styled ] [ index: Gtk_Styled ] [ all elements ]

Source for file Buttons.php

Documentation is available at Buttons.php

  1. <?php
  2. /* vim: set expandtab tabstop=4 shiftwidth=4: */
  3. // +----------------------------------------------------------------------+
  4. // | PHP Version 4                                                        |
  5. // +----------------------------------------------------------------------+
  6. // | Copyright (c) 2005 Scott Mattocks                                    |
  7. // +----------------------------------------------------------------------+
  8. // | This source file is subject to version 3.0 of the PHP license,       |
  9. // | that is bundled with this package in the file LICENSE, and is        |
  10. // | available through the world-wide-web at the following url:           |
  11. // | http://www.php.net/license/3_0.txt.                                  |
  12. // | If you did not receive a copy of the PHP license and are unable to   |
  13. // | obtain it through the world-wide-web, please send a note to          |
  14. // | license@php.net so we can mail you a copy immediately.               |
  15. // +----------------------------------------------------------------------+
  16. // | Author: Scott Mattocks <scottmattocks@php.net>                       |
  17. // +----------------------------------------------------------------------+
  18. //
  19. // $Id: Buttons.php,v 1.2 2005/01/11 13:55:04 scottmattocks Exp $
  20. // Create the image button arrays.
  21. $buttons = array();
  22. $buttons['horizontal_less'= array(
  23.                                     '15 15 2 1',
  24.                                     '   c none''x  c #000000',
  25.                                     '               ',
  26.                                     '               ',
  27.                                     '         x     ',
  28.                                     '        xx     ',
  29.                                     '       xxx     ',
  30.                                     '      xxxx     ',
  31.                                     '     xxxxx     ',
  32.                                     '    xxxxxx     ',
  33.                                     '     xxxxx     ',
  34.                                     '      xxxx     ',
  35.                                     '       xxx     ',
  36.                                     '        xx     ',
  37.                                     '         x     ',
  38.                                     '               ',
  39.                                     '               '
  40.                                     );
  41. $buttons['horizontal_more'= array(
  42.                                     '15 15 2 1',
  43.                                     '   c none''x  c #000000',
  44.                                     '               ',
  45.                                     '               ',
  46.                                     '    x          ',
  47.                                     '    xx         ',
  48.                                     '    xxx        ',
  49.                                     '    xxxx       ',
  50.                                     '    xxxxx      ',
  51.                                     '    xxxxxx     ',
  52.                                     '    xxxxx      ',
  53.                                     '    xxxx       ',
  54.                                     '    xxx        ',
  55.                                     '    xx         ',
  56.                                     '    x          ',
  57.                                     '               ',
  58.                                     '               '
  59.                                     );
  60. $buttons['vertical_less'= array(
  61.                                   '15 15 2 1',
  62.                                   '   c none''x  c #000000',
  63.                                   '               ',
  64.                                   '               ',
  65.                                   '               ',
  66.                                   '               ',
  67.                                   '               ',
  68.                                   '       x       ',
  69.                                   '      xxx      ',
  70.                                   '     xxxxx     ',
  71.                                   '    xxxxxxx    ',
  72.                                   '   xxxxxxxxx   ',
  73.                                   '  xxxxxxxxxxx  ',
  74.                                   '               ',
  75.                                   '               ',
  76.                                   '               ',
  77.                                   '               '
  78.                                   );
  79. $buttons['vertical_more'= array(
  80.                                   '15 15 2 1',
  81.                                   '   c none''x  c #000000',
  82.                                   '               ',
  83.                                   '               ',
  84.                                   '               ',
  85.                                   '               ',
  86.                                   '               ',
  87.                                   '  xxxxxxxxxxx  ',
  88.                                   '   xxxxxxxxx   ',
  89.                                   '    xxxxxxx    ',
  90.                                   '     xxxxx     ',
  91.                                   '      xxx      ',
  92.                                   '       x       ',
  93.                                   '               ',
  94.                                   '               ',
  95.                                   '               ',
  96.                                   '               '
  97.                                   );
  98. /*
  99.  * Local variables:
  100.  * tab-width: 4
  101.  * c-basic-offset: 4
  102.  * End:
  103.  */
  104. ?>

Documentation generated on Mon, 11 Mar 2019 14:48:46 -0400 by phpDocumentor 1.4.4. PEAR Logo Copyright © PHP Group 2004.