snes9x/gtk/src/gtk_s9xwindow.h

100 lines
3.2 KiB
C
Raw Normal View History

2010-09-25 17:46:12 +02:00
#ifndef __GTK_S9XWINDOW_H
#define __GTK_S9XWINDOW_H
#include <gtk/gtk.h>
#ifdef USE_OPENGL
#include <GL/gl.h>
#endif
#include "gtk_s9x.h"
2010-09-26 11:19:15 +02:00
#include "gtk_builder_window.h"
2010-09-25 17:46:12 +02:00
2010-09-26 11:19:15 +02:00
class Snes9xWindow : public GtkBuilderWindow
2010-09-25 17:46:12 +02:00
{
public:
Snes9xWindow (Snes9xConfig *config);
/* Pause related functions */
void pause_from_focus_change (void);
void unpause_from_focus_change (void);
void focus_notify (int state);
void pause_from_user (void);
void unpause_from_user (void);
unsigned char is_paused (void);
void propagate_pause_state (void);
/* Fullscreen functions */
void enter_fullscreen_mode (void);
void leave_fullscreen_mode (void);
void toggle_fullscreen_mode (void);
void finish_fullscreen (void);
/* Cursor modifying functions */
void show_mouse_cursor (void);
void hide_mouse_cursor (void);
/* Rom-related functions */
void open_rom_dialog (void);
void save_state_dialog (void);
void load_state_dialog (void);
void configure_widgets (void);
void save_spc_dialog (void);
int try_open_rom (const char *filename);
const char *open_movie_dialog (bool readonly);
void movie_seek_dialog (void);
void open_multicart_dialog (void);
void show_rom_info (void);
/* GTK-base-related functions */
void show (void);
void show_status_message (const char *message);
void update_statusbar (void);
void toggle_statusbar (void);
2010-09-25 17:46:12 +02:00
void set_menu_item_selected (const char *name);
void set_mouseable_area (int x, int y, int width, int height);
void set_menu_item_accel_to_binding (const char *name,
const char *binding);
void reset_screensaver (void);
void update_accels (void);
void toggle_ui (void);
2014-03-29 11:48:35 +01:00
void resize_to_multiple (int factor);
2010-09-25 17:46:12 +02:00
void resize_viewport (int width, int height);
void expose (void);
2010-09-25 17:46:12 +02:00
2017-12-07 19:24:29 +01:00
cairo_t *get_cairo (void);
void release_cairo (void);
2010-09-25 17:46:12 +02:00
Snes9xConfig *config;
int user_pause, sys_pause;
int user_rewind;
2010-09-25 17:46:12 +02:00
int last_width, last_height;
int mouse_region_x, mouse_region_y;
int mouse_region_width, mouse_region_height;
int nfs_width, nfs_height, nfs_x, nfs_y;
int fullscreen_state;
int maximized_state;
int focused;
int paused_from_focus_loss;
uint16 mouse_loc_x, mouse_loc_y;
GdkPixbuf *icon, *splash;
2010-09-26 11:19:15 +02:00
GdkCursor *default_cursor, *empty_cursor;
2010-09-25 17:46:12 +02:00
GtkDrawingArea *drawing_area;
GtkWidget *recent_menu;
2017-12-07 19:24:29 +01:00
cairo_t *cr;
int cairo_owned;
#if GTK_MAJOR_VERSION >= 3
2017-12-07 19:24:29 +01:00
GdkDrawingContext *gdk_drawing_context;
cairo_region_t *cairo_region;
#endif
2010-09-25 17:46:12 +02:00
};
typedef struct gtk_splash_t {
unsigned int width;
unsigned int height;
unsigned int bytes_per_pixel; /* 2:RGB16, 3:RGB, 4:RGBA */
unsigned char pixel_data[256 * 224 * 3 + 1];
} gtk_splash_t;
2010-09-25 17:46:12 +02:00
#endif /* __GTK_S9XWINDOW_H */