1: <?php
2: /**
3: * QButton Class is defined here.
4: * @package Controls
5: * @filesource
6: */
7:
8:
9: /**
10: * QButton class - You may modify it to contain your own modifications to the
11: * QButton throughout the framework.
12: * @package Controls
13: */
14: class QButton extends QButtonBase {
15: ///////////////////////////
16: // Button Preferences
17: ///////////////////////////
18:
19: // Feel free to specify global display preferences/defaults for all QButton controls
20: /**
21: * @var string $strCssClass Default CSS class applied to this control
22: */
23: protected $strCssClass = 'button';
24: // protected $strFontNames = QFontFamily::Verdana;
25: // protected $strFontSize = '10px';
26: // protected $blnFontBold = true;
27: }