UIFontButton.h 826 B

12345678910111213141516171819202122232425262728293031323334
  1. /*
  2. =======================================================================================
  3. Copyright (C) 2009-2011 id Software LLC, a ZeniMax Media company. All Right Reserved.
  4. This file is part of the DOOM Classic iOS v2.1 GPL Source Code.
  5. =======================================================================================
  6. */
  7. #import <Foundation/Foundation.h>
  8. #import <UIKit/UIButton.h>
  9. #import "UIFontLabel.h"
  10. @interface UIFontButton : UIButton {
  11. @public
  12. IBOutlet UIFontLabel * label;
  13. IBOutlet UIFontLabel * label2;
  14. UIColor * labelColor;
  15. UIColor * label2Color;
  16. }
  17. @property (nonatomic, retain) IBOutlet UIFontLabel *label;
  18. @property (nonatomic, retain) IBOutlet UIFontLabel *label2;
  19. - (void) Hide;
  20. - (void) Show;
  21. - (void) Enable;
  22. - (void) Disable;
  23. @end