79 lines
2.4 KiB
C
Executable File
79 lines
2.4 KiB
C
Executable File
/*
|
|
* Copyright 2010 Ole Loots <ole@monochrom.net>
|
|
*
|
|
* This file is part of NetSurf, http://www.netsurf-browser.org/
|
|
*
|
|
* NetSurf is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; version 2 of the License.
|
|
*
|
|
* NetSurf is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef NS_ATARI_GLOBAL_EVNT_H
|
|
#define NS_ATARI_GLOBAL_EVNT_H
|
|
|
|
struct s_keybd_evnt_data
|
|
{
|
|
char ascii;
|
|
} keybd_evnt_data;
|
|
|
|
struct s_evnt_data
|
|
{
|
|
bool ignore;
|
|
union {
|
|
struct s_keybd_evnt_data keybd;
|
|
} u;
|
|
};
|
|
|
|
struct s_evnt_data evnt_data;
|
|
|
|
struct s_accelerator
|
|
{
|
|
char ascii; /* either ascii or */
|
|
long keycode; /* normalised keycode is valid */
|
|
short mod; /* shift / ctrl etc */
|
|
};
|
|
|
|
typedef void __CDECL (*menu_evnt_func)(WINDOW * win, int item, int title, void * data);
|
|
struct s_menu_item_evnt {
|
|
short title; /* to which menu this item belongs */
|
|
short rid; /* resource ID */
|
|
const char * nsid; /* Netsurf message ID */
|
|
menu_evnt_func menu_func; /* click handler */
|
|
struct s_accelerator accel; /* accelerator info */
|
|
char * menustr;
|
|
};
|
|
|
|
/*
|
|
Global & Menu event handlers
|
|
*/
|
|
|
|
|
|
void snd_redraw(short x, short y, short w, short h);
|
|
void snd_win_redraw(WINDOW * win, short x, short y, short w, short h);
|
|
/* Call this after each call to evnt_multi, to check for states that evnt_multi doesn't: */
|
|
void global_track_mouse_state( LGRECT * bwrect, bool within, short, short, short, short );
|
|
void bind_global_events( void );
|
|
void unbind_global_events( void );
|
|
|
|
/* Global event handlers: */
|
|
|
|
static void __CDECL global_evnt_apterm( WINDOW * win, short buff[8] );
|
|
static void __CDECL global_evnt_menu( WINDOW * win, short buff[8] );
|
|
static void __CDECL global_evnt_keybd( WINDOW * win, short buff[8], void * data);
|
|
|
|
/* Menu event handlers: */
|
|
static void __CDECL menu_about(WINDOW *win, int item, int title, void *data);
|
|
|
|
|
|
static char * get_accel(int mode, char * message, struct s_accelerator * accel);
|
|
static int parse_accel( char * message, struct s_accelerator * accel);
|
|
#endif
|