Previously there was no way to see if autopack was enabled. Now the external data menu has 3 entries instead of 2: * Automatically Pack Into .blend (with checkbox to indicate autopack on/off) * Pack All Into .blend * Unpack All Into Files Fixes T37608, includes modifications by Brecht from the original patch. Reviewed By: brecht Differential Revision: http://developer.blender.org/D118
71 lines
2.5 KiB
C++
71 lines
2.5 KiB
C++
/*
|
|
* ***** 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
*
|
|
* The Original Code is Copyright (C) 2008 Blender Foundation.
|
|
* All rights reserved.
|
|
*
|
|
*
|
|
* Contributor(s): Blender Foundation
|
|
*
|
|
* ***** END GPL LICENSE BLOCK *****
|
|
*/
|
|
|
|
/** \file blender/editors/space_info/info_intern.h
|
|
* \ingroup spinfo
|
|
*/
|
|
|
|
#ifndef __INFO_INTERN_H__
|
|
#define __INFO_INTERN_H__
|
|
|
|
/* internal exports only */
|
|
|
|
struct SpaceInfo;
|
|
struct wmOperatorType;
|
|
struct ReportList;
|
|
|
|
void FILE_OT_autopack_toggle(struct wmOperatorType *ot);
|
|
void FILE_OT_pack_all(struct wmOperatorType *ot);
|
|
void FILE_OT_unpack_all(struct wmOperatorType *ot);
|
|
void FILE_OT_unpack_item(struct wmOperatorType *ot);
|
|
void FILE_OT_pack_libraries(struct wmOperatorType *ot);
|
|
void FILE_OT_unpack_libraries(struct wmOperatorType *ot);
|
|
|
|
void FILE_OT_make_paths_relative(struct wmOperatorType *ot);
|
|
void FILE_OT_make_paths_absolute(struct wmOperatorType *ot);
|
|
void FILE_OT_report_missing_files(struct wmOperatorType *ot);
|
|
void FILE_OT_find_missing_files(struct wmOperatorType *ot);
|
|
|
|
|
|
void INFO_OT_reports_display_update(struct wmOperatorType *ot);
|
|
|
|
/* info_draw.c */
|
|
void *info_text_pick(struct SpaceInfo *sinfo, struct ARegion *ar, ReportList *reports, int mouse_y);
|
|
int info_textview_height(struct SpaceInfo *sinfo, struct ARegion *ar, struct ReportList *reports);
|
|
void info_textview_main(struct SpaceInfo *sinfo, struct ARegion *ar, struct ReportList *reports);
|
|
|
|
/* info_report.c */
|
|
int info_report_mask(struct SpaceInfo *sinfo);
|
|
void INFO_OT_select_pick(struct wmOperatorType *ot); /* report selection */
|
|
void INFO_OT_select_all_toggle(struct wmOperatorType *ot);
|
|
void INFO_OT_select_border(struct wmOperatorType *ot);
|
|
|
|
void INFO_OT_report_replay(struct wmOperatorType *ot);
|
|
void INFO_OT_report_delete(struct wmOperatorType *ot);
|
|
void INFO_OT_report_copy(struct wmOperatorType *ot);
|
|
|
|
#endif /* __INFO_INTERN_H__ */
|