File: events.h

package info (click to toggle)
extace 1.9.5-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 2,036 kB
  • ctags: 774
  • sloc: sh: 8,808; ansic: 7,934; makefile: 194
file content (31 lines) | stat: -rw-r--r-- 893 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/*
 * Copyright (C) 2003 by Dave J. Andruczyk <djandruczyk at yahoo dot com>
 *
 * Linux eXtace Audio visualizer
 * 
 * 
 * This software comes under the GPL (GNU Public License)
 * You may freely copy,distribute, etc. this as long as all the source code
 * is made available for FREE.
 * 
 * No warranty is made or implied. You use this program at your own risk.
 */

#ifndef __EVENTS_H__
#define __EVENTS_H__

#include <gtk/gtk.h>

/* Prototypes */
gint configure_event(GtkWidget *, GdkEventConfigure *, gpointer );
gint expose_event(GtkWidget *, GdkEventExpose *, gpointer );
gint button_notify_event (GtkWidget *, GdkEventButton *, gpointer );
gint motion_notify_event (GtkWidget *, GdkEventMotion *, gpointer );
gint test_on_line(int, int);
gint test_if_close(int, int);
void change_spec_start(gint);
void change_x_start(gint,gint);
void change_x_end(gint,gint);
/* Prototypes */

#endif