~ubuntu-branches/ubuntu/trusty/bluefish/trusty

« back to all changes in this revision

Viewing changes to src/plugin_htmlbar/htmlbar.h

  • Committer: Package Import Robot
  • Author(s): Daniel Leidert
  • Date: 2012-06-27 22:28:39 UTC
  • mfrom: (1.2.9)
  • Revision ID: package-import@ubuntu.com-20120627222839-5g0f5s6gpaezfhve
Tags: 2.2.3-1
* New upstream release.
* debian/control: Dropped DM-Upload-Allowed.
  (Maintainer): Set to my new address.
  (Suggests): Calculate browsers depending on distribution.
  (Depends): Added python depends for newly shipped Python scripts.
* debian/copyright: Minor update. Link to GPLv2 text.
* debian/rules: Enabled hardening. Added python2 module. Calculate brwoser
  dependencies via dpkg-vendor.
* debian/patches/LP810663_blacklist_from_appmenu.patch: Adjusted.

Show diffs side-by-side

added added

removed removed

Lines of Context:
35
35
typedef struct {
36
36
        GHashTable *lookup;
37
37
        GList *quickbar_items;
 
38
        gint in_sidepanel;
 
39
        gint lowercase_tags;
 
40
        gint transient_htdialogs;
38
41
} Thtmlbar;
39
42
 
40
43
typedef struct {
41
44
        Tbfwin *bfwin;
42
 
        GtkWidget *handlebox;
 
45
        GtkWidget *handlebox; /* if top toolbar */
 
46
        GtkWidget *npage; /* if notebook page */
43
47
        GtkActionGroup *actiongroup;
44
48
        GtkWidget *quickbar_toolbar;
45
49
} Thtmlbarwin;
47
51
typedef struct {
48
52
        gint view_htmlbar;
49
53
        gint notebooktab;
 
54
        gint thumbnailwidth;
50
55
} Thtmlbarsession;
51
56
 
52
57
extern Thtmlbar htmlbar_v;