~ubuntu-branches/ubuntu/wily/weechat/wily

« back to all changes in this revision

Viewing changes to src/gui/gui-window.h

  • Committer: Package Import Robot
  • Author(s): Emmanuel Bouthenot
  • Date: 2015-08-19 18:34:17 UTC
  • mfrom: (29.1.11 sid)
  • Revision ID: package-import@ubuntu.com-20150819183417-u026z5wo8knpcdqd
Tags: 1.3-1
* New upstream release
  - Remove backported patch to fix FTBFS with ruby 2.2
* Use dh-exec to build javascript plugin only on architectures which v8
  engine supports. Thanks to Mateusz Łukasik for the patch
  (Closes: #794584)

Show diffs side-by-side

added added

removed removed

Lines of Context:
96
96
                                       /* (for horizontal scrolling)        */
97
97
    int lines_after;                   /* number of lines after last line   */
98
98
                                       /* displayed (with scrolling)        */
 
99
    struct t_gui_line *text_search_start_line; /* starting line for search  */
 
100
 
99
101
    struct t_gui_window_scroll *prev_scroll; /* link to prev. buf. scrolled */
100
102
    struct t_gui_window_scroll *next_scroll; /* link to next buf. scrolled  */
101
103
};
181
183
extern void gui_window_scroll_previous_highlight (struct t_gui_window *window);
182
184
extern void gui_window_scroll_next_highlight (struct t_gui_window *window);
183
185
extern void gui_window_scroll_unread (struct t_gui_window *window);
184
 
extern void gui_window_search_start (struct t_gui_window *window);
 
186
extern void gui_window_search_start (struct t_gui_window *window,
 
187
                                     struct t_gui_line *text_search_start_line);
185
188
extern void gui_window_search_restart (struct t_gui_window *window);
 
189
extern void gui_window_search_stop_here (struct t_gui_window *window);
186
190
extern void gui_window_search_stop (struct t_gui_window *window);
187
191
extern int gui_window_search_text (struct t_gui_window *window);
188
192
extern void gui_window_zoom (struct t_gui_window *window);