/usr/include/codeblocks/menuitemsmanager.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 | /*
* 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 MENUITEMSMANAGER_H
#define MENUITEMSMANAGER_H
#include "settings.h"
#include <wx/menu.h>
WX_DEFINE_ARRAY(wxMenuItem*, MenuItemsList);
/**
* @brief Manager for wxMenuItem pointers.
*
* This class manages an array of wxMenuItem pointers. Usually used by
* classes that need to create menu items in the app and, at some point,
* remove them *without* messing with other menu items, created by other
* classes. Useful for plugins.\n
* To use it, add a MenuItemsManager variable in your class and then
* use MenuItemsManager::Add() to add menu items to a menu (instead of
* wxMenu::Append). When you no longer want those menu items, call
* MenuItemsManager::Clear(). That's it.
*
* @author Yiannis Mandravellos
*/
class DLLIMPORT MenuItemsManager
{
public:
MenuItemsManager(bool autoClearOnDestroy = true);
virtual ~MenuItemsManager();
virtual int CreateFromString(const wxString& menuPath, int id);
virtual wxMenuItem* Add(wxMenu* parent, int id, const wxString& caption, const wxString& helptext);
virtual wxMenuItem* Insert(wxMenu* parent, int index, int id, const wxString& caption, const wxString& helptext);
virtual void Clear();
protected:
MenuItemsList m_MenuItems; // The managed array of wxMenuItem pointers
bool m_AutoClearOnDestroy; // if true, the menus are cleared in the destructor
private:
};
#endif // MENUITEMSMANAGER_H
|