~ubuntu-branches/ubuntu/vivid/gnome-paint/vivid

« back to all changes in this revision

Viewing changes to src/toolbar.h

  • Committer: Bazaar Package Importer
  • Author(s): Aron Xu
  • Date: 2010-12-13 17:38:49 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20101213173849-kslwesen77to3gfd
Tags: 0.4.0-1
* New upstream release.
  - Draw GtkMenu when clicking items in GtkMenuBar (Closes: #607137)
* debian/control: 
  - Update homepage link.
  - Bump std-ver to 3.9.1.
  + Add DM-Upload-Allowed: yes.
* debian/rules:
  +  LDFLAGS += -Wl,--as-needed
* Update translations:
  + pt by Américo Monteiro <a_monteiro@netcabo.pt> (Closes: #607131)
  + da by Joe Dalton <joedalton2@yahoo.dk> (Closes: #607140)
  + vi by Duy Hùng Trần <nguyentieuhau@gmail.com> (Closes: #607342)
  + cs by Michal Simunek <michal.simunek@gmail.com> (Closes: #607468)
  + de by Chris Leick <c.leick@vollbio.de> (Closes: #607769)
  + fr by Jean-Pierre <ceinestpasuncomptepoubelle@gmail.com> (Closes: #607845)

Show diffs side-by-side

added added

removed removed

Lines of Context:
46
46
    TOOL_ELLIPSE,
47
47
    TOOL_CURVE,
48
48
    TOOL_POLYGON,
49
 
    TOOL_ROUNDED_RECTANGLE
 
49
    TOOL_ROUNDED_RECTANGLE,
 
50
    TOOL_CLEAR_CANVAS,
 
51
    TOOL_INVERT_CANVAS,
 
52
    TOOL_FLIP_CANVAS,
 
53
    TOOL_ROTATE_CANVAS
50
54
} gp_tool_enum;
51
55
 
52
56
 
125
129
void on_rect1_toggled                                   (GtkToggleToolButton *button, gpointer user_data);
126
130
void on_rect2_toggled                                   (GtkToggleToolButton *button, gpointer user_data);
127
131
 
 
132
/* Toggle opaque and transparent buttons */
 
133
void on_sel1_toggled                                    (GtkToggleToolButton *button, gpointer user_data);
 
134
void on_sel2_toggled                                    (GtkToggleToolButton *button, gpointer user_data);
128
135
 
129
136
#endif /*__TOOLBAR_H__*/