File: tool_bar.h

package info (click to toggle)
xcoral 3.14-2
  • links: PTS
  • area: main
  • in suites: hamm, potato, slink
  • size: 10,216 kB
  • ctags: 9,428
  • sloc: ansic: 41,766; lisp: 10,900; yacc: 1,803; lex: 1,258; makefile: 1,035; sh: 13
file content (66 lines) | stat: -rw-r--r-- 1,970 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
/* ########################################################################

			      tool_bar.h

   File: 
   Path: /home/fournigault/c/X11/xcoral-2.5/bar_tools.h
   Description: 
   Created: Sun Jan 26 15:22:00 MET 1997
   Author: Lionel Fournigault
   Modified: Sun Jan 26 15:22:02 MET 1997
   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  _TOOL_BAR_H_
#define  _TOOL_BAR_H_

#include "proto_decl.h"

#define N_BTOOLS 19
#define TOOL_WINDOW_SIZE 32
#define COLOR_BUTTON 11

typedef struct _btool_window {
        Window  w;
        void    (* f) ();
	Pixmap pix;
}tool_window;

typedef struct _ToolBar {
  tool_window  tw [N_BTOOLS];
  Window w_logo;
  int x, y;
} ToolBar;

FCT (ToolBar *, CreateToolBar, (Window parent, int x, int y) );
FCT (void, DisplayToolBar, (ToolBar *tool_bar, int width) );
FCT (int, ExposeToolBar, (ToolBar *tool_bar, XEvent *ev) );
FCT (void, InitToolBar, (unsigned long bg, unsigned long ts, unsigned long bs) );

#endif /* _TOOLS_BAR_H_ */