mirror of
https://github.com/netsurf-browser/netsurf
synced 2024-11-24 23:39:51 +03:00
5886e3ed2a
Add RCS ID svn path=/import/netsurf/; revision=169
55 lines
904 B
C
55 lines
904 B
C
/**
|
|
* $ID$
|
|
*/
|
|
|
|
#ifndef _NETSURF_RISCOS_OPTIONS_H_
|
|
#define _NETSURF_RISCOS_OPTIONS_H_
|
|
|
|
#include "netsurf/desktop/options.h"
|
|
|
|
#define PLATFORM_OPTIONS \
|
|
int use_mouse_gestures;\
|
|
int allow_text_selection;\
|
|
int use_riscos_elements;\
|
|
int show_toolbar;\
|
|
int show_print_preview;\
|
|
\
|
|
char* theme;
|
|
|
|
/* choices made easier for the dialogue boxes. only used by the interface */
|
|
|
|
struct browser_choices
|
|
{
|
|
int use_mouse_gestures;
|
|
int allow_text_selection;
|
|
int use_riscos_elements;
|
|
int show_toolbar;
|
|
int show_print_preview;
|
|
} ;
|
|
|
|
struct proxy_choices
|
|
{
|
|
int http;
|
|
char http_proxy[256];
|
|
int http_port;
|
|
} ;
|
|
|
|
struct theme_choices
|
|
{
|
|
char name[256];
|
|
};
|
|
|
|
struct ro_choices
|
|
{
|
|
struct browser_choices browser;
|
|
struct proxy_choices proxy;
|
|
struct theme_choices theme;
|
|
};
|
|
|
|
void options_to_ro(struct options* opt, struct ro_choices* ro);
|
|
void ro_to_options(struct ro_choices* ro, struct options* opt);
|
|
|
|
#endif
|
|
|
|
|