/xbmc/visualizations/Goom/goom2k4-0/mac/StandAlone/GoomFXParam.h

http://github.com/xbmc/xbmc · C++ Header · 26 lines · 13 code · 6 blank · 7 comment · 0 complexity · 13b49719dfebe17da0949c94fbcba24c MD5 · raw file

  1. //
  2. // GoomFXParam.h
  3. // iGoom copie
  4. //
  5. // Created by Guillaume Borios on Sun Jul 20 2003.
  6. // Copyright (c) 2003 iOS. All rights reserved.
  7. //
  8. #import <Cocoa/Cocoa.h>
  9. #include "src/goom.h"
  10. @interface GoomFXParam : NSObject {
  11. PluginParam * parametres;
  12. NSProgressIndicator * progress;
  13. NSSlider * slider;
  14. NSButton * button;
  15. NSTextField * value;
  16. }
  17. - (GoomFXParam*)initWithParam:(PluginParam*)p;
  18. - (NSView*)makeViewAtHeight:(float)h;
  19. - (void)setValue:(id)sender;
  20. @end