File: menu.h

package info (click to toggle)
xppaut 8.0%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 7,332 kB
  • sloc: ansic: 74,690; makefile: 127; sh: 92
file content (20 lines) | stat: -rw-r--r-- 440 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef _xppmenu_h_
#define _xppmenu_h_

#include <X11/Xlib.h>


void flash(int num);
void add_menu(Window base, int j, int n, char **names, char *key, char **hint);
void create_the_menus(Window base);
void show_menu(int j);
void unshow_menu(int j);
void help(void);
void help_num(void);
void help_file(void);
void menu_crossing(Window win, int yn);
void menu_expose(Window win);
void menu_button(Window win);
void draw_help(void);

#endif