~ubuntu-branches/ubuntu/karmic/cynthiune.app/karmic

« back to all changes in this revision

Viewing changes to CynthiuneFadingTextField.h

  • Committer: Bazaar Package Importer
  • Author(s): Gürkan Sengün
  • Date: 2006-10-19 22:57:30 UTC
  • mfrom: (2.1.4 edgy)
  • Revision ID: james.westby@ubuntu.com-20061019225730-6taxdncbbxkhvkb3
Tags: 0.9.5-5
Remove ia64 from build-depends of libavifile-0.7-dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* CynthiuneFadingTextField.h - this file is part of Cynthiune
 
2
 *
 
3
 * Copyright (C) 2005 Wolfgang Sourdeau
 
4
 *
 
5
 * Author: Wolfgang Sourdeau <Wolfgang@Contre.COM>
 
6
 *
 
7
 * This file is free software; you can redistribute it and/or modify
 
8
 * it under the terms of the GNU General Public License as published by
 
9
 * the Free Software Foundation; either version 2, or (at your option)
 
10
 * any later version.
 
11
 *
 
12
 * This file is distributed in the hope that it will be useful,
 
13
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
14
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
15
 * GNU General Public License for more details.
 
16
 *
 
17
 * You should have received a copy of the GNU General Public License
 
18
 * along with this program; see the file COPYING.  If not, write to
 
19
 * the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 
20
 * Boston, MA 02111-1307, USA.
 
21
 */
 
22
 
 
23
#ifndef CYNTHIUNEFADINGTEXTFIELD_H
 
24
#define CYNTHIUNEFADINGTEXTFIELD_H
 
25
 
 
26
#import <AppKit/NSTextField.h>
 
27
 
 
28
@class NSFont;
 
29
@class NSString;
 
30
@class NSTimer;
 
31
 
 
32
@interface CynthiuneFadingTextField : NSTextField
 
33
{
 
34
  NSTextField *fadeoutClone;
 
35
 
 
36
  NSTimer *fadingTimer;
 
37
  NSTimeInterval interval;
 
38
  unsigned int numberOfIterations;
 
39
  unsigned int iteration;
 
40
 
 
41
  float red;
 
42
  float green;
 
43
  float blue;
 
44
  float alpha;
 
45
}
 
46
 
 
47
- (void) setStringValue: (NSString *) string;
 
48
- (void) setFont: (NSFont *) font;
 
49
- (void) setAlignment: (NSTextAlignment) mode;
 
50
 
 
51
- (void) setTextColor: (NSColor *) color;
 
52
- (NSColor *) textColor;
 
53
 
 
54
- (void) setInterval: (NSTimeInterval) timeInterval;
 
55
- (void) setNumberOfIterations: (unsigned int) integer;
 
56
- (NSTimeInterval) interval;
 
57
- (unsigned int) numberOfIterations;
 
58
 
 
59
- (void) setTextColorWithFactor: (float) factor;
 
60
 
 
61
@end
 
62
 
 
63
#endif /* CYNTHIUNEFADINGTEXTFIELD_H */