repo.or.cz
/
tangerine.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
added concrete implementations of putc(), getc(), getchar() and gets()
[tangerine.git]
/
workbench
/
libs
/
muimaster
/
classes
/
balance_private.h
blob
869e6db3a667d6c7f4e90b5b93d6e2a7fbc22ceb
1
#ifndef _BALANCE_PRIVATE_H_
2
#define _BALANCE_PRIVATE_H_
3
4
typedef
enum
5
{
6
NOT_CLICKED
,
7
CLICKED
,
8
SHIFT_CLICKED
,
9
}
State
;
10
11
/*** Instance data **********************************************************/
12
struct
Balance_DATA
13
{
14
struct
MUI_EventHandlerNode ehn
;
15
ULONG horizgroup
;
16
State state
;
17
LONG clickpos
;
18
LONG lastpos
;
19
LONG total_weight
;
20
LONG first_bound
;
21
LONG second_bound
;
22
struct
List
*
objs
;
23
Object
*
obj_before
;
24
Object
*
obj_after
;
25
LONG lsum
;
26
LONG oldWeightA
;
27
LONG oldWeightB
;
28
LONG rsum
;
29
LONG lsize
;
30
LONG rsize
;
31
WORD lsiblings
;
32
WORD rsiblings
;
33
WORD lazy
;
34
};
35
36
#endif
/* _BALANCE_PRIVATE_H_ */