~ubuntu-branches/ubuntu/trusty/bluefish/trusty

« back to all changes in this revision

Viewing changes to src/snr3.h

  • Committer: Package Import Robot
  • Author(s): Daniel Leidert
  • Date: 2012-06-27 22:28:39 UTC
  • mfrom: (1.2.9)
  • Revision ID: package-import@ubuntu.com-20120627222839-5g0f5s6gpaezfhve
Tags: 2.2.3-1
* New upstream release.
* debian/control: Dropped DM-Upload-Allowed.
  (Maintainer): Set to my new address.
  (Suggests): Calculate browsers depending on distribution.
  (Depends): Added python depends for newly shipped Python scripts.
* debian/copyright: Minor update. Link to GPLv2 text.
* debian/rules: Enabled hardening. Added python2 module. Calculate brwoser
  dependencies via dpkg-vendor.
* debian/patches/LP810663_blacklist_from_appmenu.patch: Adjusted.

Show diffs side-by-side

added added

removed removed

Lines of Context:
61
61
        Tsnr3type type;
62
62
        Tsnr3replace replacetype;
63
63
        Tsnr3scope scope;
64
 
        GList *doclist; /* the files to do the replace in */
65
64
        GFile *basedir; /* when replace in files */
66
65
        gchar *filepattern;
67
66
        gint recursion_level;
68
67
        gboolean is_case_sens;
69
 
        gboolean overlapping;
 
68
/*      gboolean overlapping;*/
70
69
        gboolean escape_chars;
71
70
        gboolean dotmatchall;
72
71
        gboolean select_matches;
76
75
        /* the resultss of a search run */
77
76
        gboolean in_replace; /* TRUE if the code is in a replace, so the doc_insert and doc_delete signals do not need to do anything */
78
77
        GQueue results; /* all results */
79
 
        GList *current; /* current result */
 
78
        GList *current; /* current result, used in replace, or when pressing next or previous */
80
79
        guint resultnumdoc; /* the number of unique documents in the resultset */
81
80
        guint searchednumdoc; /* the number of documents searched */
82
81
 
86
85
        Tdocument *curdoc; /* the current document */
87
86
        gchar *curbuf; /* the current buffer */
88
87
        gint curoffset; /* when running replace all, the difference between the offset in curbuf and the offset in the text widget */
89
 
        guint curposition; /* the position in curbuf to continue the next search run */
 
88
        guint curposition; /* the position in curbuf to continue the next search run, used if the first 
 
89
                                                        search run took longer than our maximum-allowed-gui-block-time */
90
90
        guint so; /* area to search in */
91
91
        guint eo; /* see so */
92
92
        void (*callback) (gpointer data);       /* to be called when the search has finished */