90 lines
2.1 KiB
C
90 lines
2.1 KiB
C
|
/**
|
||
|
* $Id:
|
||
|
*
|
||
|
* ***** BEGIN GPL LICENSE BLOCK *****
|
||
|
*
|
||
|
* This program is free software; you can redistribute it and/or
|
||
|
* modify it under the terms of the GNU General Public License
|
||
|
* as published by the Free Software Foundation; either version 2
|
||
|
* of the License, or (at your option) any later version.
|
||
|
*
|
||
|
* This program is distributed in the hope that it will be useful,
|
||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
* GNU General Public License for more details.
|
||
|
*
|
||
|
* You should have received a copy of the GNU General Public License
|
||
|
* along with this program; if not, write to the Free Software Foundation,
|
||
|
* Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||
|
*
|
||
|
* The Original Code is Copyright (C) 2008 Blender Foundation.
|
||
|
* All rights reserved.
|
||
|
*
|
||
|
*
|
||
|
* Contributor(s): Blender Foundation
|
||
|
*
|
||
|
* ***** END GPL LICENSE BLOCK *****
|
||
|
*/
|
||
|
|
||
|
#include <string.h>
|
||
|
#include <stdio.h>
|
||
|
|
||
|
#include "DNA_space_types.h"
|
||
|
#include "DNA_screen_types.h"
|
||
|
#include "DNA_userdef_types.h"
|
||
|
|
||
|
#include "MEM_guardedalloc.h"
|
||
|
|
||
|
#include "BLI_blenlib.h"
|
||
|
|
||
|
#include "BKE_context.h"
|
||
|
#include "BKE_global.h"
|
||
|
#include "BKE_screen.h"
|
||
|
#include "BKE_utildefines.h"
|
||
|
|
||
|
#include "WM_api.h"
|
||
|
#include "WM_types.h"
|
||
|
|
||
|
#include "RNA_access.h"
|
||
|
#include "RNA_define.h"
|
||
|
|
||
|
#include "ED_screen.h"
|
||
|
#include "ED_types.h"
|
||
|
|
||
|
#include "UI_interface.h"
|
||
|
#include "UI_resources.h"
|
||
|
|
||
|
#include "script_intern.h" // own include
|
||
|
|
||
|
|
||
|
#include "BPY_extern.h" /* BPY_run_python_script */
|
||
|
|
||
|
static int run_pyfile_exec(bContext *C, wmOperator *op)
|
||
|
{
|
||
|
ScrArea *sa= CTX_wm_area(C);
|
||
|
ARegion *ar= CTX_wm_region(C);
|
||
|
|
||
|
char filename[512];
|
||
|
RNA_string_get(op->ptr, "filename", filename);
|
||
|
|
||
|
BPY_run_python_script(C, filename);
|
||
|
|
||
|
ED_region_tag_redraw(ar);
|
||
|
|
||
|
return OPERATOR_FINISHED;
|
||
|
}
|
||
|
|
||
|
void ED_SCRIPT_OT_run_pyfile(wmOperatorType *ot)
|
||
|
{
|
||
|
|
||
|
/* identifiers */
|
||
|
ot->name= "Run python file";
|
||
|
ot->idname= "ED_SCRIPT_OT_run_pyfile";
|
||
|
|
||
|
/* api callbacks */
|
||
|
ot->exec= run_pyfile_exec;
|
||
|
ot->poll= ED_operator_areaactive;
|
||
|
|
||
|
RNA_def_property(ot->srna, "filename", PROP_STRING, PROP_FILEPATH);
|
||
|
}
|