New bitmap method SetRGBConversionFunction which can be used to
[tangerine.git] / workbench / classes / zune / aboutwindow / aboutwindow_private.h
bloba3cd94e758e22a1d000da6331ed24cb6b85476fa
1 #ifndef _ABOUTWINDOW_PRIVATE_H_
2 #define _ABOUTWINDOW_PRIVATE_H_
4 /*
5 Copyright © 2003-2004, The AROS Development Team. All rights reserved.
6 This file is part of the AboutWindow class, which is distributed under
7 the terms of version 2.1 of the GNU Lesser General Public License.
9 $Id$
12 #include <exec/types.h>
14 /*** Instance data **********************************************************/
15 struct AboutWindow_DATA
17 /*- Private ------------------------------------------------------------*/
18 struct Catalog *awd_Catalog;
19 APTR awd_Pool;
21 /*- Protected ----------------------------------------------------------*/
22 Object *awd_RootGroup,
23 *awd_ImageGroup,
24 *awd_ImageObject,
25 *awd_VersionObject,
26 *awd_CopyrightObject,
27 *awd_DescriptionGroup,
28 *awd_DescriptionObject;
30 /*- Public -------------------------------------------------------------*/
31 STRPTR awd_Title,
32 awd_VersionNumber,
33 awd_VersionDate,
34 awd_VersionExtra,
35 awd_Copyright,
36 awd_Description;
39 #endif /* _ABOUTWINDOW_PRIVATE_H_ */