~ubuntu-branches/ubuntu/raring/codeblocks/raring-proposed

« back to all changes in this revision

Viewing changes to src/plugins/contrib/ThreadSearch/DirectoryParamsPanel.h

  • Committer: Bazaar Package Importer
  • Author(s): Cosme Domínguez Díaz
  • Date: 2010-08-09 04:38:38 UTC
  • mfrom: (1.1.1 upstream)
  • mto: This revision was merged to the branch mainline in revision 4.
  • Revision ID: james.westby@ubuntu.com-20100809043838-a59ygguym4eg0jgw
Tags: 10.05-0ubuntu1
* New upstream release. Closes (LP: #322350)
 - Switch to dpkg-source 3.0 (quilt) format
 - Remove unneeded README.source
 - Add debian/get-source-orig script that removes all
   Windows prebuilt binaries
* Bump Standards-Version to 3.9.1
 - Stop shipping *.la files
* debian/control
 - Add cdbs package as Build-Depend
 - Add libbz2-dev and zlib1g-dev packages as
   Build-Depends (needed by libhelp_plugin.so)
 - Remove dpatch package of Build-Depends
 - Add codeblocks-contrib-debug package
 - Split architecture-independent files of codeblocks
   package in codeblocks-common package
* debian/rules
 - Switch to CDBS rules system
 - Add parallel build support
 - Add a call to debian/get-source-orig script
 - Use lzma compression (saves 23,5 MB of free space)
* debian/patches
 - Refresh 01_codeblocks_plugin_path
 - Add 02_no_Makefiles_in_debian_dir to remove any link
   in codeblocks build system to deleted Makefiles of debian directory
 - Drop 02_ftbfs_gcc44 and 03_ftbfs_glib221 (merged in upstream)
* debian/watch
 - Update to use the new host (berlios.de)

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
    // begin wxGlade: DirectoryParamsPanel::ids
37
37
    // end wxGlade
38
38
 
39
 
        /** Constructor. */
 
39
    /** Constructor. */
40
40
    DirectoryParamsPanel(wxWindow* parent, int id, const wxPoint& pos=wxDefaultPosition, const wxSize& size=wxDefaultSize, long style=0);
41
41
 
42
 
        // Getters
 
42
    // Getters
43
43
    wxString GetSearchDirPath()        const;
44
44
    bool     GetSearchDirRecursively() const;
45
45
    bool     GetSearchDirHidden()      const;
46
46
    wxString GetSearchMask()           const;
47
47
 
48
 
        // Setters
 
48
    // Setters
49
49
    void     SetSearchDirPath(const wxString& sDirPath);
50
50
    void     SetSearchDirRecursively(bool bRecurse);
51
51
    void     SetSearchDirHidden(bool bSearchHidden);
69
69
    DECLARE_EVENT_TABLE();
70
70
 
71
71
public:
72
 
        /** Gets all text events to forward them to the parent window.
73
 
          */
 
72
    /** Gets all text events to forward them to the parent window.
 
73
      */
74
74
    void OnTxtTextEvent(wxCommandEvent &event); // wxGlade: <event_handler>
75
75
 
76
 
        /** Runs a dialog to set directory path.
77
 
          */
 
76
    /** Runs a dialog to set directory path.
 
77
      */
78
78
    void OnBtnDirSelectClick(wxCommandEvent &event); // wxGlade: <event_handler>
79
79
 
80
 
        /** Gets all checkboxes click events to forward them to the parent window.
81
 
          */
 
80
    /** Gets all checkboxes click events to forward them to the parent window.
 
81
      */
82
82
    void OnChkClickEvent(wxCommandEvent &event); // wxGlade: <event_handler>
83
83
}; // wxGlade: end class
84
84