File: dispatchobj.h

package info (click to toggle)
pgplot5 5.2.2-19
  • links: PTS
  • area: non-free
  • in suites: jessie-kfreebsd, wheezy
  • size: 7,060 kB
  • sloc: fortran: 39,792; ansic: 22,549; objc: 1,534; sh: 1,305; makefile: 386; perl: 234; pascal: 233; tcl: 190; awk: 51; csh: 25
file content (25 lines) | stat: -rw-r--r-- 523 bytes parent folder | download | duplicates (11)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#import <AppKit/AppKit.h>
#import "pgviewobj.h"

@interface dispatchobj : NSObject
{
      NSCursor *crossCursor;
      pgviewobj *curView;
      BOOL      qdrawing;
      int       iwtype;
}

- (void)newLand;
- (void)newPort;
- (void)pgprint;
- (void)deactive;

- (void)beginp;
- (void)cursorat: (float *) xpos and: (float *) ypos  char: (int *) ichar;
- (void)flushpg;
- (void)getwind: (int *) ixdim  by: (int *) iydim
         color: (int *) icol  scale: (int *) imag;
- (void)pscode: (char *) cbuf;
- (void)endp;

@end