2011-02-23 10:52:22 +00:00
|
|
|
/*
|
2009-06-30 06:27:48 +00:00
|
|
|
* ***** 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
|
2018-06-01 18:19:39 +02:00
|
|
|
* of the License, or (at your option) any later version.
|
2009-06-30 06:27:48 +00:00
|
|
|
*
|
|
|
|
* 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,
|
2010-02-12 13:34:04 +00:00
|
|
|
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2009-06-30 06:27:48 +00:00
|
|
|
*
|
|
|
|
* The Original Code is Copyright (C) 2009 Blender Foundation.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
2018-06-01 18:19:39 +02:00
|
|
|
*
|
2009-06-30 06:27:48 +00:00
|
|
|
* Contributor(s): Blender Foundation, Andrea Weikert
|
|
|
|
*
|
|
|
|
* ***** END GPL LICENSE BLOCK *****
|
|
|
|
*/
|
|
|
|
|
2011-02-27 20:29:51 +00:00
|
|
|
/** \file blender/editors/space_file/file_panels.c
|
|
|
|
* \ingroup spfile
|
|
|
|
*/
|
|
|
|
|
2013-04-05 17:56:54 +00:00
|
|
|
#include "BLI_blenlib.h"
|
|
|
|
#include "BLI_utildefines.h"
|
2011-02-27 20:29:51 +00:00
|
|
|
|
2009-06-29 20:23:40 +00:00
|
|
|
#include "BKE_context.h"
|
|
|
|
#include "BKE_screen.h"
|
|
|
|
|
2015-08-16 17:32:01 +10:00
|
|
|
#include "BLT_translation.h"
|
2011-06-15 08:28:56 +00:00
|
|
|
|
2009-06-29 20:23:40 +00:00
|
|
|
#include "DNA_screen_types.h"
|
|
|
|
#include "DNA_space_types.h"
|
2010-11-06 18:54:15 +00:00
|
|
|
#include "DNA_userdef_types.h"
|
2009-06-29 20:23:40 +00:00
|
|
|
|
|
|
|
#include "MEM_guardedalloc.h"
|
|
|
|
|
|
|
|
#include "RNA_access.h"
|
2018-07-26 09:59:56 +10:00
|
|
|
#include "RNA_define.h"
|
2009-06-29 20:23:40 +00:00
|
|
|
|
2015-02-11 00:09:45 +01:00
|
|
|
#include "ED_fileselect.h"
|
|
|
|
|
2009-06-29 20:23:40 +00:00
|
|
|
#include "UI_interface.h"
|
|
|
|
#include "UI_resources.h"
|
|
|
|
|
2009-07-28 16:46:14 +00:00
|
|
|
#include "WM_api.h"
|
|
|
|
#include "WM_types.h"
|
|
|
|
|
2009-06-29 20:23:40 +00:00
|
|
|
#include "file_intern.h"
|
|
|
|
#include "fsmenu.h"
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
|
2018-07-02 11:47:00 +02:00
|
|
|
static bool file_panel_operator_poll(const bContext *C, PanelType *UNUSED(pt))
|
2009-07-28 16:46:14 +00:00
|
|
|
{
|
2012-06-18 13:01:24 +00:00
|
|
|
SpaceFile *sfile = CTX_wm_space_file(C);
|
2009-07-28 16:46:14 +00:00
|
|
|
return (sfile && sfile->op);
|
2009-06-29 20:23:40 +00:00
|
|
|
}
|
|
|
|
|
2009-07-28 16:46:14 +00:00
|
|
|
static void file_panel_operator_header(const bContext *C, Panel *pa)
|
|
|
|
{
|
2012-06-18 13:01:24 +00:00
|
|
|
SpaceFile *sfile = CTX_wm_space_file(C);
|
|
|
|
wmOperator *op = sfile->op;
|
2009-07-28 16:46:14 +00:00
|
|
|
|
2012-05-20 13:56:42 +00:00
|
|
|
BLI_strncpy(pa->drawname, RNA_struct_ui_name(op->type->srna), sizeof(pa->drawname));
|
2009-07-28 16:46:14 +00:00
|
|
|
}
|
2009-06-29 20:23:40 +00:00
|
|
|
|
|
|
|
static void file_panel_operator(const bContext *C, Panel *pa)
|
|
|
|
{
|
2012-06-18 13:01:24 +00:00
|
|
|
SpaceFile *sfile = CTX_wm_space_file(C);
|
|
|
|
wmOperator *op = sfile->op;
|
2015-02-11 00:09:45 +01:00
|
|
|
|
2014-11-09 21:20:40 +01:00
|
|
|
UI_block_func_set(uiLayoutGetBlock(pa->layout), file_draw_check_cb, NULL, NULL);
|
2009-06-29 20:23:40 +00:00
|
|
|
|
2018-07-26 09:59:56 +10:00
|
|
|
/* Hack: temporary hide.*/
|
|
|
|
const char *hide[3] = {"filepath", "directory", "filename"};
|
|
|
|
for (int i = 0; i < ARRAY_SIZE(hide); i++) {
|
|
|
|
PropertyRNA *prop = RNA_struct_find_property(op->ptr, "filepath");
|
|
|
|
RNA_def_property_flag(prop, PROP_HIDDEN);
|
|
|
|
}
|
|
|
|
|
|
|
|
uiTemplateOperatorPropertyButs(C, pa->layout, op, '\0', UI_TEMPLATE_OP_PROPS_SHOW_EMPTY);
|
|
|
|
|
|
|
|
for (int i = 0; i < ARRAY_SIZE(hide); i++) {
|
|
|
|
PropertyRNA *prop = RNA_struct_find_property(op->ptr, "filepath");
|
|
|
|
RNA_def_property_clear_flag(prop, PROP_HIDDEN);
|
|
|
|
}
|
2010-12-15 05:42:23 +00:00
|
|
|
|
2014-11-09 21:20:40 +01:00
|
|
|
UI_block_func_set(uiLayoutGetBlock(pa->layout), NULL, NULL, NULL);
|
2009-07-28 16:46:14 +00:00
|
|
|
}
|
2009-06-29 20:23:40 +00:00
|
|
|
|
|
|
|
void file_panels_register(ARegionType *art)
|
|
|
|
{
|
|
|
|
PanelType *pt;
|
|
|
|
|
2012-06-18 13:01:24 +00:00
|
|
|
pt = MEM_callocN(sizeof(PanelType), "spacetype file operator properties");
|
2009-06-29 20:23:40 +00:00
|
|
|
strcpy(pt->idname, "FILE_PT_operator");
|
2012-03-03 21:42:21 +00:00
|
|
|
strcpy(pt->label, N_("Operator"));
|
2015-08-16 17:32:01 +10:00
|
|
|
strcpy(pt->translation_context, BLT_I18NCONTEXT_DEFAULT_BPYRNA);
|
2012-06-18 13:01:24 +00:00
|
|
|
pt->poll = file_panel_operator_poll;
|
|
|
|
pt->draw_header = file_panel_operator_header;
|
|
|
|
pt->draw = file_panel_operator;
|
2009-06-29 20:23:40 +00:00
|
|
|
BLI_addtail(&art->paneltypes, pt);
|
2009-07-09 19:49:04 +00:00
|
|
|
}
|