update patch to work with build system changes
[AROS-Contrib.git] / Networking / Apps / OWB / preferencesmanager_private.h
blobf5696b39e99a2e5511164d9840eab79408ff4afe
1 #ifndef _PREFERENCES_PRIVATE_H_
2 #define _PREFERENCES_PRIVATE_H_
4 /*
5 Copyright © 2009, The AROS Development Team. All rights reserved.
6 $Id$
7 */
9 #include <exec/types.h>
10 #include <utility/hooks.h>
11 #include <libraries/mui.h>
13 /*** Instance data **********************************************************/
14 struct PreferencesManager_DATA
16 Object *preferences;
17 STRPTR *fontFamilies;
18 Object *javaScriptEnabled;
19 Object *loadsImagesAutomatically;
20 Object *defaultFontSize;
21 Object *defaultFixedFontSize;
22 Object *minimumFontSize;
23 Object *allowsAnimatedImages;
24 Object *allowAnimatedImageLooping;
25 Object *standardFontFamily, *fixedFontFamily, *serifFontFamily, *sansSerifFontFamily, *cursiveFontFamily, *fantasyFontFamily;
26 Object *decodesPNGWithDatatypes, *decodesBMPWithDatatypes, *decodesGIFWithDatatypes, *decodesJPGWithDatatypes;
27 Object *downloadDestination, *useHttpProxy, *httpProxy;
28 Object *requestDownloadedFileName;
31 #endif /* _PREFERENCES_PRIVATE_H_ */