/usr/include/codeblocks/configurationpanel.h is in codeblocks-dev 16.01+dfsg-2+b1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 | /*
* This file is part of the Code::Blocks IDE and licensed under the GNU Lesser General Public License, version 3
* http://www.gnu.org/licenses/lgpl-3.0.html
*/
#ifndef CONFIGURATIONPANEL_H
#define CONFIGURATIONPANEL_H
#include "globals.h"
#include "settings.h"
#include "scrollingdialog.h"
#include <wx/panel.h>
#include <wx/string.h>
class wxButton;
class wxWindow;
/** @brief Base class for plugin configuration panels. */
class DLLIMPORT cbConfigurationPanel : public wxPanel
{
public:
cbConfigurationPanel() : m_parentDialog(0) { ; }
virtual ~cbConfigurationPanel(){}
/// @return the panel's title.
virtual wxString GetTitle() const = 0;
/// @return the panel's bitmap base name. You must supply two bitmaps: \<basename\>.png and \<basename\>-off.png...
virtual wxString GetBitmapBaseName() const = 0;
/// Called when the user chooses to apply the configuration.
virtual void OnApply() = 0;
/// Called when the user chooses to cancel the configuration.
virtual void OnCancel() = 0;
/// Sets the panel's parent dialog
void SetParentDialog(wxWindow* dialog)
{
m_parentDialog = dialog;
}
/// Gets the panel's parent dialog
wxWindow* SetParentDialog()
{
return m_parentDialog;
}
/** Call global cbMessageBox with m_parentDialog as parent window when
no parent window specified */
int cbMessageBox(const wxString& message, const wxString& caption = wxEmptyString, int style = wxOK, wxWindow *parent = NULL, int x = -1, int y = -1)
{
if (parent)
return ::cbMessageBox(message, caption, style, parent, x, y);
else
return ::cbMessageBox(message, caption, style, m_parentDialog, x, y);
}
private:
wxWindow* m_parentDialog;
};
/// @brief A simple dialog that wraps a cbConfigurationPanel.
class DLLIMPORT cbConfigurationDialog : public wxScrollingDialog
{
public:
cbConfigurationDialog(wxWindow* parent, int id, const wxString& title);
void AttachConfigurationPanel(cbConfigurationPanel* panel);
~cbConfigurationDialog();
void EndModal(int retCode);
protected:
cbConfigurationPanel* m_pPanel;
wxButton* m_pOK;
wxButton* m_pCancel;
private:
};
#endif // CONFIGURATIONPANEL_H
|