/[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 3146 by schoenebeck, Thu Apr 27 17:28:01 2017 UTC revision 3147 by schoenebeck, Wed May 3 21:23:16 2017 UTC
# Line 4  Glib::RefPtr<Gdk::Pixbuf> redDot; Line 4  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;  Glib::RefPtr<Gdk::Pixbuf> blueHatchedPattern;
7    Glib::RefPtr<Gdk::Pixbuf> grayBlueHatchedPattern;
8  Glib::RefPtr<Gdk::Pixbuf> grayLoop;  Glib::RefPtr<Gdk::Pixbuf> grayLoop;
9    
10  extern const unsigned char red_dot_rgba[];  extern const unsigned char red_dot_rgba[];
11  extern const unsigned char yellow_dot_rgba[];  extern const unsigned char yellow_dot_rgba[];
12  extern const unsigned char black_loop_rgba[];  extern const unsigned char black_loop_rgba[];
13  extern const unsigned char blue_hatched_pattern_rgba[];  extern const unsigned char blue_hatched_pattern_rgba[];
14    extern const unsigned char grayblue_hatched_pattern_rgba[];
15  extern const unsigned char gray_loop_rgba[];  extern const unsigned char gray_loop_rgba[];
16    
17  extern const int red_dot_rgba_size;  extern const int red_dot_rgba_size;
18  extern const int yellow_dot_rgba_size;  extern const int yellow_dot_rgba_size;
19  extern const int black_loop_rgba_size;  extern const int black_loop_rgba_size;
20  extern const int blue_hatched_pattern_rgba_size;  extern const int blue_hatched_pattern_rgba_size;
21    extern const int grayblue_hatched_pattern_rgba_size;
22  extern const int gray_loop_rgba_size;  extern const int gray_loop_rgba_size;
23    
24  static struct _BuiltInPixMap {  static struct _BuiltInPixMap {
# Line 27  static struct _BuiltInPixMap { Line 30  static struct _BuiltInPixMap {
30      { &yellowDot, yellow_dot_rgba, yellow_dot_rgba_size },      { &yellowDot, yellow_dot_rgba, yellow_dot_rgba_size },
31      { &blackLoop, black_loop_rgba, black_loop_rgba_size },      { &blackLoop, black_loop_rgba, black_loop_rgba_size },
32      { &blueHatchedPattern, blue_hatched_pattern_rgba, blue_hatched_pattern_rgba_size },      { &blueHatchedPattern, blue_hatched_pattern_rgba, blue_hatched_pattern_rgba_size },
33        { &grayBlueHatchedPattern, grayblue_hatched_pattern_rgba, grayblue_hatched_pattern_rgba_size },
34      { &grayLoop, gray_loop_rgba, gray_loop_rgba_size },      { &grayLoop, gray_loop_rgba, gray_loop_rgba_size },
35  };  };
36    

Legend:
Removed from v.3146  
changed lines
  Added in v.3147

  ViewVC Help
Powered by ViewVC