2002-10-12 11:37:38 +00:00
|
|
|
/**
|
|
|
|
* blenlib/BKE_text.h (mar-2001 nzc)
|
|
|
|
*
|
|
|
|
* $Id$
|
|
|
|
*
|
2008-04-16 22:40:48 +00:00
|
|
|
* ***** BEGIN GPL LICENSE BLOCK *****
|
2002-10-12 11:37:38 +00:00
|
|
|
*
|
|
|
|
* 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
|
2008-04-16 22:40:48 +00:00
|
|
|
* of the License, or (at your option) any later version.
|
2002-10-12 11:37:38 +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,
|
|
|
|
* Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
*
|
|
|
|
* The Original Code is Copyright (C) 2001-2002 by NaN Holding BV.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* The Original Code is: all of this file.
|
|
|
|
*
|
|
|
|
* Contributor(s): none yet.
|
|
|
|
*
|
2008-04-16 22:40:48 +00:00
|
|
|
* ***** END GPL LICENSE BLOCK *****
|
2002-10-12 11:37:38 +00:00
|
|
|
*/
|
|
|
|
#ifndef BKE_TEXT_H
|
|
|
|
#define BKE_TEXT_H
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
struct Text;
|
|
|
|
struct TextLine;
|
2003-10-25 12:27:16 +00:00
|
|
|
struct SpaceText;
|
2002-10-12 11:37:38 +00:00
|
|
|
|
|
|
|
void free_text (struct Text *text);
|
|
|
|
void txt_set_undostate (int u);
|
|
|
|
int txt_get_undostate (void);
|
2007-03-11 16:25:17 +00:00
|
|
|
struct Text* add_empty_text (char *name);
|
2002-10-12 11:37:38 +00:00
|
|
|
int reopen_text (struct Text *text);
|
|
|
|
struct Text* add_text (char *file);
|
|
|
|
struct Text* copy_text (struct Text *ta);
|
|
|
|
|
|
|
|
void txt_free_cut_buffer (void);
|
|
|
|
|
|
|
|
char* txt_to_buf (struct Text *text);
|
|
|
|
void txt_clean_text (struct Text *text);
|
|
|
|
void txt_order_cursors (struct Text *text);
|
2008-07-23 19:35:13 +00:00
|
|
|
int txt_find_string (struct Text *text, char *findstr, int wrap);
|
2002-10-12 11:37:38 +00:00
|
|
|
int txt_has_sel (struct Text *text);
|
|
|
|
int txt_get_span (struct TextLine *from, struct TextLine *to);
|
|
|
|
void txt_move_up (struct Text *text, short sel);
|
|
|
|
void txt_move_down (struct Text *text, short sel);
|
|
|
|
void txt_move_left (struct Text *text, short sel);
|
|
|
|
void txt_move_right (struct Text *text, short sel);
|
2008-06-04 23:20:54 +00:00
|
|
|
void txt_jump_left (struct Text *text, short sel);
|
|
|
|
void txt_jump_right (struct Text *text, short sel);
|
2002-10-12 11:37:38 +00:00
|
|
|
void txt_move_bof (struct Text *text, short sel);
|
|
|
|
void txt_move_eof (struct Text *text, short sel);
|
|
|
|
void txt_move_bol (struct Text *text, short sel);
|
|
|
|
void txt_move_eol (struct Text *text, short sel);
|
|
|
|
void txt_move_toline (struct Text *text, unsigned int line, short sel);
|
2008-06-17 19:26:26 +00:00
|
|
|
void txt_move_to (struct Text *text, unsigned int line, unsigned int ch, short sel);
|
2002-10-12 11:37:38 +00:00
|
|
|
void txt_pop_sel (struct Text *text);
|
|
|
|
void txt_delete_char (struct Text *text);
|
2008-06-04 23:20:54 +00:00
|
|
|
void txt_delete_word (struct Text *text);
|
2002-10-12 11:37:38 +00:00
|
|
|
void txt_copy_sel (struct Text *text);
|
|
|
|
void txt_sel_all (struct Text *text);
|
|
|
|
void txt_sel_line (struct Text *text);
|
|
|
|
void txt_print_cutbuffer (void);
|
|
|
|
void txt_cut_sel (struct Text *text);
|
|
|
|
char* txt_sel_to_buf (struct Text *text);
|
|
|
|
void txt_insert_buf (struct Text *text, char *in_buffer);
|
|
|
|
void txt_paste (struct Text *text);
|
|
|
|
void txt_print_undo (struct Text *text);
|
|
|
|
void txt_undo_add_toop (struct Text *text, int op, unsigned int froml, unsigned short fromc, unsigned int tol, unsigned short toc);
|
|
|
|
void txt_do_undo (struct Text *text);
|
|
|
|
void txt_do_redo (struct Text *text);
|
|
|
|
void txt_split_curline (struct Text *text);
|
|
|
|
void txt_backspace_char (struct Text *text);
|
2008-06-04 23:20:54 +00:00
|
|
|
void txt_backspace_word (struct Text *text);
|
2002-10-12 11:37:38 +00:00
|
|
|
int txt_add_char (struct Text *text, char add);
|
2008-06-04 12:32:06 +00:00
|
|
|
int txt_replace_char (struct Text *text, char add);
|
2008-07-23 19:35:13 +00:00
|
|
|
void txt_find_panel (struct SpaceText *st, int again, int flags);
|
2003-10-25 12:27:16 +00:00
|
|
|
void run_python_script (struct SpaceText *st);
|
|
|
|
int jumptoline_interactive (struct SpaceText *st);
|
|
|
|
void txt_export_to_object (struct Text *text);
|
2005-03-09 19:45:59 +00:00
|
|
|
void txt_export_to_objects(struct Text *text);
|
2004-10-14 23:37:04 +00:00
|
|
|
void unindent (struct Text *text);
|
|
|
|
void comment (struct Text *text);
|
Bugfix for disappearing hilight bug and code re-org for text editor
from Ricki Myers (themyers).
Comes with nice juicy commit msg, too!
- source/blender/blenkernel/BKE_text.h
- Removed indent_paste, uncommen, unindent_lines, comment_paste,
uncomment_paste, uncomment, set_tabs.
All these functions cut and re-added text (I felt this was
unsafe). whicch is was caused the highlight loss.
- Now the only functions are Indent, Unindent, comment, uncomment,
setcurr_tab. All these functions only take one @parm (struct Text)
-indent(struct Text *text)
copy's the selected text in a MEM_mallocN line by line added a
tab at the begginning
- Unindent(struct Text *text)
Tests if current line starts with a tab.
if TAB remove it
- comment(struct Text *text)
copy's the selected text in a MEM_mallocN and adding a # at the begginning
- Uncomment(struct Text *text)
Tests if current line starts with a #.
if # remove it
- setcurr_tab (Text *text)
Checks for Tabs pri. to any text
if : is found and not in a comment then Tabs is increased by one
if "return", "break", "pass" is found then Tabs is decreased
- blender/source/blender/src/header_text.c
Changed: txt_cut_sel(text);
indent_paste(text);
TO:
txt_order_cursors(text);
indent(text);
* no more cutting of the text
- source/blender/src/drawtext.c
set_tabs(Text *text) just calls setcurr_tab(text);
2005-04-10 14:01:41 +00:00
|
|
|
void indent (struct Text *text);
|
|
|
|
void uncomment (struct Text *text);
|
|
|
|
int setcurr_tab (struct Text *text);
|
2006-03-05 19:50:14 +00:00
|
|
|
void convert_tabs (struct SpaceText *st, int tab);
|
2008-03-04 00:41:30 +00:00
|
|
|
void txt_copy_clipboard (struct Text *text);
|
|
|
|
void txt_paste_clipboard (struct Text *text);
|
2002-10-12 11:37:38 +00:00
|
|
|
/* Undo opcodes */
|
|
|
|
|
|
|
|
/* Simple main cursor movement */
|
|
|
|
#define UNDO_CLEFT 001
|
|
|
|
#define UNDO_CRIGHT 002
|
|
|
|
#define UNDO_CUP 003
|
|
|
|
#define UNDO_CDOWN 004
|
|
|
|
|
|
|
|
/* Simple selection cursor movement */
|
|
|
|
#define UNDO_SLEFT 005
|
|
|
|
#define UNDO_SRIGHT 006
|
|
|
|
#define UNDO_SUP 007
|
|
|
|
#define UNDO_SDOWN 021
|
|
|
|
|
|
|
|
/* Complex movement (opcode is followed
|
|
|
|
* by 4 character line ID + a 2 character
|
|
|
|
* position ID and opcode (repeat)) */
|
|
|
|
#define UNDO_CTO 022
|
|
|
|
#define UNDO_STO 023
|
|
|
|
|
|
|
|
/* Complex editing (opcode is followed
|
|
|
|
* by 1 character ID and opcode (repeat)) */
|
|
|
|
#define UNDO_INSERT 024
|
|
|
|
#define UNDO_BS 025
|
|
|
|
#define UNDO_DEL 026
|
|
|
|
|
|
|
|
/* Text block (opcode is followed
|
|
|
|
* by 4 character length ID + the text
|
|
|
|
* block itself + the 4 character length
|
|
|
|
* ID (repeat) and opcode (repeat)) */
|
|
|
|
#define UNDO_DBLOCK 027 /* Delete block */
|
|
|
|
#define UNDO_IBLOCK 030 /* Insert block */
|
|
|
|
|
|
|
|
/* Misc */
|
|
|
|
#define UNDO_SWAP 031 /* Swap cursors */
|
|
|
|
|
2005-12-12 18:35:15 +00:00
|
|
|
#define UNDO_INDENT 032
|
|
|
|
#define UNDO_UNINDENT 033
|
|
|
|
#define UNDO_COMMENT 034
|
|
|
|
#define UNDO_UNCOMMENT 035
|
|
|
|
|
2008-07-23 19:35:13 +00:00
|
|
|
/* Find and replace flags */
|
|
|
|
#define TXT_FIND_REPLACE 0x01
|
|
|
|
#define TXT_FIND_ALLTEXTS 0x02
|
|
|
|
#define TXT_FIND_WRAP 0x04
|
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|