~ubuntu-branches/ubuntu/hardy/codeblocks/hardy-backports

« back to all changes in this revision

Viewing changes to src/include/scripting/bindings/sc_plugin.h

  • Committer: Bazaar Package Importer
  • Author(s): Michael Casadevall
  • Date: 2008-07-17 04:39:23 UTC
  • Revision ID: james.westby@ubuntu.com-20080717043923-gmsy5cwkdjswghkm
Tags: upstream-8.02
ImportĀ upstreamĀ versionĀ 8.02

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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 SC_PLUGIN_H
 
7
#define SC_PLUGIN_H
 
8
 
 
9
#include "sc_base_types.h"
 
10
#include <wx/dynarray.h>
 
11
 
 
12
class FileTreeData;
 
13
class wxMenu;
 
14
 
 
15
namespace ScriptBindings
 
16
{
 
17
    namespace ScriptPluginWrapper
 
18
    {
 
19
        wxArrayInt CreateMenu(wxMenuBar* mbar);
 
20
        wxArrayInt CreateModuleMenu(const ModuleType type, wxMenu* menu, const FileTreeData* data);
 
21
        
 
22
        void OnScriptMenu(int id);
 
23
        void OnScriptModuleMenu(int id);
 
24
    }; // namespace ScriptPluginWrapper
 
25
};
 
26
 
 
27
#endif // SC_PLUGIN_H