File: shortcut.h

package info (click to toggle)
alltray 0.71a-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 1,672 kB
  • ctags: 475
  • sloc: sh: 10,028; ansic: 5,543; makefile: 67
file content (14 lines) | stat: -rw-r--r-- 311 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include "common.h"

#ifndef __SHORTCUT_H__
#define __SHORTCUT_H__


gboolean parse_shortcut (gchar *string, 
  unsigned int *key_return, unsigned int *modifier_return);

void shortcut_init (win_struct *win);
void shortcut_done (win_struct *win);
void check_if_pointer_is_over_button (win_struct *win);

#endif