~ubuntu-branches/ubuntu/raring/vice/raring

« back to all changes in this revision

Viewing changes to src/arch/unix/x11/x11ui.h

  • Committer: Bazaar Package Importer
  • Author(s): Laszlo Boszormenyi (GCS)
  • Date: 2009-03-31 00:37:15 UTC
  • mfrom: (1.1.7 upstream) (9.1.2 sid)
  • Revision ID: james.westby@ubuntu.com-20090331003715-i5yisvcfv7mgz3eh
Tags: 2.1.dfsg-1
* New major upstream release (closes: #495937).
* Add desktop files (closes: #501181).

Show diffs side-by-side

added added

removed removed

Lines of Context:
33
33
#ifdef USE_GNOMEUI
34
34
#include "x11/gnome/uiarch.h"
35
35
#else
 
36
#ifdef VMS
 
37
#include "xawuiarch.h"
 
38
#else
36
39
#include "x11/xaw/uiarch.h"
37
40
#endif
 
41
#endif
38
42
 
39
 
extern int x11ui_open_canvas_window(struct video_canvas_s *c,
40
 
                                    const char *title, int width,
41
 
                                    int height, int no_autorepeat);
42
43
extern void x11ui_resize_canvas_window(ui_window_t w, int height, int width, int hwscale);
43
44
extern void x11ui_move_canvas_window(ui_window_t w, int x, int y);
44
45
extern void x11ui_canvas_position(ui_window_t w, int *x, int *y);
47
48
extern void x11ui_unmap_canvas_window(ui_window_t w);
48
49
extern void x11ui_destroy_widget(ui_window_t w);
49
50
 
50
 
extern Display *x11ui_get_display_ptr(void);
51
 
extern Window x11ui_get_X11_window(void);
 
51
#if (defined USE_XF86_EXTENSIONS || !defined USE_GNOMEUI)
52
52
extern int x11ui_get_display_depth(void);
53
53
extern int x11ui_get_screen(void);
54
54
extern void x11ui_fullscreen(int enable);
55
55
 
 
56
Display *x11ui_get_display_ptr(void);
 
57
Window x11ui_get_X11_window(void);
 
58
#endif
 
59
 
56
60
#endif
57
61