/[svn]/gigedit/trunk/src/gigedit/gfx/builtinpix.cpp
ViewVC logotype

Diff of /gigedit/trunk/src/gigedit/gfx/builtinpix.cpp

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 3130 by schoenebeck, Sat Feb 11 17:04:48 2017 UTC revision 3131 by schoenebeck, Thu Apr 27 17:28:01 2017 UTC
# Line 3  Line 3 
3  Glib::RefPtr<Gdk::Pixbuf> redDot;  Glib::RefPtr<Gdk::Pixbuf> redDot;
4  Glib::RefPtr<Gdk::Pixbuf> yellowDot;  Glib::RefPtr<Gdk::Pixbuf> yellowDot;
5  Glib::RefPtr<Gdk::Pixbuf> blackLoop;  Glib::RefPtr<Gdk::Pixbuf> blackLoop;
6    Glib::RefPtr<Gdk::Pixbuf> blueHatchedPattern;
7  Glib::RefPtr<Gdk::Pixbuf> grayLoop;  Glib::RefPtr<Gdk::Pixbuf> grayLoop;
8    
9  extern const unsigned char red_dot_rgba[];  extern const unsigned char red_dot_rgba[];
10  extern const unsigned char yellow_dot_rgba[];  extern const unsigned char yellow_dot_rgba[];
11  extern const unsigned char black_loop_rgba[];  extern const unsigned char black_loop_rgba[];
12    extern const unsigned char blue_hatched_pattern_rgba[];
13  extern const unsigned char gray_loop_rgba[];  extern const unsigned char gray_loop_rgba[];
14    
15  extern const int red_dot_rgba_size;  extern const int red_dot_rgba_size;
16  extern const int yellow_dot_rgba_size;  extern const int yellow_dot_rgba_size;
17  extern const int black_loop_rgba_size;  extern const int black_loop_rgba_size;
18    extern const int blue_hatched_pattern_rgba_size;
19  extern const int gray_loop_rgba_size;  extern const int gray_loop_rgba_size;
20    
21  static struct _BuiltInPixMap {  static struct _BuiltInPixMap {
# Line 23  static struct _BuiltInPixMap { Line 26  static struct _BuiltInPixMap {
26      { &redDot, red_dot_rgba, red_dot_rgba_size },      { &redDot, red_dot_rgba, red_dot_rgba_size },
27      { &yellowDot, yellow_dot_rgba, yellow_dot_rgba_size },      { &yellowDot, yellow_dot_rgba, yellow_dot_rgba_size },
28      { &blackLoop, black_loop_rgba, black_loop_rgba_size },      { &blackLoop, black_loop_rgba, black_loop_rgba_size },
29        { &blueHatchedPattern, blue_hatched_pattern_rgba, blue_hatched_pattern_rgba_size },
30      { &grayLoop, gray_loop_rgba, gray_loop_rgba_size },      { &grayLoop, gray_loop_rgba, gray_loop_rgba_size },
31  };  };
32    

Legend:
Removed from v.3130  
changed lines
  Added in v.3131

  ViewVC Help
Powered by ViewVC