~ubuntu-branches/ubuntu/gutsy/blender/gutsy-security

« back to all changes in this revision

Viewing changes to source/blender/include/BIF_editnla.h

  • Committer: Bazaar Package Importer
  • Author(s): Florian Ernst
  • Date: 2005-11-06 12:40:03 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20051106124003-3pgs7tcg5rox96xg
Tags: 2.37a-1.1
* Non-maintainer upload.
* Split out parts of 01_SConstruct_debian.dpatch again: root_build_dir
  really needs to get adjusted before the clean target runs - closes: #333958,
  see #288882 for reference

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/**
2
 
 * $Id: BIF_editnla.h,v 1.6 2004/01/03 13:13:51 broken Exp $
 
2
 * $Id: BIF_editnla.h,v 1.9 2004/10/06 18:54:59 ton Exp $
3
3
 *
4
4
 * ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
5
5
 *
34
34
#define BIF_EDITNLA_H
35
35
 
36
36
void clever_numbuts_nla(void);
 
37
extern void winqreadnlaspace(struct ScrArea *sa, void *spacedata, struct BWinEvent *evt);
37
38
 
38
39
/* NLA channel operations */
39
40
void delete_nlachannel_keys(void);
40
41
void delete_nlachannels(void);
41
42
void duplicate_nlachannel_keys(void);
 
43
void transform_nlachannel_keys(char mode);
42
44
 
43
45
/* Select */
44
46
void borderselect_nla(void);
45
47
void deselect_nlachannel_keys (int test);
46
48
void deselect_nlachannels(int test);
47
49
 
 
50
/* NLA Strip operationa */
 
51
void shift_nlastrips_up(void);
 
52
void shift_nlastrips_down(void);
48
53
#endif
49
54