~ubuntu-branches/ubuntu/saucy/blender/saucy-proposed

« back to all changes in this revision

Viewing changes to source/blender/editors/space_info/textview.h

  • Committer: Package Import Robot
  • Author(s): Jeremy Bicha
  • Date: 2013-03-06 12:08:47 UTC
  • mfrom: (1.5.1) (14.1.8 experimental)
  • Revision ID: package-import@ubuntu.com-20130306120847-frjfaryb2zrotwcg
Tags: 2.66a-1ubuntu1
* Resynchronize with Debian (LP: #1076930, #1089256, #1052743, #999024,
  #1122888, #1147084)
* debian/control:
  - Lower build-depends on libavcodec-dev since we're not
    doing the libav9 transition in Ubuntu yet

Show diffs side-by-side

added added

removed removed

Lines of Context:
46
46
        int (*step)(struct TextViewContext *tvc);
47
47
        int (*line_get)(struct TextViewContext *tvc, const char **, int *);
48
48
        int (*line_color)(struct TextViewContext *tvc, unsigned char fg[3], unsigned char bg[3]);
 
49
        void (*const_colors)(struct TextViewContext *tvc, unsigned char bg_sel[4]);  /* constant theme colors */
49
50
        void *iter;
50
51
        int iter_index;
51
52
        int iter_char;          /* char intex, used for multi-line report display */
54
55
 
55
56
} TextViewContext;
56
57
 
57
 
int textview_draw(struct TextViewContext *tvc, int draw, int mval[2], void **mouse_pick, int *pos_pick);
 
58
int textview_draw(struct TextViewContext *tvc, const int draw, int mval[2], void **mouse_pick, int *pos_pick);
58
59
 
59
60
#define TVC_LINE_FG     (1<<0)
60
61
#define TVC_LINE_BG     (1<<1)