6 class FileFormatByteOrderLOHI
;
7 class FileFormatByteOrderHILO
;
8 class FileFormatSigned
;
9 class FileFormatHeader
;
11 class FileFormatChannels
;
16 #include "bitspopup.inc"
18 #include "mwindow.inc"
19 #include "mwindowgui.inc"
21 class FileFormat
: public BC_Window
24 FileFormat(MWindow
*mwindow
);
27 int create_objects(Asset
*asset
, char *string2
);
29 int create_objects_(char *string2
);
34 FileFormatByteOrderLOHI
*lohi
;
35 FileFormatByteOrderHILO
*hilo
;
36 FileFormatSigned
*signed_button
;
37 FileFormatHeader
*header_button
;
38 FileFormatRate
*rate_button
;
39 FileFormatChannels
*channels_button
;
43 class FileFormatChannels
: public BC_TumbleTextBox
46 FileFormatChannels(int x
, int y
, FileFormat
*fwindow
, char *text
);
53 class FileFormatRate
: public BC_TextBox
56 FileFormatRate(int x
, int y
, FileFormat
*fwindow
, char *text
);
63 class FileFormatHeader
: public BC_TextBox
66 FileFormatHeader(int x
, int y
, FileFormat
*fwindow
, char *text
);
73 class FileFormatByteOrderLOHI
: public BC_Radial
76 FileFormatByteOrderLOHI(int x
, int y
, FileFormat
*fwindow
, int value
);
83 class FileFormatByteOrderHILO
: public BC_Radial
86 FileFormatByteOrderHILO(int x
, int y
, FileFormat
*fwindow
, int value
);
93 class FileFormatSigned
: public BC_CheckBox
96 FileFormatSigned(int x
, int y
, FileFormat
*fwindow
, int value
);