~ubuntu-branches/ubuntu/natty/geany/natty

« back to all changes in this revision

Viewing changes to src/toolbar.h

  • Committer: Bazaar Package Importer
  • Author(s): Chow Loong Jin
  • Date: 2010-08-07 03:23:12 UTC
  • mfrom: (1.4.3 upstream)
  • mto: This revision was merged to the branch mainline in revision 22.
  • Revision ID: james.westby@ubuntu.com-20100807032312-ot70ac9d50cn79we
Tags: upstream-0.19
ImportĀ upstreamĀ versionĀ 0.19

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
 *      along with this program; if not, write to the Free Software
19
19
 *      Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20
20
 *
21
 
 * $Id: toolbar.h 4630 2010-01-31 21:54:47Z eht16 $
 
21
 * $Id: toolbar.h 4818 2010-04-11 21:56:23Z eht16 $
22
22
 */
23
23
 
24
24
#ifndef GEANY_TOOLBAR_H
25
25
#define GEANY_TOOLBAR_H
26
26
 
27
 
 
 
27
/** Toolbar settings. */
28
28
typedef struct GeanyToolbarPrefs
29
29
{
30
30
        gboolean                visible;
31
31
        GtkIconSize             icon_size;
32
 
        gint                    icon_style;
 
32
        GtkToolbarStyle icon_style;     /**< Icon style. */
 
33
        gboolean                use_gtk_default_style;
 
34
        gboolean                use_gtk_default_icon;
33
35
        gboolean                append_to_menu;
34
36
}
35
37
GeanyToolbarPrefs;