Sophie

Sophie

distrib > Mandriva > 2009.0 > i586 > by-pkgid > fe79e52f483d083598b746128e94a3a5 > files > 91

libcodeblocks-devel-8.02-2mdv2009.0.i586.rpm

/*
 * 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 SC_PLUGIN_H
#define SC_PLUGIN_H

#include "sc_base_types.h"
#include <wx/dynarray.h>

class FileTreeData;
class wxMenu;

namespace ScriptBindings
{
    namespace ScriptPluginWrapper
    {
        wxArrayInt CreateMenu(wxMenuBar* mbar);
        wxArrayInt CreateModuleMenu(const ModuleType type, wxMenu* menu, const FileTreeData* data);
        
        void OnScriptMenu(int id);
        void OnScriptModuleMenu(int id);
    }; // namespace ScriptPluginWrapper
};

#endif // SC_PLUGIN_H