1 /* $Id$ */
2 /* Copyright (c) 2009-2012 Pierre Pronchery <khorben@defora.org> */
3 /* This file is part of DeforaOS Desktop libDesktop */
4 /* All rights reserved.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions are
8  * met:
9  *
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer.
12  *
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in the
15  *    documentation and/or other materials provided with the distribution.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
18  * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
19  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
20  * PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
21  * HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
22  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
23  * TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
24  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
25  * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
26  * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
27  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */
28 
29 
30 
31 #ifndef LIBDESKTOP_DESKTOP_TOOLBAR_H
32 # define LIBDESKTOP_DESKTOP_TOOLBAR_H
33 
34 
35 /* Toolbar */
36 /* types */
37 typedef struct _DesktopToolbar
38 {
39 	const char * name;
40 	GCallback callback;
41 	const char * stock;
42 	GdkModifierType modifier;
43 	unsigned int accel;
44 	GtkToolItem * widget;
45 } DesktopToolbar;
46 
47 
48 /* functions */
49 GtkWidget * desktop_toolbar_create(DesktopToolbar * toolbar,
50 		gpointer data, GtkAccelGroup * accel);
51 
52 #endif /* !LIBDESKTOP_DESKTOP_TOOLBAR_H */
53