File: mode.h

package info (click to toggle)
xcoral 1%3A3.40-2
  • links: PTS
  • area: main
  • in suites: woody
  • size: 15,484 kB
  • ctags: 4,970
  • sloc: ansic: 48,884; lisp: 11,570; yacc: 1,829; lex: 1,262; sh: 152; makefile: 144
file content (77 lines) | stat: -rw-r--r-- 2,194 bytes parent folder | download
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
/* ########################################################################

				 mode.h

   File: mode.h
   Path: /home/fournigault/c/X11/xcoral-2.31/mode.h
   Description: 
   Created: Fri Jan 27 11:21:09 MET 1995
   Author: Lionel Fournigault
   Modified: Fri Jan 27 11:21:10 MET 1995
   Last maintained by: Lionel Fournigault

   RCS $Revision$ $State$
   

   ########################################################################

   Note: 

   ########################################################################

   Copyright (c) : Lionel Fournigault

   This program 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; either version 2, or (at your option)
   any later version.

   This program 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, write to the Free Software
   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.

   ######################################################################## */


#ifndef  _MODE_H_
#define  _MODE_H_

#include "proto_decl.h"

typedef struct {
    void (* func) (); /* La fonction associee a la clef */
    int type;         /* Fonction de l'editeur ou de l'utilisateur */
} MK;
  
/*
 * Le Mode
 */
typedef struct _mode {
    char *name;
    char *suffixes;
    XFontStruct *font;
    MK key [512];
    MK ctrX_key [512];
    MK esc_key [512];
    struct _mode *next;
    char * pp_path;
    int	   pp_flag;	/* Toggle flag pour le pre processeur */    
    char * pp_options;
} Mode;

FCT (Mode *, CreateNewMode, (char *mode_name) );

FCT (long, GetFuncNameFromString, (char *s) );

FCT (Mode *, GetMode, (char *name) );
FCT (void, InitMode, () );
FCT (Mode *, SearchMode, (char *filename) );
FCT (void, SetModeFont, (Mode *mode, char *font_name) );
FCT (void, SetModeSuffixe, (Mode *mode, char *suffixes) );

#endif /* _MODE_H_ */