~ubuntu-branches/ubuntu/lucid/codelite/lucid-updates

« back to all changes in this revision

Viewing changes to LiteEditor/findresultstab.h

  • Committer: Bazaar Package Importer
  • Author(s): Chow Loong Jin
  • Date: 2009-05-27 04:16:42 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20090527041642-0yz67hytd4qnpzka
Tags: 1.0.2841+dfsg-0ubuntu1
* New upstream release (LP: #380732)
* debian/*.lintian-overrides:
  + Drop them, they're pointless anyway
* debian/control,
  debian/rules,
  debian/README.source:
  + Use DH 7.0.50, with override rules instead of CDBS
  + Bump quilt version to 0.46-7 for DH integration
  + Tidy up get-orig-source rule
* debian/patches/01_symlink.patch:
  + Dropped, applied upstream
* debian/patches/03_cstdio-include.patch:
  + Dropped, fixed upstream

Show diffs side-by-side

added added

removed removed

Lines of Context:
39
39
 
40
40
class FindResultsTab : public OutputTabWindow
41
41
{
 
42
        SearchData m_searchData;
 
43
        bool       m_searchInProgress;
42
44
protected:
43
45
    static FindInFilesDialog *m_find;
44
46
 
62
64
    virtual void OnClearAll      (wxCommandEvent   &e);
63
65
    virtual void OnRepeatOutput  (wxCommandEvent   &e);
64
66
 
65
 
    virtual void OnClearAllUI    (wxUpdateUIEvent  &e);
66
 
    virtual void OnRepeatOutputUI(wxUpdateUIEvent  &e);
 
67
        virtual void OnCloseTab      (wxCommandEvent   &e);
 
68
        virtual void OnCloseAllTabs  (wxCommandEvent   &e);
 
69
        virtual void OnCloseOtherTab (wxCommandEvent   &e);
 
70
        virtual void OnTabMenuUI     (wxUpdateUIEvent  &e);
 
71
 
 
72
        virtual void OnClearAllUI    (wxUpdateUIEvent  &e);
 
73
        virtual void OnRepeatOutputUI(wxUpdateUIEvent  &e);
67
74
        virtual void OnMouseDClick   (wxScintillaEvent &e);
68
75
        SearchData   GetSearchData   (wxScintilla *sci   );
69
76
    DECLARE_EVENT_TABLE()