Code::Blocks  SVN r11506
pluginsconfigurationdlg.h
Go to the documentation of this file.
1 /*
2  * This file is part of the Code::Blocks IDE and licensed under the GNU Lesser General Public License, version 3
3  * http://www.gnu.org/licenses/lgpl-3.0.html
4  */
5 
6 #ifndef PLUGINSCONFIGURATIONDLG_H
7 #define PLUGINSCONFIGURATIONDLG_H
8 
9 #include "scrollingdialog.h"
10 #include <wx/html/htmlwin.h>
11 
12 class wxCommandEvent;
13 class wxListEvent;
14 class wxUpdateUIEvent;
15 
20 {
21  public:
22  // class constructor
24  // class destructor
25  ~PluginsConfigurationDlg() override;
26 
27  void EndModal(int retCode) override;
28  private:
29  void FillList();
30  void OnToggle(wxCommandEvent& event);
31  void OnInstall(wxCommandEvent& event);
32  void OnUninstall(wxCommandEvent& event);
33  void OnExport(wxCommandEvent& event);
34  void OnSelect(wxListEvent& event);
35  void OnMouseMotion(wxMouseEvent& event);
36  void OnUpdateUI(wxUpdateUIEvent& event);
37  void OnLinkClicked(wxHtmlLinkEvent& event);
38 
40 };
41 
42 #endif // PLUGINSCONFIGURATIONDLG_H
43 
Dialog for Enabling/Disabling/Installing/Uninstalling a plug-in.
void OnMouseMotion(wxMouseEvent &event)
void OnUninstall(wxCommandEvent &event)
PluginsConfigurationDlg(wxWindow *parent)
void OnSelect(wxListEvent &event)
void EndModal(int retCode) override
void OnToggle(wxCommandEvent &event)
void OnLinkClicked(wxHtmlLinkEvent &event)
void OnInstall(wxCommandEvent &event)
void OnExport(wxCommandEvent &event)
void OnUpdateUI(wxUpdateUIEvent &event)