~centralelyon2010/inkscape/imagelinks2

« back to all changes in this revision

Viewing changes to src/libgdl/gdl-switcher.h

  • Committer: JazzyNico
  • Date: 2011-08-29 20:25:30 UTC
  • Revision ID: nicoduf@yahoo.fr-20110829202530-6deuoz11q90usldv
Code refactoring and merging with trunk (revision 10599).

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
 * Copyright (C) 2003  Ettore Perazzoli
5
5
 *               2007  Naba Kumar
6
6
 *
7
 
 * This program is free software; you can redistribute it and/or
8
 
 * modify it under the terms of version 2 of the GNU General Public
9
 
 * License as published by the Free Software Foundation.
 
7
* This library is free software; you can redistribute it and/or
 
8
 * modify it under the terms of the GNU Library General Public
 
9
 * License as published by the Free Software Foundation; either
 
10
 * version 2 of the License, or (at your option) any later version.
10
11
 *
11
 
 * This program is distributed in the hope that it will be useful,
 
12
 * This library is distributed in the hope that it will be useful,
12
13
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13
14
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14
 
 * General Public License for more details.
 
15
 * Library General Public License for more details.
15
16
 *
16
 
 * You should have received a copy of the GNU General Public
17
 
 * License along with this program; if not, write to the
 
17
 * You should have received a copy of the GNU Library General Public
 
18
 * License along with this library; if not, write to the
18
19
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19
20
 * Boston, MA 02111-1307, USA.
20
21
 *
 
22
 *
21
23
 * Authors: Ettore Perazzoli <ettore@ximian.com>
22
24
 *          Naba Kumar  <naba@gnome.org>
23
25
 */
25
27
#ifndef _GDL_SWITCHER_H_
26
28
#define _GDL_SWITCHER_H_
27
29
 
28
 
#include <gtk/gtknotebook.h>
 
30
#include <gtk/gtk.h>
29
31
 
30
32
G_BEGIN_DECLS
31
33
 
39
41
typedef struct _GdlSwitcherPrivate GdlSwitcherPrivate;
40
42
typedef struct _GdlSwitcherClass   GdlSwitcherClass;
41
43
 
42
 
typedef enum {
43
 
    GDL_SWITCHER_STYLE_TEXT,
44
 
    GDL_SWITCHER_STYLE_ICON,
45
 
    GDL_SWITCHER_STYLE_BOTH,
46
 
    GDL_SWITCHER_STYLE_TOOLBAR,
47
 
    GDL_SWITCHER_STYLE_TABS
48
 
} GdlSwitcherStyle;
49
 
 
50
44
struct _GdlSwitcher {
51
45
    GtkNotebook parent;
52
46