2003-04-26 13:07:59 +00:00
|
|
|
/* text.c
|
|
|
|
*
|
|
|
|
*
|
2002-10-12 11:37:38 +00:00
|
|
|
* $Id$
|
|
|
|
*
|
2008-01-07 19:13:47 +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-01-07 19:13:47 +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,
|
2010-02-12 13:34:04 +00:00
|
|
|
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2002-10-12 11:37:38 +00:00
|
|
|
*
|
|
|
|
* 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-01-07 19:13:47 +00:00
|
|
|
* ***** END GPL LICENSE BLOCK *****
|
2002-10-12 11:37:38 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <string.h> /* strstr */
|
2008-06-26 18:28:33 +00:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
2002-10-12 11:37:38 +00:00
|
|
|
|
|
|
|
#include "MEM_guardedalloc.h"
|
|
|
|
|
|
|
|
#include "BLI_blenlib.h"
|
|
|
|
|
2009-09-04 21:02:43 +00:00
|
|
|
#include "DNA_constraint_types.h"
|
|
|
|
#include "DNA_controller_types.h"
|
Giant commit!
A full detailed description of this will be done later... is several days
of work. Here's a summary:
Render:
- Full cleanup of render code, removing *all* globals and bad level calls
all over blender. Render module is now not called abusive anymore
- API-fied calls to rendering
- Full recode of internal render pipeline. Is now rendering tiles by
default, prepared for much smarter 'bucket' render later.
- Each thread now can render a full part
- Renders were tested with 4 threads, goes fine, apart from some lookup
tables in softshadow and AO still
- Rendering is prepared to do multiple layers and passes
- No single 32 bits trick in render code anymore, all 100% floats now.
Writing images/movies
- moved writing images to blender kernel (bye bye 'schrijfplaatje'!)
- made a new Movie handle system, also in kernel. This will enable much
easier use of movies in Blender
PreviewRender:
- Using new render API, previewrender (in buttons) now uses regular render
code to generate images.
- new datafile 'preview.blend.c' has the preview scenes in it
- previews get rendered in exact displayed size (1 pixel = 1 pixel)
3D Preview render
- new; press Pkey in 3d window, for a panel that continuously renders
(pkey is for games, i know... but we dont do that in orange now!)
- this render works nearly identical to buttons-preview render, so it stops
rendering on any event (mouse, keyboard, etc)
- on moving/scaling the panel, the render code doesn't recreate all geometry
- same for shifting/panning view
- all other operations (now) regenerate the full render database still.
- this is WIP... but big fun, especially for simple scenes!
Compositor
- Using same node system as now in use for shaders, you can composit images
- works pretty straightforward... needs much more options/tools and integration
with rendering still
- is not threaded yet, nor is so smart to only recalculate changes... will be
done soon!
- the "Render Result" node will get all layers/passes as output sockets
- The "Output" node renders to a builtin image, which you can view in the Image
window. (yes, output nodes to render-result, and to files, is on the list!)
The Bad News
- "Unified Render" is removed. It might come back in some stage, but this
system should be built from scratch. I can't really understand this code...
I expect it is not much needed, especially with advanced layer/passes
control
- Panorama render, Field render, Motion blur, is not coded yet... (I had to
recode every single feature in render, so...!)
- Lens Flare is also not back... needs total revision, might become composit
effect though (using zbuffer for visibility)
- Part render is gone! (well, thats obvious, its default now).
- The render window is only restored with limited functionality... I am going
to check first the option to render to a Image window, so Blender can become
a true single-window application. :)
For example, the 'Spare render buffer' (jkey) doesnt work.
- Render with border, now default creates a smaller image
- No zbuffers are written yet... on the todo!
- Scons files and MSVC will need work to get compiling again
OK... thats what I can quickly recall. Now go compiling!
2006-01-23 22:05:47 +00:00
|
|
|
#include "DNA_scene_types.h"
|
2009-09-04 21:02:43 +00:00
|
|
|
#include "DNA_screen_types.h"
|
|
|
|
#include "DNA_space_types.h"
|
2002-10-12 11:37:38 +00:00
|
|
|
#include "DNA_text_types.h"
|
|
|
|
|
2009-09-04 21:02:43 +00:00
|
|
|
#include "BKE_depsgraph.h"
|
2002-10-12 11:37:38 +00:00
|
|
|
#include "BKE_global.h"
|
2009-09-04 21:02:43 +00:00
|
|
|
#include "BKE_library.h"
|
2002-10-12 11:37:38 +00:00
|
|
|
#include "BKE_main.h"
|
2009-09-04 21:02:43 +00:00
|
|
|
#include "BKE_text.h"
|
|
|
|
#include "BKE_utildefines.h"
|
2002-10-12 11:37:38 +00:00
|
|
|
|
2008-10-29 16:49:51 +00:00
|
|
|
#ifndef DISABLE_PYTHON
|
2003-11-23 14:28:46 +00:00
|
|
|
#include "BPY_extern.h"
|
2008-10-28 18:47:13 +00:00
|
|
|
#endif
|
2003-11-23 14:28:46 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
/***************/ /*
|
|
|
|
|
|
|
|
How Texts should work
|
|
|
|
--
|
|
|
|
A text should relate to a file as follows -
|
|
|
|
(Text *)->name should be the place where the
|
|
|
|
file will or has been saved.
|
|
|
|
|
|
|
|
(Text *)->flags has the following bits
|
|
|
|
TXT_ISDIRTY - should always be set if the file in mem. differs from
|
|
|
|
the file on disk, or if there is no file on disk.
|
|
|
|
TXT_ISMEM - should always be set if the Text has not been mapped to
|
|
|
|
a file, in which case (Text *)->name may be NULL or garbage.
|
|
|
|
TXT_ISEXT - should always be set if the Text is not to be written into
|
|
|
|
the .blend
|
|
|
|
TXT_ISSCRIPT - should be set if the user has designated the text
|
BPython:
- Made Blender.event var (previously only used by script links) hold ascii value -- where it applies -- of current event during events callback registered with Draw.Register(gui, events, button_events). Useful for gui scripts like Campbell's Python console. No problem using this var to hold the value, since in gui scripts it was not used (always None).
- Updated Window and Window.Theme with new theme vars and the Time space.
- Script links:
-- Added "Render" event for script links (runs twice, second time as "PostEvent", for clean-up actions). Now FrameChanged links don't run when a single pic is rendered.
-- Added "Enable Script Links" button in the script buttons tab. Now this bit gets saved in .blends along with the rest of G.f, so users can define per .blend if they are on or off by default. "blender -y" also disables all slinks as happened before with OnLoad ones only.
-- Other small changes in the script buttons tab:
When a link is added (button "new"), it becomes the active one for the window, no need to press a button to reach it.
Also, a pupmenu showing all available texts is shown when "new" is pressed, so users can choose a text w/o having to type. Cancel the popup to leave the string button empty (link exists, but has no script assigned). A pulldown would be better UI-wise, but it's kinda weird to show both scripts and normal texts (Blender doesn't differentiate them) in a script links pulldown. With a popup we can show only texts ending in ".py" (not done in this commit, need opinions) and if the script has no or another extension, case of many in old and current .blend's, there's still the string box for writing its name.
-- Implemented Ton's space handler script links:
Right now only for the 3d View, but it's trivial to add for others. There are two types: EVENT, to receive 3d View events from a chosen window and DRAW, to draw on the window. Ton's idea was to give scripts a controlled way to integrate better within Blender.
Here's how it works:
- scripts must have a proper header, like:
# SPACEHANDLER.VIEW3D.EVENT
and then they are shown in 3d View's View menu, "Space Handler Scripts" submenu. Check (mark, click on it) a script to make it active.
EVENT handlers should consult the Blender.event var to get the current event, which can be compared with values from the Draw module:
import Blender
from Blender import Draw
evt = Blender.event
if evt == Draw.AKEY:
print "a"
elif evt == Draw.LEFTMOUSE:
print "left mouse button"
else:
return # ignore, pass event back to Blender
Blender.event = None # tell Blender not to process itself the event
DRAW handlers are free to draw to their owner 3D View. OpenGL attributes and modelview and projection matrices are pushed before running the handler and poped when it finishes.
To communicate between EVENT and DRAW handler scripts we have the Blender.Registry module, as always.
Still need to code some nice example, which should also serve to test properly space handlers. Simple tests went fine.
- doc updates about the additions.
=======
Note: the UI part of the space handlers and script links is of course open for changes, I just tried to make it understandable. Probably we won't use the scriptlinks icon for "None Available" (check 3d View -> View -> Space Handler Scripts), though it hints at what space handlers are. The tooltips may not be accepted either, since other menus don't use them. Opinions welcomed.
2005-05-08 21:20:34 +00:00
|
|
|
as a script. (NEW: this was unused, but now it is needed by
|
|
|
|
space handler script links (see header_view3d.c, for example)
|
2002-10-12 11:37:38 +00:00
|
|
|
|
|
|
|
->>> see also: /makesdna/DNA_text_types.h
|
|
|
|
|
|
|
|
Display
|
|
|
|
--
|
|
|
|
The st->top determines at what line the top of the text is displayed.
|
|
|
|
If the user moves the cursor the st containing that cursor should
|
|
|
|
be popped ... other st's retain their own top location.
|
|
|
|
|
2008-08-06 13:46:44 +00:00
|
|
|
Markers
|
|
|
|
--
|
|
|
|
The mrk->flags define the behaviour and relationships between markers. The
|
|
|
|
upper two bytes are used to hold a group ID, the lower two are normal flags. If
|
|
|
|
TMARK_EDITALL is set the group ID defines which other markers should be edited.
|
2002-10-12 11:37:38 +00:00
|
|
|
|
2008-08-06 13:46:44 +00:00
|
|
|
The mrk->clr field is used to visually group markers where the flags may not
|
|
|
|
match. A template system, for example, may allow editing of repeating tokens
|
|
|
|
(in one group) but include other marked positions (in another group) all in the
|
|
|
|
same template with the same colour.
|
2002-10-12 11:37:38 +00:00
|
|
|
|
2008-08-06 13:46:44 +00:00
|
|
|
Undo
|
|
|
|
--
|
2002-10-12 11:37:38 +00:00
|
|
|
Undo/Redo works by storing
|
|
|
|
events in a queue, and a pointer
|
|
|
|
to the current position in the
|
|
|
|
queue...
|
|
|
|
|
|
|
|
Events are stored using an
|
|
|
|
arbitrary op-code system
|
|
|
|
to keep track of
|
|
|
|
a) the two cursors (normal and selected)
|
|
|
|
b) input (visible and control (ie backspace))
|
|
|
|
|
|
|
|
input data is stored as its
|
|
|
|
ASCII value, the opcodes are
|
|
|
|
then selected to not conflict.
|
|
|
|
|
|
|
|
opcodes with data in between are
|
|
|
|
written at the beginning and end
|
|
|
|
of the data to allow undo and redo
|
|
|
|
to simply check the code at the current
|
|
|
|
undo position
|
|
|
|
|
|
|
|
*/ /***************/
|
|
|
|
|
|
|
|
/***/
|
|
|
|
|
|
|
|
static void txt_pop_first(Text *text);
|
|
|
|
static void txt_pop_last(Text *text);
|
|
|
|
static void txt_undo_add_op(Text *text, int op);
|
2009-09-16 06:02:56 +00:00
|
|
|
static void txt_undo_add_block(Text *text, int op, const char *buf);
|
2002-10-12 11:37:38 +00:00
|
|
|
static void txt_delete_line(Text *text, TextLine *line);
|
2009-09-16 06:02:56 +00:00
|
|
|
static void txt_delete_sel (Text *text);
|
|
|
|
static void txt_make_dirty (Text *text);
|
2002-10-12 11:37:38 +00:00
|
|
|
|
|
|
|
/***/
|
|
|
|
|
|
|
|
static unsigned char undoing;
|
|
|
|
|
|
|
|
/* allow to switch off undoing externally */
|
|
|
|
void txt_set_undostate(int u)
|
|
|
|
{
|
|
|
|
undoing = u;
|
|
|
|
}
|
|
|
|
|
|
|
|
int txt_get_undostate(void)
|
|
|
|
{
|
|
|
|
return undoing;
|
|
|
|
}
|
|
|
|
|
2010-01-16 14:05:39 +00:00
|
|
|
static void init_undo_text(Text *text)
|
|
|
|
{
|
|
|
|
text->undo_pos= -1;
|
|
|
|
text->undo_len= TXT_INIT_UNDO;
|
|
|
|
text->undo_buf= MEM_mallocN(text->undo_len, "undo buf");
|
|
|
|
}
|
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
void free_text(Text *text)
|
|
|
|
{
|
|
|
|
TextLine *tmp;
|
2005-05-13 16:11:28 +00:00
|
|
|
|
|
|
|
for (tmp= text->lines.first; tmp; tmp= tmp->next) {
|
2002-10-12 11:37:38 +00:00
|
|
|
MEM_freeN(tmp->line);
|
2005-05-13 16:11:28 +00:00
|
|
|
if (tmp->format)
|
|
|
|
MEM_freeN(tmp->format);
|
|
|
|
}
|
2002-10-12 11:37:38 +00:00
|
|
|
|
|
|
|
BLI_freelistN(&text->lines);
|
2008-08-04 23:01:47 +00:00
|
|
|
BLI_freelistN(&text->markers);
|
2002-10-12 11:37:38 +00:00
|
|
|
|
|
|
|
if(text->name) MEM_freeN(text->name);
|
|
|
|
MEM_freeN(text->undo_buf);
|
2008-10-28 18:47:13 +00:00
|
|
|
#ifndef DISABLE_PYTHON
|
2003-12-14 01:18:09 +00:00
|
|
|
if (text->compiled) BPY_free_compiled_text(text);
|
2008-10-28 18:47:13 +00:00
|
|
|
#endif
|
2002-10-12 11:37:38 +00:00
|
|
|
}
|
|
|
|
|
2007-03-11 16:25:17 +00:00
|
|
|
Text *add_empty_text(char *name)
|
2002-10-12 11:37:38 +00:00
|
|
|
{
|
|
|
|
Text *ta;
|
|
|
|
TextLine *tmp;
|
|
|
|
|
2007-03-12 06:21:58 +00:00
|
|
|
ta= alloc_libblock(&G.main->text, ID_TXT, name);
|
2002-10-12 11:37:38 +00:00
|
|
|
ta->id.us= 1;
|
|
|
|
|
|
|
|
ta->name= NULL;
|
|
|
|
|
2010-03-22 09:30:00 +00:00
|
|
|
init_undo_text(ta);
|
2010-01-16 14:05:39 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
ta->nlines=1;
|
2010-03-06 21:45:46 +00:00
|
|
|
ta->flags= TXT_ISDIRTY | TXT_ISMEM;
|
2010-03-06 22:12:42 +00:00
|
|
|
if((U.flag & USER_TXT_TABSTOSPACES_DISABLE)==0)
|
2010-03-06 21:45:46 +00:00
|
|
|
ta->flags |= TXT_TABSTOSPACES;
|
2002-10-12 11:37:38 +00:00
|
|
|
|
|
|
|
ta->lines.first= ta->lines.last= NULL;
|
2008-08-04 23:01:47 +00:00
|
|
|
ta->markers.first= ta->markers.last= NULL;
|
2002-10-12 11:37:38 +00:00
|
|
|
|
|
|
|
tmp= (TextLine*) MEM_mallocN(sizeof(TextLine), "textline");
|
|
|
|
tmp->line= (char*) MEM_mallocN(1, "textline_string");
|
2008-07-28 11:05:35 +00:00
|
|
|
tmp->format= NULL;
|
2005-05-13 16:11:28 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
tmp->line[0]=0;
|
|
|
|
tmp->len= 0;
|
|
|
|
|
|
|
|
tmp->next= NULL;
|
|
|
|
tmp->prev= NULL;
|
|
|
|
|
|
|
|
BLI_addhead(&ta->lines, tmp);
|
|
|
|
|
|
|
|
ta->curl= ta->lines.first;
|
|
|
|
ta->curc= 0;
|
|
|
|
ta->sell= ta->lines.first;
|
|
|
|
ta->selc= 0;
|
|
|
|
|
|
|
|
return ta;
|
|
|
|
}
|
|
|
|
|
|
|
|
// this function removes any control characters from
|
|
|
|
// a textline
|
|
|
|
|
|
|
|
static void cleanup_textline(TextLine * tl)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < tl->len; i++ ) {
|
|
|
|
if (tl->line[i] < ' ' && tl->line[i] != '\t') {
|
|
|
|
memmove(tl->line + i, tl->line + i + 1, tl->len - i);
|
|
|
|
tl->len--;
|
|
|
|
i--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int reopen_text(Text *text)
|
|
|
|
{
|
|
|
|
FILE *fp;
|
2008-06-26 18:28:33 +00:00
|
|
|
int i, llen, len, res;
|
2002-10-12 11:37:38 +00:00
|
|
|
unsigned char *buffer;
|
|
|
|
TextLine *tmp;
|
2005-11-06 16:32:54 +00:00
|
|
|
char str[FILE_MAXDIR+FILE_MAXFILE];
|
2008-06-28 00:07:22 +00:00
|
|
|
struct stat st;
|
2002-10-12 11:37:38 +00:00
|
|
|
|
|
|
|
if (!text || !text->name) return 0;
|
|
|
|
|
2005-11-06 16:32:54 +00:00
|
|
|
BLI_strncpy(str, text->name, FILE_MAXDIR+FILE_MAXFILE);
|
2010-03-09 17:36:23 +00:00
|
|
|
BLI_path_abs(str, G.sce);
|
2002-10-12 11:37:38 +00:00
|
|
|
|
2005-11-06 16:32:54 +00:00
|
|
|
fp= fopen(str, "r");
|
2002-10-12 11:37:38 +00:00
|
|
|
if(fp==NULL) return 0;
|
|
|
|
|
|
|
|
/* free memory: */
|
|
|
|
|
2005-05-13 16:11:28 +00:00
|
|
|
for (tmp= text->lines.first; tmp; tmp= tmp->next) {
|
2002-10-12 11:37:38 +00:00
|
|
|
MEM_freeN(tmp->line);
|
2005-05-19 03:15:49 +00:00
|
|
|
if (tmp->format) MEM_freeN(tmp->format);
|
2005-05-13 16:11:28 +00:00
|
|
|
}
|
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
BLI_freelistN(&text->lines);
|
|
|
|
|
|
|
|
text->lines.first= text->lines.last= NULL;
|
|
|
|
text->curl= text->sell= NULL;
|
|
|
|
|
|
|
|
/* clear undo buffer */
|
|
|
|
MEM_freeN(text->undo_buf);
|
2010-01-16 14:05:39 +00:00
|
|
|
init_undo_text(text);
|
2002-10-12 11:37:38 +00:00
|
|
|
|
|
|
|
fseek(fp, 0L, SEEK_END);
|
|
|
|
len= ftell(fp);
|
|
|
|
fseek(fp, 0L, SEEK_SET);
|
|
|
|
|
|
|
|
text->undo_pos= -1;
|
|
|
|
|
|
|
|
buffer= MEM_mallocN(len, "text_buffer");
|
|
|
|
// under windows fread can return less then len bytes because
|
|
|
|
// of CR stripping
|
|
|
|
len = fread(buffer, 1, len, fp);
|
|
|
|
|
|
|
|
fclose(fp);
|
2008-06-28 00:07:22 +00:00
|
|
|
|
|
|
|
res= stat(str, &st);
|
|
|
|
text->mtime= st.st_mtime;
|
2002-10-12 11:37:38 +00:00
|
|
|
|
|
|
|
text->nlines=0;
|
|
|
|
i=0;
|
|
|
|
llen=0;
|
|
|
|
for(i=0; i<len; i++) {
|
|
|
|
if (buffer[i]=='\n') {
|
|
|
|
tmp= (TextLine*) MEM_mallocN(sizeof(TextLine), "textline");
|
|
|
|
tmp->line= (char*) MEM_mallocN(llen+1, "textline_string");
|
2008-07-28 11:05:35 +00:00
|
|
|
tmp->format= NULL;
|
2005-05-13 16:11:28 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
if(llen) memcpy(tmp->line, &buffer[i-llen], llen);
|
|
|
|
tmp->line[llen]=0;
|
|
|
|
tmp->len= llen;
|
|
|
|
|
|
|
|
cleanup_textline(tmp);
|
|
|
|
|
|
|
|
BLI_addtail(&text->lines, tmp);
|
|
|
|
text->nlines++;
|
|
|
|
|
|
|
|
llen=0;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
llen++;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (llen!=0 || text->nlines==0) {
|
|
|
|
tmp= (TextLine*) MEM_mallocN(sizeof(TextLine), "textline");
|
|
|
|
tmp->line= (char*) MEM_mallocN(llen+1, "textline_string");
|
2008-07-28 11:05:35 +00:00
|
|
|
tmp->format= NULL;
|
2002-10-12 11:37:38 +00:00
|
|
|
|
|
|
|
if(llen) memcpy(tmp->line, &buffer[i-llen], llen);
|
|
|
|
|
|
|
|
tmp->line[llen]=0;
|
|
|
|
tmp->len= llen;
|
|
|
|
|
|
|
|
cleanup_textline(tmp);
|
|
|
|
|
|
|
|
BLI_addtail(&text->lines, tmp);
|
|
|
|
text->nlines++;
|
|
|
|
}
|
|
|
|
|
|
|
|
text->curl= text->sell= text->lines.first;
|
|
|
|
text->curc= text->selc= 0;
|
|
|
|
|
|
|
|
MEM_freeN(buffer);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2009-01-04 14:14:06 +00:00
|
|
|
Text *add_text(char *file, const char *relpath)
|
2002-10-12 11:37:38 +00:00
|
|
|
{
|
|
|
|
FILE *fp;
|
2008-06-26 18:28:33 +00:00
|
|
|
int i, llen, len, res;
|
2002-10-12 11:37:38 +00:00
|
|
|
unsigned char *buffer;
|
|
|
|
TextLine *tmp;
|
|
|
|
Text *ta;
|
2005-11-06 16:32:54 +00:00
|
|
|
char str[FILE_MAXDIR+FILE_MAXFILE];
|
2008-06-28 00:07:22 +00:00
|
|
|
struct stat st;
|
2002-10-12 11:37:38 +00:00
|
|
|
|
2005-11-06 16:32:54 +00:00
|
|
|
BLI_strncpy(str, file, FILE_MAXDIR+FILE_MAXFILE);
|
2009-01-04 14:14:06 +00:00
|
|
|
if (relpath) /* can be NULL (bg mode) */
|
2010-03-09 17:36:23 +00:00
|
|
|
BLI_path_abs(str, relpath);
|
2002-10-12 11:37:38 +00:00
|
|
|
|
2005-11-06 16:32:54 +00:00
|
|
|
fp= fopen(str, "r");
|
2002-10-12 11:37:38 +00:00
|
|
|
if(fp==NULL) return NULL;
|
|
|
|
|
2010-06-05 21:19:59 +00:00
|
|
|
ta= alloc_libblock(&G.main->text, ID_TXT, BLI_path_basename(str));
|
2002-10-12 11:37:38 +00:00
|
|
|
ta->id.us= 1;
|
|
|
|
|
|
|
|
ta->lines.first= ta->lines.last= NULL;
|
2008-08-04 23:01:47 +00:00
|
|
|
ta->markers.first= ta->markers.last= NULL;
|
2002-10-12 11:37:38 +00:00
|
|
|
ta->curl= ta->sell= NULL;
|
2010-03-06 21:45:46 +00:00
|
|
|
|
2010-03-06 22:12:42 +00:00
|
|
|
if((U.flag & USER_TXT_TABSTOSPACES_DISABLE)==0)
|
2010-03-06 21:45:46 +00:00
|
|
|
ta->flags= TXT_TABSTOSPACES;
|
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
fseek(fp, 0L, SEEK_END);
|
|
|
|
len= ftell(fp);
|
|
|
|
fseek(fp, 0L, SEEK_SET);
|
|
|
|
|
|
|
|
ta->name= MEM_mallocN(strlen(file)+1, "text_name");
|
|
|
|
strcpy(ta->name, file);
|
|
|
|
|
2010-01-16 14:05:39 +00:00
|
|
|
init_undo_text(ta);
|
2002-10-12 11:37:38 +00:00
|
|
|
|
|
|
|
buffer= MEM_mallocN(len, "text_buffer");
|
|
|
|
// under windows fread can return less then len bytes because
|
|
|
|
// of CR stripping
|
|
|
|
len = fread(buffer, 1, len, fp);
|
|
|
|
|
|
|
|
fclose(fp);
|
2008-06-28 00:07:22 +00:00
|
|
|
|
|
|
|
res= stat(str, &st);
|
|
|
|
ta->mtime= st.st_mtime;
|
2002-10-12 11:37:38 +00:00
|
|
|
|
|
|
|
ta->nlines=0;
|
|
|
|
i=0;
|
|
|
|
llen=0;
|
|
|
|
for(i=0; i<len; i++) {
|
|
|
|
if (buffer[i]=='\n') {
|
|
|
|
tmp= (TextLine*) MEM_mallocN(sizeof(TextLine), "textline");
|
|
|
|
tmp->line= (char*) MEM_mallocN(llen+1, "textline_string");
|
2008-07-28 11:05:35 +00:00
|
|
|
tmp->format= NULL;
|
2005-05-13 16:11:28 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
if(llen) memcpy(tmp->line, &buffer[i-llen], llen);
|
|
|
|
tmp->line[llen]=0;
|
|
|
|
tmp->len= llen;
|
|
|
|
|
|
|
|
cleanup_textline(tmp);
|
|
|
|
|
|
|
|
BLI_addtail(&ta->lines, tmp);
|
|
|
|
ta->nlines++;
|
|
|
|
|
|
|
|
llen=0;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
llen++;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (llen!=0 || ta->nlines==0) {
|
|
|
|
tmp= (TextLine*) MEM_mallocN(sizeof(TextLine), "textline");
|
|
|
|
tmp->line= (char*) MEM_mallocN(llen+1, "textline_string");
|
2008-07-28 11:05:35 +00:00
|
|
|
tmp->format= NULL;
|
2002-10-12 11:37:38 +00:00
|
|
|
|
|
|
|
if(llen) memcpy(tmp->line, &buffer[i-llen], llen);
|
|
|
|
|
|
|
|
tmp->line[llen]=0;
|
|
|
|
tmp->len= llen;
|
|
|
|
|
|
|
|
cleanup_textline(tmp);
|
|
|
|
|
|
|
|
BLI_addtail(&ta->lines, tmp);
|
|
|
|
ta->nlines++;
|
|
|
|
}
|
|
|
|
|
|
|
|
ta->curl= ta->sell= ta->lines.first;
|
|
|
|
ta->curc= ta->selc= 0;
|
|
|
|
|
|
|
|
MEM_freeN(buffer);
|
|
|
|
|
|
|
|
return ta;
|
|
|
|
}
|
|
|
|
|
|
|
|
Text *copy_text(Text *ta)
|
|
|
|
{
|
|
|
|
Text *tan;
|
|
|
|
TextLine *line, *tmp;
|
|
|
|
|
|
|
|
tan= copy_libblock(ta);
|
|
|
|
|
2010-01-26 11:29:39 +00:00
|
|
|
/* file name can be NULL */
|
|
|
|
if(ta->name) {
|
|
|
|
tan->name= MEM_mallocN(strlen(ta->name)+1, "text_name");
|
|
|
|
strcpy(tan->name, ta->name);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
tan->name= NULL;
|
|
|
|
}
|
|
|
|
|
2.5: Text Editor back.
There was very little structure in this code, using many globals
and duplicated code. Now it should be better structured. Most
things should work, the main parts that are not back yet are the
python plugins and markers. Notes:
* Blenfont is used for drawing the text, nicely anti-aliased.
* A monospace truetype font was added, since that is needed for
the text editor. It's Bitstream Vera Sans Mono. This is the
default gnome terminal font, but it doesn't fit entirely well
with the other font I think, can be changed easily of course.
* Clipboard copy/cut/paste now always uses the system clipboard,
the code for the own cut buffer was removed.
* The interface buttons should support copy/cut/paste again now
as well.
* WM_clipboard_text_get/WM_clipboard_text_set were added to the
windowmanager code.
* Find panel is now a kind of second header, instead of a panel.
This needs especially a way to start editing the text field
immediately on open still.
* Operators are independent of the actual space when possible,
was a bit of puzzling but got it solved nice with notifiers,
and some lazy init for syntax highlight in the drawing code.
* RNA was created for the text editor space and used for buttons.
* Operators:
* New, Open, Reload, Save, Save As, Make Internal
* Run Script, Refresh Pyconstraints
* Copy, Cut, Paste
* Convert Whitespace, Uncomment, Comment, Indent, Unindent
* Line Break, Insert
* Next Marker, Previous Marker, Clear All Markers, Mark All
* Select Line, Select All
* Jump, Move, Move Select, Delete, Toggle Overwrite
* Scroll, Scroll Bar, Set Cursor, Line Number
* Find and Replace, Find, Replace, Find Set Selected,
Replace Set Selected
* To 3D Object
* Resolve Conflict
2009-02-28 23:33:35 +00:00
|
|
|
tan->flags = ta->flags | TXT_ISDIRTY;
|
2002-10-12 11:37:38 +00:00
|
|
|
|
|
|
|
tan->lines.first= tan->lines.last= NULL;
|
2008-08-04 23:01:47 +00:00
|
|
|
tan->markers.first= tan->markers.last= NULL;
|
2002-10-12 11:37:38 +00:00
|
|
|
tan->curl= tan->sell= NULL;
|
|
|
|
|
|
|
|
tan->nlines= ta->nlines;
|
|
|
|
|
|
|
|
line= ta->lines.first;
|
|
|
|
/* Walk down, reconstructing */
|
|
|
|
while (line) {
|
|
|
|
tmp= (TextLine*) MEM_mallocN(sizeof(TextLine), "textline");
|
|
|
|
tmp->line= MEM_mallocN(line->len+1, "textline_string");
|
2008-07-28 11:05:35 +00:00
|
|
|
tmp->format= NULL;
|
2002-10-12 11:37:38 +00:00
|
|
|
|
2005-05-13 16:11:28 +00:00
|
|
|
strcpy(tmp->line, line->line);
|
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
tmp->len= line->len;
|
|
|
|
|
|
|
|
BLI_addtail(&tan->lines, tmp);
|
|
|
|
|
|
|
|
line= line->next;
|
|
|
|
}
|
|
|
|
|
|
|
|
tan->curl= tan->sell= tan->lines.first;
|
|
|
|
tan->curc= tan->selc= 0;
|
|
|
|
|
2010-01-16 14:05:39 +00:00
|
|
|
init_undo_text(tan);
|
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
return tan;
|
|
|
|
}
|
|
|
|
|
2009-09-04 21:02:43 +00:00
|
|
|
void unlink_text(Main *bmain, Text *text)
|
|
|
|
{
|
|
|
|
bScreen *scr;
|
|
|
|
ScrArea *area;
|
|
|
|
SpaceLink *sl;
|
|
|
|
Scene *scene;
|
|
|
|
Object *ob;
|
|
|
|
bController *cont;
|
|
|
|
bConstraint *con;
|
|
|
|
short update;
|
|
|
|
|
|
|
|
/* dome */
|
|
|
|
for(scene=bmain->scene.first; scene; scene=scene->id.next)
|
|
|
|
if(scene->r.dometext == text)
|
|
|
|
scene->r.dometext = NULL;
|
|
|
|
|
|
|
|
for(ob=bmain->object.first; ob; ob=ob->id.next) {
|
|
|
|
/* game controllers */
|
|
|
|
for(cont=ob->controllers.first; cont; cont=cont->next) {
|
|
|
|
if(cont->type==CONT_PYTHON) {
|
|
|
|
bPythonCont *pc;
|
|
|
|
|
|
|
|
pc= cont->data;
|
|
|
|
if(pc->text==text) pc->text= NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* pyconstraints */
|
|
|
|
update = 0;
|
|
|
|
|
|
|
|
if(ob->type==OB_ARMATURE && ob->pose) {
|
|
|
|
bPoseChannel *pchan;
|
|
|
|
for(pchan= ob->pose->chanbase.first; pchan; pchan= pchan->next) {
|
|
|
|
for(con = pchan->constraints.first; con; con=con->next) {
|
|
|
|
if(con->type==CONSTRAINT_TYPE_PYTHON) {
|
|
|
|
bPythonConstraint *data = con->data;
|
|
|
|
if (data->text==text) data->text = NULL;
|
|
|
|
update = 1;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for(con = ob->constraints.first; con; con=con->next) {
|
|
|
|
if(con->type==CONSTRAINT_TYPE_PYTHON) {
|
|
|
|
bPythonConstraint *data = con->data;
|
|
|
|
if (data->text==text) data->text = NULL;
|
|
|
|
update = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(update)
|
|
|
|
DAG_id_flush_update(&ob->id, OB_RECALC_DATA);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* pynodes */
|
|
|
|
// XXX nodeDynamicUnlinkText(&text->id);
|
|
|
|
|
|
|
|
/* text space */
|
|
|
|
for(scr= bmain->screen.first; scr; scr= scr->id.next) {
|
|
|
|
for(area= scr->areabase.first; area; area= area->next) {
|
|
|
|
for(sl= area->spacedata.first; sl; sl= sl->next) {
|
|
|
|
if(sl->spacetype==SPACE_TEXT) {
|
|
|
|
SpaceText *st= (SpaceText*) sl;
|
|
|
|
|
|
|
|
if(st->text==text) {
|
|
|
|
st->text= NULL;
|
|
|
|
st->top= 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
text->id.us= 0;
|
|
|
|
}
|
|
|
|
|
2009-09-16 06:02:56 +00:00
|
|
|
void clear_text(Text *text) /* called directly from rna */
|
|
|
|
{
|
|
|
|
int oldstate;
|
|
|
|
|
|
|
|
oldstate = txt_get_undostate( );
|
|
|
|
txt_set_undostate( 1 );
|
|
|
|
txt_sel_all( text );
|
|
|
|
txt_delete_sel(text);
|
|
|
|
txt_set_undostate( oldstate );
|
|
|
|
|
|
|
|
txt_make_dirty(text);
|
|
|
|
}
|
|
|
|
|
|
|
|
void write_text(Text *text, char *str) /* called directly from rna */
|
|
|
|
{
|
|
|
|
int oldstate;
|
|
|
|
|
|
|
|
oldstate = txt_get_undostate( );
|
|
|
|
txt_insert_buf( text, str );
|
|
|
|
txt_move_eof( text, 0 );
|
|
|
|
txt_set_undostate( oldstate );
|
|
|
|
|
|
|
|
txt_make_dirty(text);
|
|
|
|
}
|
2009-09-04 21:02:43 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
/*****************************/
|
|
|
|
/* Editing utility functions */
|
|
|
|
/*****************************/
|
|
|
|
|
2008-07-28 11:05:35 +00:00
|
|
|
static void make_new_line (TextLine *line, char *newline)
|
2002-10-12 11:37:38 +00:00
|
|
|
{
|
2005-05-18 23:54:56 +00:00
|
|
|
if (line->line) MEM_freeN(line->line);
|
|
|
|
if (line->format) MEM_freeN(line->format);
|
2002-10-12 11:37:38 +00:00
|
|
|
|
|
|
|
line->line= newline;
|
2005-05-13 16:11:28 +00:00
|
|
|
line->len= strlen(newline);
|
2008-07-28 11:05:35 +00:00
|
|
|
line->format= NULL;
|
2002-10-12 11:37:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static TextLine *txt_new_line(char *str)
|
|
|
|
{
|
|
|
|
TextLine *tmp;
|
|
|
|
|
|
|
|
if(!str) str= "";
|
|
|
|
|
|
|
|
tmp= (TextLine *) MEM_mallocN(sizeof(TextLine), "textline");
|
|
|
|
tmp->line= MEM_mallocN(strlen(str)+1, "textline_string");
|
2008-07-28 11:05:35 +00:00
|
|
|
tmp->format= NULL;
|
2005-05-13 16:11:28 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
strcpy(tmp->line, str);
|
|
|
|
|
|
|
|
tmp->len= strlen(str);
|
|
|
|
tmp->next= tmp->prev= NULL;
|
|
|
|
|
|
|
|
return tmp;
|
|
|
|
}
|
|
|
|
|
2009-09-17 14:46:22 +00:00
|
|
|
static TextLine *txt_new_linen(const char *str, int n)
|
2002-10-12 11:37:38 +00:00
|
|
|
{
|
|
|
|
TextLine *tmp;
|
|
|
|
|
|
|
|
tmp= (TextLine *) MEM_mallocN(sizeof(TextLine), "textline");
|
|
|
|
tmp->line= MEM_mallocN(n+1, "textline_string");
|
2008-07-28 11:05:35 +00:00
|
|
|
tmp->format= NULL;
|
2005-05-13 16:11:28 +00:00
|
|
|
|
2009-09-17 14:46:22 +00:00
|
|
|
BLI_strncpy(tmp->line, (str)? str: "", n+1);
|
2002-10-12 11:37:38 +00:00
|
|
|
|
|
|
|
tmp->len= strlen(tmp->line);
|
|
|
|
tmp->next= tmp->prev= NULL;
|
|
|
|
|
|
|
|
return tmp;
|
|
|
|
}
|
|
|
|
|
|
|
|
void txt_clean_text (Text *text)
|
|
|
|
{
|
|
|
|
TextLine **top, **bot;
|
|
|
|
|
|
|
|
if (!text) return;
|
|
|
|
|
|
|
|
if (!text->lines.first) {
|
|
|
|
if (text->lines.last) text->lines.first= text->lines.last;
|
|
|
|
else text->lines.first= text->lines.last= txt_new_line(NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!text->lines.last) text->lines.last= text->lines.first;
|
|
|
|
|
|
|
|
top= (TextLine **) &text->lines.first;
|
|
|
|
bot= (TextLine **) &text->lines.last;
|
|
|
|
|
|
|
|
while ((*top)->prev) *top= (*top)->prev;
|
|
|
|
while ((*bot)->next) *bot= (*bot)->next;
|
|
|
|
|
|
|
|
if(!text->curl) {
|
|
|
|
if(text->sell) text->curl= text->sell;
|
|
|
|
else text->curl= text->lines.first;
|
|
|
|
text->curc= 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!text->sell) {
|
|
|
|
text->sell= text->curl;
|
|
|
|
text->selc= 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int txt_get_span (TextLine *from, TextLine *to)
|
|
|
|
{
|
|
|
|
int ret=0;
|
|
|
|
TextLine *tmp= from;
|
|
|
|
|
|
|
|
if (!to || !from) return 0;
|
|
|
|
if (from==to) return 0;
|
|
|
|
|
|
|
|
/* Look forwards */
|
|
|
|
while (tmp) {
|
|
|
|
if (tmp == to) return ret;
|
|
|
|
ret++;
|
|
|
|
tmp= tmp->next;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Look backwards */
|
|
|
|
if (!tmp) {
|
|
|
|
tmp= from;
|
|
|
|
ret=0;
|
|
|
|
while(tmp) {
|
|
|
|
if (tmp == to) break;
|
|
|
|
ret--;
|
|
|
|
tmp= tmp->prev;
|
|
|
|
}
|
|
|
|
if(!tmp) ret=0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void txt_make_dirty (Text *text)
|
|
|
|
{
|
|
|
|
text->flags |= TXT_ISDIRTY;
|
2008-10-28 18:47:13 +00:00
|
|
|
#ifndef DISABLE_PYTHON
|
2002-10-12 11:37:38 +00:00
|
|
|
if (text->compiled) BPY_free_compiled_text(text);
|
2008-10-28 18:47:13 +00:00
|
|
|
#endif
|
2002-10-12 11:37:38 +00:00
|
|
|
}
|
|
|
|
|
2008-08-08 23:14:32 +00:00
|
|
|
/* 0:whitespace, 1:punct, 2:alphanumeric */
|
|
|
|
static short txt_char_type (char ch)
|
2008-06-04 23:20:54 +00:00
|
|
|
{
|
2008-09-27 15:32:28 +00:00
|
|
|
if (ch <= ' ') return 0; /* 32 */
|
|
|
|
if (ch <= '/') return 1; /* 47 */
|
|
|
|
if (ch <= '9') return 2; /* 57 */
|
|
|
|
if (ch <= '@') return 1; /* 64 */
|
|
|
|
if (ch <= 'Z') return 2; /* 90 */
|
|
|
|
if (ch == '_') return 2; /* 95, dont delimit '_' */
|
|
|
|
if (ch <= '`') return 1; /* 96 */
|
|
|
|
if (ch <= 'z') return 2; /* 122 */
|
2008-08-08 23:14:32 +00:00
|
|
|
return 1;
|
2002-10-12 11:37:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/****************************/
|
|
|
|
/* Cursor utility functions */
|
|
|
|
/****************************/
|
|
|
|
|
|
|
|
static void txt_curs_cur (Text *text, TextLine ***linep, int **charp)
|
|
|
|
{
|
|
|
|
*linep= &text->curl; *charp= &text->curc;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void txt_curs_sel (Text *text, TextLine ***linep, int **charp)
|
|
|
|
{
|
|
|
|
*linep= &text->sell; *charp= &text->selc;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void txt_curs_first (Text *text, TextLine **linep, int *charp)
|
|
|
|
{
|
|
|
|
if (text->curl==text->sell) {
|
|
|
|
*linep= text->curl;
|
|
|
|
if (text->curc<text->selc) *charp= text->curc;
|
|
|
|
else *charp= text->selc;
|
|
|
|
} else if (txt_get_span(text->lines.first, text->curl)<txt_get_span(text->lines.first, text->sell)) {
|
|
|
|
*linep= text->curl;
|
|
|
|
*charp= text->curc;
|
|
|
|
} else {
|
|
|
|
*linep= text->sell;
|
|
|
|
*charp= text->selc;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/****************************/
|
|
|
|
/* Cursor movement functions */
|
|
|
|
/****************************/
|
|
|
|
|
|
|
|
void txt_move_up(Text *text, short sel)
|
|
|
|
{
|
|
|
|
TextLine **linep;
|
|
|
|
int *charp, old;
|
|
|
|
|
|
|
|
if (!text) return;
|
|
|
|
if(sel) txt_curs_sel(text, &linep, &charp);
|
|
|
|
else { txt_pop_first(text); txt_curs_cur(text, &linep, &charp); }
|
|
|
|
if (!*linep) return;
|
|
|
|
old= *charp;
|
|
|
|
|
|
|
|
if((*linep)->prev) {
|
|
|
|
*linep= (*linep)->prev;
|
|
|
|
if (*charp > (*linep)->len) {
|
|
|
|
*charp= (*linep)->len;
|
|
|
|
if(!undoing) txt_undo_add_toop(text, sel?UNDO_STO:UNDO_CTO, txt_get_span(text->lines.first, (*linep)->next), old, txt_get_span(text->lines.first, *linep), (unsigned short) *charp);
|
|
|
|
} else {
|
|
|
|
if(!undoing) txt_undo_add_op(text, sel?UNDO_SUP:UNDO_CUP);
|
|
|
|
}
|
|
|
|
} else {
|
2008-07-26 22:37:05 +00:00
|
|
|
txt_move_bol(text, sel);
|
2002-10-12 11:37:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if(!sel) txt_pop_sel(text);
|
|
|
|
}
|
|
|
|
|
|
|
|
void txt_move_down(Text *text, short sel)
|
|
|
|
{
|
|
|
|
TextLine **linep;
|
|
|
|
int *charp, old;
|
|
|
|
|
|
|
|
if (!text) return;
|
|
|
|
if(sel) txt_curs_sel(text, &linep, &charp);
|
|
|
|
else { txt_pop_last(text); txt_curs_cur(text, &linep, &charp); }
|
|
|
|
if (!*linep) return;
|
|
|
|
old= *charp;
|
|
|
|
|
|
|
|
if((*linep)->next) {
|
|
|
|
*linep= (*linep)->next;
|
|
|
|
if (*charp > (*linep)->len) {
|
|
|
|
*charp= (*linep)->len;
|
|
|
|
if(!undoing) txt_undo_add_toop(text, sel?UNDO_STO:UNDO_CTO, txt_get_span(text->lines.first, (*linep)->prev), old, txt_get_span(text->lines.first, *linep), (unsigned short)*charp);
|
|
|
|
} else
|
|
|
|
if(!undoing) txt_undo_add_op(text, sel?UNDO_SDOWN:UNDO_CDOWN);
|
|
|
|
} else {
|
2008-07-26 22:37:05 +00:00
|
|
|
txt_move_eol(text, sel);
|
2002-10-12 11:37:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if(!sel) txt_pop_sel(text);
|
|
|
|
}
|
|
|
|
|
|
|
|
void txt_move_left(Text *text, short sel)
|
|
|
|
{
|
|
|
|
TextLine **linep;
|
|
|
|
int *charp, oundoing= undoing;
|
|
|
|
|
|
|
|
if (!text) return;
|
|
|
|
if(sel) txt_curs_sel(text, &linep, &charp);
|
|
|
|
else { txt_pop_first(text); txt_curs_cur(text, &linep, &charp); }
|
|
|
|
if (!*linep) return;
|
|
|
|
|
|
|
|
undoing= 1;
|
|
|
|
if (*charp== 0) {
|
|
|
|
if ((*linep)->prev) {
|
|
|
|
txt_move_up(text, sel);
|
|
|
|
*charp= (*linep)->len;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
(*charp)--;
|
|
|
|
}
|
|
|
|
undoing= oundoing;
|
|
|
|
if(!undoing) txt_undo_add_op(text, sel?UNDO_SLEFT:UNDO_CLEFT);
|
|
|
|
|
|
|
|
if(!sel) txt_pop_sel(text);
|
|
|
|
}
|
|
|
|
|
|
|
|
void txt_move_right(Text *text, short sel)
|
|
|
|
{
|
|
|
|
TextLine **linep;
|
|
|
|
int *charp, oundoing= undoing;
|
|
|
|
|
|
|
|
if (!text) return;
|
|
|
|
if(sel) txt_curs_sel(text, &linep, &charp);
|
|
|
|
else { txt_pop_last(text); txt_curs_cur(text, &linep, &charp); }
|
|
|
|
if (!*linep) return;
|
|
|
|
|
|
|
|
undoing= 1;
|
|
|
|
if (*charp== (*linep)->len) {
|
|
|
|
if ((*linep)->next) {
|
|
|
|
txt_move_down(text, sel);
|
|
|
|
*charp= 0;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
(*charp)++;
|
|
|
|
}
|
|
|
|
undoing= oundoing;
|
|
|
|
if(!undoing) txt_undo_add_op(text, sel?UNDO_SRIGHT:UNDO_CRIGHT);
|
|
|
|
|
|
|
|
if(!sel) txt_pop_sel(text);
|
|
|
|
}
|
|
|
|
|
2008-06-04 23:20:54 +00:00
|
|
|
void txt_jump_left(Text *text, short sel)
|
|
|
|
{
|
2008-06-10 15:25:05 +00:00
|
|
|
TextLine **linep, *oldl;
|
2008-08-08 23:14:32 +00:00
|
|
|
int *charp, oldc, count, i;
|
2008-06-10 15:25:05 +00:00
|
|
|
unsigned char oldu;
|
|
|
|
|
2008-06-04 23:20:54 +00:00
|
|
|
if (!text) return;
|
2008-06-10 15:25:05 +00:00
|
|
|
if(sel) txt_curs_sel(text, &linep, &charp);
|
|
|
|
else { txt_pop_first(text); txt_curs_cur(text, &linep, &charp); }
|
|
|
|
if (!*linep) return;
|
|
|
|
|
|
|
|
oldl= *linep;
|
|
|
|
oldc= *charp;
|
|
|
|
oldu= undoing;
|
|
|
|
undoing= 1; /* Don't push individual moves to undo stack */
|
|
|
|
|
2008-08-08 23:14:32 +00:00
|
|
|
count= 0;
|
|
|
|
for (i=0; i<3; i++) {
|
|
|
|
if (count < 2) {
|
|
|
|
while (*charp>0 && txt_char_type((*linep)->line[*charp-1])==i) {
|
|
|
|
txt_move_left(text, sel);
|
|
|
|
count++;
|
|
|
|
}
|
|
|
|
}
|
2008-06-10 15:25:05 +00:00
|
|
|
}
|
2008-08-08 23:14:32 +00:00
|
|
|
if (count==0) txt_move_left(text, sel);
|
2008-06-10 15:25:05 +00:00
|
|
|
|
|
|
|
undoing= oldu;
|
|
|
|
if(!undoing) txt_undo_add_toop(text, sel?UNDO_STO:UNDO_CTO, txt_get_span(text->lines.first, oldl), oldc, txt_get_span(text->lines.first, *linep), (unsigned short)*charp);
|
2008-06-04 23:20:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void txt_jump_right(Text *text, short sel)
|
|
|
|
{
|
2008-06-10 15:25:05 +00:00
|
|
|
TextLine **linep, *oldl;
|
2008-08-08 23:14:32 +00:00
|
|
|
int *charp, oldc, count, i;
|
2008-06-10 15:25:05 +00:00
|
|
|
unsigned char oldu;
|
|
|
|
|
2008-06-04 23:20:54 +00:00
|
|
|
if (!text) return;
|
2008-06-10 15:25:05 +00:00
|
|
|
if(sel) txt_curs_sel(text, &linep, &charp);
|
|
|
|
else { txt_pop_last(text); txt_curs_cur(text, &linep, &charp); }
|
|
|
|
if (!*linep) return;
|
|
|
|
|
|
|
|
oldl= *linep;
|
|
|
|
oldc= *charp;
|
|
|
|
oldu= undoing;
|
|
|
|
undoing= 1; /* Don't push individual moves to undo stack */
|
|
|
|
|
2008-08-08 23:14:32 +00:00
|
|
|
count= 0;
|
|
|
|
for (i=0; i<3; i++) {
|
|
|
|
if (count < 2) {
|
|
|
|
while (*charp<(*linep)->len && txt_char_type((*linep)->line[*charp])==i) {
|
|
|
|
txt_move_right(text, sel);
|
|
|
|
count++;
|
|
|
|
}
|
|
|
|
}
|
2008-06-10 15:25:05 +00:00
|
|
|
}
|
2008-08-08 23:14:32 +00:00
|
|
|
if (count==0) txt_move_right(text, sel);
|
2008-06-10 15:25:05 +00:00
|
|
|
|
|
|
|
undoing= oldu;
|
|
|
|
if(!undoing) txt_undo_add_toop(text, sel?UNDO_STO:UNDO_CTO, txt_get_span(text->lines.first, oldl), oldc, txt_get_span(text->lines.first, *linep), (unsigned short)*charp);
|
2008-06-04 23:20:54 +00:00
|
|
|
}
|
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
void txt_move_bol (Text *text, short sel)
|
|
|
|
{
|
|
|
|
TextLine **linep;
|
|
|
|
int *charp, old;
|
|
|
|
|
|
|
|
if (!text) return;
|
|
|
|
if(sel) txt_curs_sel(text, &linep, &charp);
|
|
|
|
else txt_curs_cur(text, &linep, &charp);
|
|
|
|
if (!*linep) return;
|
|
|
|
old= *charp;
|
|
|
|
|
|
|
|
*charp= 0;
|
|
|
|
|
|
|
|
if(!sel) txt_pop_sel(text);
|
|
|
|
if(!undoing) txt_undo_add_toop(text, sel?UNDO_STO:UNDO_CTO, txt_get_span(text->lines.first, *linep), old, txt_get_span(text->lines.first, *linep), (unsigned short)*charp);
|
|
|
|
}
|
|
|
|
|
|
|
|
void txt_move_eol (Text *text, short sel)
|
|
|
|
{
|
|
|
|
TextLine **linep;
|
|
|
|
int *charp, old;
|
|
|
|
|
|
|
|
if (!text) return;
|
|
|
|
if(sel) txt_curs_sel(text, &linep, &charp);
|
|
|
|
else txt_curs_cur(text, &linep, &charp);
|
|
|
|
if (!*linep) return;
|
|
|
|
old= *charp;
|
|
|
|
|
|
|
|
*charp= (*linep)->len;
|
|
|
|
|
|
|
|
if(!sel) txt_pop_sel(text);
|
|
|
|
if(!undoing) txt_undo_add_toop(text, sel?UNDO_STO:UNDO_CTO, txt_get_span(text->lines.first, *linep), old, txt_get_span(text->lines.first, *linep), (unsigned short)*charp);
|
|
|
|
}
|
|
|
|
|
|
|
|
void txt_move_bof (Text *text, short sel)
|
|
|
|
{
|
|
|
|
TextLine **linep;
|
|
|
|
int *charp, old;
|
|
|
|
|
|
|
|
if (!text) return;
|
|
|
|
if(sel) txt_curs_sel(text, &linep, &charp);
|
|
|
|
else txt_curs_cur(text, &linep, &charp);
|
|
|
|
if (!*linep) return;
|
|
|
|
old= *charp;
|
|
|
|
|
|
|
|
*linep= text->lines.first;
|
|
|
|
*charp= 0;
|
|
|
|
|
|
|
|
if(!sel) txt_pop_sel(text);
|
|
|
|
if(!undoing) txt_undo_add_toop(text, sel?UNDO_STO:UNDO_CTO, txt_get_span(text->lines.first, *linep), old, txt_get_span(text->lines.first, *linep), (unsigned short)*charp);
|
|
|
|
}
|
|
|
|
|
|
|
|
void txt_move_eof (Text *text, short sel)
|
|
|
|
{
|
|
|
|
TextLine **linep;
|
|
|
|
int *charp, old;
|
|
|
|
|
|
|
|
if (!text) return;
|
|
|
|
if(sel) txt_curs_sel(text, &linep, &charp);
|
|
|
|
else txt_curs_cur(text, &linep, &charp);
|
|
|
|
if (!*linep) return;
|
|
|
|
old= *charp;
|
|
|
|
|
|
|
|
*linep= text->lines.last;
|
|
|
|
*charp= (*linep)->len;
|
|
|
|
|
|
|
|
if(!sel) txt_pop_sel(text);
|
|
|
|
if(!undoing) txt_undo_add_toop(text, sel?UNDO_STO:UNDO_CTO, txt_get_span(text->lines.first, *linep), old, txt_get_span(text->lines.first, *linep), (unsigned short)*charp);
|
|
|
|
}
|
|
|
|
|
|
|
|
void txt_move_toline (Text *text, unsigned int line, short sel)
|
2008-06-17 19:26:26 +00:00
|
|
|
{
|
|
|
|
txt_move_to(text, line, 0, sel);
|
|
|
|
}
|
|
|
|
|
|
|
|
void txt_move_to (Text *text, unsigned int line, unsigned int ch, short sel)
|
2002-10-12 11:37:38 +00:00
|
|
|
{
|
|
|
|
TextLine **linep, *oldl;
|
|
|
|
int *charp, oldc;
|
|
|
|
unsigned int i;
|
|
|
|
|
|
|
|
if (!text) return;
|
|
|
|
if(sel) txt_curs_sel(text, &linep, &charp);
|
|
|
|
else txt_curs_cur(text, &linep, &charp);
|
|
|
|
if (!*linep) return;
|
|
|
|
oldc= *charp;
|
|
|
|
oldl= *linep;
|
|
|
|
|
|
|
|
*linep= text->lines.first;
|
|
|
|
for (i=0; i<line; i++) {
|
|
|
|
if ((*linep)->next) *linep= (*linep)->next;
|
|
|
|
else break;
|
|
|
|
}
|
2008-06-17 19:26:26 +00:00
|
|
|
if (ch>(*linep)->len)
|
|
|
|
ch= (*linep)->len;
|
|
|
|
*charp= ch;
|
2002-10-12 11:37:38 +00:00
|
|
|
|
|
|
|
if(!sel) txt_pop_sel(text);
|
2008-06-17 19:26:26 +00:00
|
|
|
if(!undoing) txt_undo_add_toop(text, sel?UNDO_STO:UNDO_CTO, txt_get_span(text->lines.first, oldl), oldc, txt_get_span(text->lines.first, *linep), (unsigned short)*charp);
|
2002-10-12 11:37:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/****************************/
|
|
|
|
/* Text selection functions */
|
|
|
|
/****************************/
|
|
|
|
|
|
|
|
static void txt_curs_swap (Text *text)
|
|
|
|
{
|
|
|
|
TextLine *tmpl;
|
|
|
|
int tmpc;
|
|
|
|
|
|
|
|
tmpl= text->curl;
|
|
|
|
text->curl= text->sell;
|
|
|
|
text->sell= tmpl;
|
|
|
|
|
|
|
|
tmpc= text->curc;
|
|
|
|
text->curc= text->selc;
|
|
|
|
text->selc= tmpc;
|
|
|
|
|
|
|
|
if(!undoing) txt_undo_add_op(text, UNDO_SWAP);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void txt_pop_first (Text *text)
|
|
|
|
{
|
|
|
|
|
|
|
|
if (txt_get_span(text->curl, text->sell)<0 ||
|
|
|
|
(text->curl==text->sell && text->curc>text->selc)) {
|
|
|
|
txt_curs_swap(text);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!undoing) txt_undo_add_toop(text, UNDO_STO,
|
|
|
|
txt_get_span(text->lines.first, text->sell),
|
|
|
|
text->selc,
|
|
|
|
txt_get_span(text->lines.first, text->curl),
|
|
|
|
text->curc);
|
|
|
|
|
|
|
|
txt_pop_sel(text);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void txt_pop_last (Text *text)
|
|
|
|
{
|
|
|
|
if (txt_get_span(text->curl, text->sell)>0 ||
|
|
|
|
(text->curl==text->sell && text->curc<text->selc)) {
|
|
|
|
txt_curs_swap(text);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!undoing) txt_undo_add_toop(text, UNDO_STO,
|
|
|
|
txt_get_span(text->lines.first, text->sell),
|
|
|
|
text->selc,
|
|
|
|
txt_get_span(text->lines.first, text->curl),
|
|
|
|
text->curc);
|
|
|
|
|
|
|
|
txt_pop_sel(text);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* never used: CVS 1.19 */
|
|
|
|
/* static void txt_pop_selr (Text *text) */
|
|
|
|
|
|
|
|
void txt_pop_sel (Text *text)
|
|
|
|
{
|
|
|
|
text->sell= text->curl;
|
|
|
|
text->selc= text->curc;
|
|
|
|
}
|
|
|
|
|
|
|
|
void txt_order_cursors(Text *text)
|
|
|
|
{
|
|
|
|
if (!text) return;
|
|
|
|
if (!text->curl) return;
|
|
|
|
if (!text->sell) return;
|
|
|
|
|
|
|
|
/* Flip so text->curl is before text->sell */
|
|
|
|
if (txt_get_span(text->curl, text->sell)<0 ||
|
|
|
|
(text->curl==text->sell && text->curc>text->selc))
|
|
|
|
txt_curs_swap(text);
|
|
|
|
}
|
|
|
|
|
|
|
|
int txt_has_sel(Text *text)
|
|
|
|
{
|
|
|
|
return ((text->curl!=text->sell) || (text->curc!=text->selc));
|
|
|
|
}
|
|
|
|
|
|
|
|
static void txt_delete_sel (Text *text)
|
|
|
|
{
|
|
|
|
TextLine *tmpl;
|
2008-08-04 23:01:47 +00:00
|
|
|
TextMarker *mrk;
|
2008-07-28 11:05:35 +00:00
|
|
|
char *buf;
|
2008-08-04 23:01:47 +00:00
|
|
|
int move, lineno;
|
2002-10-12 11:37:38 +00:00
|
|
|
|
|
|
|
if (!text) return;
|
|
|
|
if (!text->curl) return;
|
|
|
|
if (!text->sell) return;
|
|
|
|
|
|
|
|
if (!txt_has_sel(text)) return;
|
|
|
|
|
|
|
|
txt_order_cursors(text);
|
|
|
|
|
|
|
|
if(!undoing) {
|
|
|
|
buf= txt_sel_to_buf(text);
|
|
|
|
txt_undo_add_block(text, UNDO_DBLOCK, buf);
|
|
|
|
MEM_freeN(buf);
|
|
|
|
}
|
|
|
|
|
|
|
|
buf= MEM_mallocN(text->curc+(text->sell->len - text->selc)+1, "textline_string");
|
|
|
|
|
2008-08-04 23:01:47 +00:00
|
|
|
if (text->curl != text->sell) {
|
2008-08-24 13:30:35 +00:00
|
|
|
txt_clear_marker_region(text, text->curl, text->curc, text->curl->len, 0, 0);
|
2008-08-04 23:01:47 +00:00
|
|
|
move= txt_get_span(text->curl, text->sell);
|
2008-08-16 20:31:38 +00:00
|
|
|
} else {
|
2008-08-24 13:30:35 +00:00
|
|
|
mrk= txt_find_marker_region(text, text->curl, text->curc, text->selc, 0, 0);
|
2008-08-17 09:46:47 +00:00
|
|
|
if (mrk && (mrk->start > text->curc || mrk->end < text->selc))
|
2008-08-24 13:30:35 +00:00
|
|
|
txt_clear_marker_region(text, text->curl, text->curc, text->selc, 0, 0);
|
2008-08-04 23:01:47 +00:00
|
|
|
move= 0;
|
2008-08-16 20:31:38 +00:00
|
|
|
}
|
2008-08-04 23:01:47 +00:00
|
|
|
|
2008-08-24 13:30:35 +00:00
|
|
|
mrk= txt_find_marker_region(text, text->sell, text->selc-1, text->sell->len, 0, 0);
|
2008-08-04 23:01:47 +00:00
|
|
|
if (mrk) {
|
|
|
|
lineno= mrk->lineno;
|
|
|
|
do {
|
|
|
|
mrk->lineno -= move;
|
|
|
|
if (mrk->start > text->curc) mrk->start -= text->selc - text->curc;
|
|
|
|
mrk->end -= text->selc - text->curc;
|
|
|
|
mrk= mrk->next;
|
|
|
|
} while (mrk && mrk->lineno==lineno);
|
|
|
|
}
|
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
strncpy(buf, text->curl->line, text->curc);
|
|
|
|
strcpy(buf+text->curc, text->sell->line + text->selc);
|
|
|
|
buf[text->curc+(text->sell->len - text->selc)]=0;
|
2005-05-13 16:11:28 +00:00
|
|
|
|
2008-07-28 11:05:35 +00:00
|
|
|
make_new_line(text->curl, buf);
|
2002-10-12 11:37:38 +00:00
|
|
|
|
|
|
|
tmpl= text->sell;
|
|
|
|
while (tmpl != text->curl) {
|
|
|
|
tmpl= tmpl->prev;
|
|
|
|
if (!tmpl) break;
|
|
|
|
|
|
|
|
txt_delete_line(text, tmpl->next);
|
|
|
|
}
|
|
|
|
|
|
|
|
text->sell= text->curl;
|
|
|
|
text->selc= text->curc;
|
|
|
|
}
|
|
|
|
|
|
|
|
void txt_sel_all (Text *text)
|
|
|
|
{
|
|
|
|
if (!text) return;
|
|
|
|
|
|
|
|
text->curl= text->lines.first;
|
|
|
|
text->curc= 0;
|
|
|
|
|
|
|
|
text->sell= text->lines.last;
|
|
|
|
text->selc= text->sell->len;
|
|
|
|
}
|
|
|
|
|
|
|
|
void txt_sel_line (Text *text)
|
|
|
|
{
|
|
|
|
if (!text) return;
|
|
|
|
if (!text->curl) return;
|
|
|
|
|
|
|
|
text->curc= 0;
|
|
|
|
text->sell= text->curl;
|
|
|
|
text->selc= text->sell->len;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***************************/
|
|
|
|
/* Cut and paste functions */
|
|
|
|
/***************************/
|
|
|
|
|
|
|
|
char *txt_to_buf (Text *text)
|
|
|
|
{
|
|
|
|
int length;
|
|
|
|
TextLine *tmp, *linef, *linel;
|
|
|
|
int charf, charl;
|
|
|
|
char *buf;
|
|
|
|
|
|
|
|
if (!text) return NULL;
|
|
|
|
if (!text->curl) return NULL;
|
|
|
|
if (!text->sell) return NULL;
|
2008-07-18 23:35:34 +00:00
|
|
|
if (!text->lines.first) return NULL;
|
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
linef= text->lines.first;
|
|
|
|
charf= 0;
|
|
|
|
|
|
|
|
linel= text->lines.last;
|
|
|
|
charl= linel->len;
|
|
|
|
|
|
|
|
if (linef == text->lines.last) {
|
|
|
|
length= charl-charf;
|
|
|
|
|
|
|
|
buf= MEM_mallocN(length+2, "text buffer");
|
|
|
|
|
|
|
|
BLI_strncpy(buf, linef->line + charf, length+1);
|
|
|
|
buf[length]=0;
|
|
|
|
} else {
|
|
|
|
length= linef->len - charf;
|
|
|
|
length+= charl;
|
|
|
|
length+= 2; /* For the 2 '\n' */
|
|
|
|
|
|
|
|
tmp= linef->next;
|
|
|
|
while (tmp && tmp!= linel) {
|
|
|
|
length+= tmp->len+1;
|
|
|
|
tmp= tmp->next;
|
|
|
|
}
|
|
|
|
|
|
|
|
buf= MEM_mallocN(length+1, "cut buffer");
|
|
|
|
|
|
|
|
strncpy(buf, linef->line + charf, linef->len-charf);
|
|
|
|
length= linef->len - charf;
|
|
|
|
|
|
|
|
buf[length++]='\n';
|
|
|
|
|
|
|
|
tmp= linef->next;
|
|
|
|
while (tmp && tmp!=linel) {
|
|
|
|
strncpy(buf+length, tmp->line, tmp->len);
|
|
|
|
length+= tmp->len;
|
|
|
|
|
|
|
|
buf[length++]='\n';
|
|
|
|
|
|
|
|
tmp= tmp->next;
|
|
|
|
}
|
|
|
|
strncpy(buf+length, linel->line, charl);
|
|
|
|
length+= charl;
|
|
|
|
|
|
|
|
/* python compiler wants an empty end line */
|
|
|
|
buf[length++]='\n';
|
|
|
|
buf[length]=0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return buf;
|
|
|
|
}
|
|
|
|
|
2008-07-23 19:35:13 +00:00
|
|
|
int txt_find_string(Text *text, char *findstr, int wrap)
|
2002-10-12 11:37:38 +00:00
|
|
|
{
|
|
|
|
TextLine *tl, *startl;
|
|
|
|
char *s= NULL;
|
2008-07-23 19:35:13 +00:00
|
|
|
int oldcl, oldsl, oldcc, oldsc;
|
2002-10-12 11:37:38 +00:00
|
|
|
|
|
|
|
if (!text || !text->curl || !text->sell) return 0;
|
|
|
|
|
|
|
|
txt_order_cursors(text);
|
|
|
|
|
2008-07-23 19:35:13 +00:00
|
|
|
oldcl= txt_get_span(text->lines.first, text->curl);
|
|
|
|
oldsl= txt_get_span(text->lines.first, text->sell);
|
2002-10-12 11:37:38 +00:00
|
|
|
tl= startl= text->sell;
|
2008-07-23 19:35:13 +00:00
|
|
|
oldcc= text->curc;
|
|
|
|
oldsc= text->selc;
|
2002-10-12 11:37:38 +00:00
|
|
|
|
|
|
|
s= strstr(&tl->line[text->selc], findstr);
|
|
|
|
while (!s) {
|
|
|
|
tl= tl->next;
|
2008-07-23 19:35:13 +00:00
|
|
|
if (!tl) {
|
|
|
|
if (wrap)
|
|
|
|
tl= text->lines.first;
|
|
|
|
else
|
|
|
|
break;
|
|
|
|
}
|
2002-10-12 11:37:38 +00:00
|
|
|
|
|
|
|
s= strstr(tl->line, findstr);
|
|
|
|
if (tl==startl)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (s) {
|
2008-07-23 19:35:13 +00:00
|
|
|
int newl= txt_get_span(text->lines.first, tl);
|
|
|
|
int newc= (int)(s-tl->line);
|
|
|
|
txt_move_to(text, newl, newc, 0);
|
|
|
|
txt_move_to(text, newl, newc + strlen(findstr), 1);
|
2002-10-12 11:37:38 +00:00
|
|
|
return 1;
|
|
|
|
} else
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
char *txt_sel_to_buf (Text *text)
|
|
|
|
{
|
|
|
|
char *buf;
|
|
|
|
int length=0;
|
|
|
|
TextLine *tmp, *linef, *linel;
|
|
|
|
int charf, charl;
|
|
|
|
|
|
|
|
if (!text) return NULL;
|
|
|
|
if (!text->curl) return NULL;
|
|
|
|
if (!text->sell) return NULL;
|
|
|
|
|
|
|
|
if (text->curl==text->sell) {
|
|
|
|
linef= linel= text->curl;
|
|
|
|
|
|
|
|
if (text->curc < text->selc) {
|
|
|
|
charf= text->curc;
|
|
|
|
charl= text->selc;
|
|
|
|
} else{
|
|
|
|
charf= text->selc;
|
|
|
|
charl= text->curc;
|
|
|
|
}
|
|
|
|
} else if (txt_get_span(text->curl, text->sell)<0) {
|
|
|
|
linef= text->sell;
|
|
|
|
linel= text->curl;
|
|
|
|
|
|
|
|
charf= text->selc;
|
|
|
|
charl= text->curc;
|
|
|
|
} else {
|
|
|
|
linef= text->curl;
|
|
|
|
linel= text->sell;
|
|
|
|
|
|
|
|
charf= text->curc;
|
|
|
|
charl= text->selc;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (linef == linel) {
|
|
|
|
length= charl-charf;
|
|
|
|
|
|
|
|
buf= MEM_mallocN(length+1, "sel buffer");
|
|
|
|
|
|
|
|
BLI_strncpy(buf, linef->line + charf, length+1);
|
|
|
|
} else {
|
|
|
|
length+= linef->len - charf;
|
|
|
|
length+= charl;
|
|
|
|
length++; /* For the '\n' */
|
|
|
|
|
|
|
|
tmp= linef->next;
|
|
|
|
while (tmp && tmp!= linel) {
|
|
|
|
length+= tmp->len+1;
|
|
|
|
tmp= tmp->next;
|
|
|
|
}
|
|
|
|
|
|
|
|
buf= MEM_mallocN(length+1, "sel buffer");
|
|
|
|
|
|
|
|
strncpy(buf, linef->line+ charf, linef->len-charf);
|
|
|
|
length= linef->len-charf;
|
|
|
|
|
|
|
|
buf[length++]='\n';
|
|
|
|
|
|
|
|
tmp= linef->next;
|
|
|
|
while (tmp && tmp!=linel) {
|
|
|
|
strncpy(buf+length, tmp->line, tmp->len);
|
|
|
|
length+= tmp->len;
|
|
|
|
|
|
|
|
buf[length++]='\n';
|
|
|
|
|
|
|
|
tmp= tmp->next;
|
|
|
|
}
|
|
|
|
strncpy(buf+length, linel->line, charl);
|
|
|
|
length+= charl;
|
|
|
|
|
|
|
|
buf[length]=0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return buf;
|
|
|
|
}
|
|
|
|
|
2009-09-16 06:02:56 +00:00
|
|
|
void txt_insert_buf(Text *text, const char *in_buffer)
|
2002-10-12 11:37:38 +00:00
|
|
|
{
|
|
|
|
int i=0, l=0, j, u, len;
|
|
|
|
TextLine *add;
|
|
|
|
|
|
|
|
if (!text) return;
|
|
|
|
if (!in_buffer) return;
|
|
|
|
|
|
|
|
txt_delete_sel(text);
|
|
|
|
|
|
|
|
if(!undoing) txt_undo_add_block (text, UNDO_IBLOCK, in_buffer);
|
|
|
|
|
|
|
|
u= undoing;
|
|
|
|
undoing= 1;
|
|
|
|
|
|
|
|
/* Read the first line (or as close as possible */
|
|
|
|
while (in_buffer[i] && in_buffer[i]!='\n') {
|
|
|
|
txt_add_char(text, in_buffer[i]);
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (in_buffer[i]=='\n') txt_split_curline(text);
|
|
|
|
else { undoing = u; return; }
|
|
|
|
i++;
|
|
|
|
|
|
|
|
/* Read as many full lines as we can */
|
|
|
|
len= strlen(in_buffer);
|
|
|
|
|
|
|
|
while (i<len) {
|
|
|
|
l=0;
|
|
|
|
|
|
|
|
while (in_buffer[i] && in_buffer[i]!='\n') {
|
|
|
|
i++; l++;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(in_buffer[i]=='\n') {
|
|
|
|
add= txt_new_linen(in_buffer +(i-l), l);
|
|
|
|
BLI_insertlinkbefore(&text->lines, text->curl, add);
|
|
|
|
i++;
|
|
|
|
} else {
|
|
|
|
for (j= i-l; j<i && j<(int)strlen(in_buffer); j++) {
|
|
|
|
txt_add_char(text, in_buffer[j]);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
undoing= u;
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************/
|
|
|
|
/* Undo functions */
|
|
|
|
/******************/
|
|
|
|
|
2009-04-27 10:00:22 +00:00
|
|
|
static int max_undo_test(Text *text, int x)
|
|
|
|
{
|
|
|
|
while (text->undo_pos+x >= text->undo_len) {
|
|
|
|
if(text->undo_len*2 > TXT_MAX_UNDO) {
|
|
|
|
/* XXX error("Undo limit reached, buffer cleared\n"); */
|
|
|
|
MEM_freeN(text->undo_buf);
|
2010-01-16 14:05:39 +00:00
|
|
|
init_undo_text(text);
|
2009-04-27 10:00:22 +00:00
|
|
|
return 0;
|
|
|
|
} else {
|
|
|
|
void *tmp= text->undo_buf;
|
|
|
|
text->undo_buf= MEM_callocN(text->undo_len*2, "undo buf");
|
|
|
|
memcpy(text->undo_buf, tmp, text->undo_len);
|
|
|
|
text->undo_len*=2;
|
|
|
|
MEM_freeN(tmp);
|
|
|
|
}
|
2002-10-12 11:37:38 +00:00
|
|
|
}
|
|
|
|
|
2009-04-27 10:00:22 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2006-11-26 16:03:36 +00:00
|
|
|
static void dump_buffer(Text *text)
|
|
|
|
{
|
2002-10-12 11:37:38 +00:00
|
|
|
int i= 0;
|
|
|
|
|
|
|
|
while (i++<text->undo_pos) printf("%d: %d %c\n", i, text->undo_buf[i], text->undo_buf[i]);
|
|
|
|
}
|
|
|
|
|
|
|
|
void txt_print_undo(Text *text)
|
|
|
|
{
|
|
|
|
int i= 0;
|
|
|
|
int op;
|
|
|
|
char *ops;
|
|
|
|
int linep, charp;
|
|
|
|
|
|
|
|
dump_buffer(text);
|
|
|
|
|
|
|
|
printf ("---< Undo Buffer >---\n");
|
|
|
|
|
|
|
|
printf ("UndoPosition is %d\n", text->undo_pos);
|
|
|
|
|
|
|
|
while (i<=text->undo_pos) {
|
|
|
|
op= text->undo_buf[i];
|
|
|
|
|
|
|
|
if (op==UNDO_CLEFT) {
|
|
|
|
ops= "Cursor left";
|
|
|
|
} else if (op==UNDO_CRIGHT) {
|
|
|
|
ops= "Cursor right";
|
|
|
|
} else if (op==UNDO_CUP) {
|
|
|
|
ops= "Cursor up";
|
|
|
|
} else if (op==UNDO_CDOWN) {
|
|
|
|
ops= "Cursor down";
|
|
|
|
} else if (op==UNDO_SLEFT) {
|
|
|
|
ops= "Selection left";
|
|
|
|
} else if (op==UNDO_SRIGHT) {
|
|
|
|
ops= "Selection right";
|
|
|
|
} else if (op==UNDO_SUP) {
|
|
|
|
ops= "Selection up";
|
|
|
|
} else if (op==UNDO_SDOWN) {
|
|
|
|
ops= "Selection down";
|
|
|
|
} else if (op==UNDO_STO) {
|
|
|
|
ops= "Selection ";
|
|
|
|
} else if (op==UNDO_CTO) {
|
|
|
|
ops= "Cursor ";
|
|
|
|
} else if (op==UNDO_INSERT) {
|
|
|
|
ops= "Insert";
|
|
|
|
} else if (op==UNDO_BS) {
|
|
|
|
ops= "Backspace";
|
|
|
|
} else if (op==UNDO_DEL) {
|
|
|
|
ops= "Delete";
|
|
|
|
} else if (op==UNDO_SWAP) {
|
|
|
|
ops= "Cursor swap";
|
|
|
|
} else if (op==UNDO_DBLOCK) {
|
|
|
|
ops= "Delete text block";
|
|
|
|
} else if (op==UNDO_IBLOCK) {
|
|
|
|
ops= "Insert text block";
|
2005-12-12 18:35:15 +00:00
|
|
|
} else if (op==UNDO_INDENT) {
|
|
|
|
ops= "Indent ";
|
|
|
|
} else if (op==UNDO_UNINDENT) {
|
|
|
|
ops= "Unindent ";
|
|
|
|
} else if (op==UNDO_COMMENT) {
|
|
|
|
ops= "Comment ";
|
|
|
|
} else if (op==UNDO_UNCOMMENT) {
|
|
|
|
ops= "Uncomment ";
|
2002-10-12 11:37:38 +00:00
|
|
|
} else {
|
|
|
|
ops= "Unknown";
|
|
|
|
}
|
|
|
|
|
|
|
|
printf ("Op (%o) at %d = %s", op, i, ops);
|
|
|
|
if (op==UNDO_INSERT || op==UNDO_BS || op==UNDO_DEL) {
|
|
|
|
i++;
|
|
|
|
printf (" - Char is %c", text->undo_buf[i]);
|
|
|
|
i++;
|
|
|
|
} else if (op==UNDO_STO || op==UNDO_CTO) {
|
|
|
|
i++;
|
|
|
|
|
|
|
|
charp= text->undo_buf[i]; i++;
|
|
|
|
charp= charp+(text->undo_buf[i]<<8); i++;
|
|
|
|
|
|
|
|
linep= text->undo_buf[i]; i++;
|
|
|
|
linep= linep+(text->undo_buf[i]<<8); i++;
|
|
|
|
linep= linep+(text->undo_buf[i]<<16); i++;
|
|
|
|
linep= linep+(text->undo_buf[i]<<24); i++;
|
|
|
|
|
|
|
|
printf ("to <%d, %d> ", linep, charp);
|
|
|
|
|
|
|
|
charp= text->undo_buf[i]; i++;
|
|
|
|
charp= charp+(text->undo_buf[i]<<8); i++;
|
|
|
|
|
|
|
|
linep= text->undo_buf[i]; i++;
|
|
|
|
linep= linep+(text->undo_buf[i]<<8); i++;
|
|
|
|
linep= linep+(text->undo_buf[i]<<16); i++;
|
|
|
|
linep= linep+(text->undo_buf[i]<<24); i++;
|
|
|
|
|
|
|
|
printf ("from <%d, %d>", linep, charp);
|
|
|
|
} else if (op==UNDO_DBLOCK || op==UNDO_IBLOCK) {
|
|
|
|
i++;
|
|
|
|
|
|
|
|
linep= text->undo_buf[i]; i++;
|
|
|
|
linep= linep+(text->undo_buf[i]<<8); i++;
|
|
|
|
linep= linep+(text->undo_buf[i]<<16); i++;
|
|
|
|
linep= linep+(text->undo_buf[i]<<24); i++;
|
|
|
|
|
|
|
|
printf (" (length %d) <", linep);
|
|
|
|
|
|
|
|
while (linep>0) {
|
|
|
|
putchar(text->undo_buf[i]);
|
|
|
|
linep--; i++;
|
|
|
|
}
|
|
|
|
|
|
|
|
linep= text->undo_buf[i]; i++;
|
|
|
|
linep= linep+(text->undo_buf[i]<<8); i++;
|
|
|
|
linep= linep+(text->undo_buf[i]<<16); i++;
|
|
|
|
linep= linep+(text->undo_buf[i]<<24); i++;
|
|
|
|
printf ("> (%d)", linep);
|
2005-12-12 18:35:15 +00:00
|
|
|
} else if (op==UNDO_INDENT || op==UNDO_UNINDENT) {
|
|
|
|
i++;
|
|
|
|
|
|
|
|
charp= text->undo_buf[i]; i++;
|
|
|
|
charp= charp+(text->undo_buf[i]<<8); i++;
|
|
|
|
|
|
|
|
linep= text->undo_buf[i]; i++;
|
|
|
|
linep= linep+(text->undo_buf[i]<<8); i++;
|
|
|
|
linep= linep+(text->undo_buf[i]<<16); i++;
|
|
|
|
linep= linep+(text->undo_buf[i]<<24); i++;
|
|
|
|
|
|
|
|
printf ("to <%d, %d> ", linep, charp);
|
|
|
|
|
|
|
|
charp= text->undo_buf[i]; i++;
|
|
|
|
charp= charp+(text->undo_buf[i]<<8); i++;
|
|
|
|
|
|
|
|
linep= text->undo_buf[i]; i++;
|
|
|
|
linep= linep+(text->undo_buf[i]<<8); i++;
|
|
|
|
linep= linep+(text->undo_buf[i]<<16); i++;
|
|
|
|
linep= linep+(text->undo_buf[i]<<24); i++;
|
|
|
|
|
|
|
|
printf ("from <%d, %d>", linep, charp);
|
2002-10-12 11:37:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
printf (" %d\n", i);
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void txt_undo_add_op(Text *text, int op)
|
|
|
|
{
|
2009-04-27 10:00:22 +00:00
|
|
|
if(!max_undo_test(text, 2))
|
|
|
|
return;
|
2002-10-12 11:37:38 +00:00
|
|
|
|
|
|
|
text->undo_pos++;
|
|
|
|
text->undo_buf[text->undo_pos]= op;
|
|
|
|
text->undo_buf[text->undo_pos+1]= 0;
|
|
|
|
}
|
|
|
|
|
2009-09-16 06:02:56 +00:00
|
|
|
static void txt_undo_add_block(Text *text, int op, const char *buf)
|
2002-10-12 11:37:38 +00:00
|
|
|
{
|
2006-04-03 20:31:10 +00:00
|
|
|
int length;
|
2002-10-12 11:37:38 +00:00
|
|
|
|
|
|
|
length= strlen(buf);
|
|
|
|
|
2009-04-27 10:00:22 +00:00
|
|
|
if(!max_undo_test(text, length+11))
|
|
|
|
return;
|
2002-10-12 11:37:38 +00:00
|
|
|
|
|
|
|
text->undo_pos++;
|
|
|
|
text->undo_buf[text->undo_pos]= op;
|
|
|
|
|
|
|
|
text->undo_pos++;
|
|
|
|
text->undo_buf[text->undo_pos]= (length)&0xff;
|
|
|
|
text->undo_pos++;
|
|
|
|
text->undo_buf[text->undo_pos]= (length>>8)&0xff;
|
|
|
|
text->undo_pos++;
|
|
|
|
text->undo_buf[text->undo_pos]= (length>>16)&0xff;
|
|
|
|
text->undo_pos++;
|
|
|
|
text->undo_buf[text->undo_pos]= (length>>24)&0xff;
|
|
|
|
|
|
|
|
text->undo_pos++;
|
|
|
|
strncpy(text->undo_buf+text->undo_pos, buf, length);
|
|
|
|
text->undo_pos+=length;
|
|
|
|
|
|
|
|
text->undo_buf[text->undo_pos]= (length)&0xff;
|
|
|
|
text->undo_pos++;
|
|
|
|
text->undo_buf[text->undo_pos]= (length>>8)&0xff;
|
|
|
|
text->undo_pos++;
|
|
|
|
text->undo_buf[text->undo_pos]= (length>>16)&0xff;
|
|
|
|
text->undo_pos++;
|
|
|
|
text->undo_buf[text->undo_pos]= (length>>24)&0xff;
|
|
|
|
|
|
|
|
text->undo_pos++;
|
|
|
|
text->undo_buf[text->undo_pos]= op;
|
|
|
|
|
|
|
|
text->undo_buf[text->undo_pos+1]= 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void txt_undo_add_toop(Text *text, int op, unsigned int froml, unsigned short fromc, unsigned int tol, unsigned short toc)
|
|
|
|
{
|
2009-04-27 10:00:22 +00:00
|
|
|
if(!max_undo_test(text, 15))
|
|
|
|
return;
|
2002-10-12 11:37:38 +00:00
|
|
|
|
|
|
|
if (froml==tol && fromc==toc) return;
|
|
|
|
|
|
|
|
text->undo_pos++;
|
|
|
|
text->undo_buf[text->undo_pos]= op;
|
|
|
|
|
|
|
|
text->undo_pos++;
|
|
|
|
text->undo_buf[text->undo_pos]= (fromc)&0xff;
|
|
|
|
text->undo_pos++;
|
|
|
|
text->undo_buf[text->undo_pos]= (fromc>>8)&0xff;
|
|
|
|
|
|
|
|
text->undo_pos++;
|
|
|
|
text->undo_buf[text->undo_pos]= (froml)&0xff;
|
|
|
|
text->undo_pos++;
|
|
|
|
text->undo_buf[text->undo_pos]= (froml>>8)&0xff;
|
|
|
|
text->undo_pos++;
|
|
|
|
text->undo_buf[text->undo_pos]= (froml>>16)&0xff;
|
|
|
|
text->undo_pos++;
|
|
|
|
text->undo_buf[text->undo_pos]= (froml>>24)&0xff;
|
|
|
|
|
|
|
|
text->undo_pos++;
|
|
|
|
text->undo_buf[text->undo_pos]= (toc)&0xff;
|
|
|
|
text->undo_pos++;
|
|
|
|
text->undo_buf[text->undo_pos]= (toc>>8)&0xff;
|
|
|
|
|
|
|
|
text->undo_pos++;
|
|
|
|
text->undo_buf[text->undo_pos]= (tol)&0xff;
|
|
|
|
text->undo_pos++;
|
|
|
|
text->undo_buf[text->undo_pos]= (tol>>8)&0xff;
|
|
|
|
text->undo_pos++;
|
|
|
|
text->undo_buf[text->undo_pos]= (tol>>16)&0xff;
|
|
|
|
text->undo_pos++;
|
|
|
|
text->undo_buf[text->undo_pos]= (tol>>24)&0xff;
|
|
|
|
|
|
|
|
text->undo_pos++;
|
|
|
|
text->undo_buf[text->undo_pos]= op;
|
|
|
|
|
|
|
|
text->undo_buf[text->undo_pos+1]= 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void txt_undo_add_charop(Text *text, int op, char c)
|
|
|
|
{
|
2009-04-27 10:00:22 +00:00
|
|
|
if(!max_undo_test(text, 4))
|
|
|
|
return;
|
2002-10-12 11:37:38 +00:00
|
|
|
|
|
|
|
text->undo_pos++;
|
|
|
|
text->undo_buf[text->undo_pos]= op;
|
|
|
|
text->undo_pos++;
|
|
|
|
text->undo_buf[text->undo_pos]= c;
|
|
|
|
text->undo_pos++;
|
|
|
|
text->undo_buf[text->undo_pos]= op;
|
|
|
|
text->undo_buf[text->undo_pos+1]= 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void txt_do_undo(Text *text)
|
|
|
|
{
|
2006-04-03 20:31:10 +00:00
|
|
|
int op= text->undo_buf[text->undo_pos];
|
|
|
|
unsigned int linep, i;
|
2002-10-12 11:37:38 +00:00
|
|
|
unsigned short charp;
|
|
|
|
TextLine *holdl;
|
|
|
|
int holdc, holdln;
|
|
|
|
char *buf;
|
|
|
|
|
|
|
|
if (text->undo_pos<0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
text->undo_pos--;
|
|
|
|
|
|
|
|
undoing= 1;
|
|
|
|
|
|
|
|
switch(op) {
|
|
|
|
case UNDO_CLEFT:
|
|
|
|
txt_move_right(text, 0);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case UNDO_CRIGHT:
|
|
|
|
txt_move_left(text, 0);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case UNDO_CUP:
|
|
|
|
txt_move_down(text, 0);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case UNDO_CDOWN:
|
|
|
|
txt_move_up(text, 0);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case UNDO_SLEFT:
|
|
|
|
txt_move_right(text, 1);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case UNDO_SRIGHT:
|
|
|
|
txt_move_left(text, 1);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case UNDO_SUP:
|
|
|
|
txt_move_down(text, 1);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case UNDO_SDOWN:
|
|
|
|
txt_move_up(text, 1);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case UNDO_CTO:
|
|
|
|
case UNDO_STO:
|
|
|
|
text->undo_pos--;
|
|
|
|
text->undo_pos--;
|
|
|
|
text->undo_pos--;
|
|
|
|
text->undo_pos--;
|
|
|
|
|
|
|
|
text->undo_pos--;
|
|
|
|
text->undo_pos--;
|
|
|
|
|
|
|
|
linep= text->undo_buf[text->undo_pos]; text->undo_pos--;
|
|
|
|
linep= (linep<<8)+text->undo_buf[text->undo_pos]; text->undo_pos--;
|
|
|
|
linep= (linep<<8)+text->undo_buf[text->undo_pos]; text->undo_pos--;
|
|
|
|
linep= (linep<<8)+text->undo_buf[text->undo_pos]; text->undo_pos--;
|
|
|
|
|
|
|
|
charp= text->undo_buf[text->undo_pos]; text->undo_pos--;
|
|
|
|
charp= (charp<<8)+text->undo_buf[text->undo_pos]; text->undo_pos--;
|
|
|
|
|
|
|
|
if (op==UNDO_CTO) {
|
|
|
|
txt_move_toline(text, linep, 0);
|
|
|
|
text->curc= charp;
|
|
|
|
txt_pop_sel(text);
|
|
|
|
} else {
|
|
|
|
txt_move_toline(text, linep, 1);
|
|
|
|
text->selc= charp;
|
|
|
|
}
|
|
|
|
|
|
|
|
text->undo_pos--;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case UNDO_INSERT:
|
|
|
|
txt_backspace_char(text);
|
|
|
|
text->undo_pos--;
|
|
|
|
text->undo_pos--;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case UNDO_BS:
|
|
|
|
txt_add_char(text, text->undo_buf[text->undo_pos]);
|
|
|
|
text->undo_pos--;
|
|
|
|
text->undo_pos--;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case UNDO_DEL:
|
|
|
|
txt_add_char(text, text->undo_buf[text->undo_pos]);
|
|
|
|
txt_move_left(text, 0);
|
|
|
|
text->undo_pos--;
|
|
|
|
text->undo_pos--;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case UNDO_SWAP:
|
|
|
|
txt_curs_swap(text);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case UNDO_DBLOCK:
|
|
|
|
linep= text->undo_buf[text->undo_pos]; text->undo_pos--;
|
|
|
|
linep= (linep<<8)+text->undo_buf[text->undo_pos]; text->undo_pos--;
|
|
|
|
linep= (linep<<8)+text->undo_buf[text->undo_pos]; text->undo_pos--;
|
|
|
|
linep= (linep<<8)+text->undo_buf[text->undo_pos]; text->undo_pos--;
|
|
|
|
|
|
|
|
buf= MEM_mallocN(linep+1, "dblock buffer");
|
2006-04-03 20:31:10 +00:00
|
|
|
for (i=0; i < linep; i++){
|
2002-10-12 11:37:38 +00:00
|
|
|
buf[(linep-1)-i]= text->undo_buf[text->undo_pos];
|
|
|
|
text->undo_pos--;
|
|
|
|
}
|
|
|
|
buf[i]= 0;
|
|
|
|
|
|
|
|
txt_curs_first(text, &holdl, &holdc);
|
|
|
|
holdln= txt_get_span(text->lines.first, holdl);
|
|
|
|
|
|
|
|
txt_insert_buf(text, buf);
|
|
|
|
MEM_freeN(buf);
|
|
|
|
|
|
|
|
text->curl= text->lines.first;
|
|
|
|
while (holdln>0) {
|
|
|
|
if(text->curl->next)
|
|
|
|
text->curl= text->curl->next;
|
|
|
|
|
|
|
|
holdln--;
|
|
|
|
}
|
|
|
|
text->curc= holdc;
|
|
|
|
|
|
|
|
linep= text->undo_buf[text->undo_pos]; text->undo_pos--;
|
|
|
|
linep= (linep<<8)+text->undo_buf[text->undo_pos]; text->undo_pos--;
|
|
|
|
linep= (linep<<8)+text->undo_buf[text->undo_pos]; text->undo_pos--;
|
|
|
|
linep= (linep<<8)+text->undo_buf[text->undo_pos]; text->undo_pos--;
|
|
|
|
|
|
|
|
text->undo_pos--;
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
case UNDO_IBLOCK:
|
|
|
|
linep= text->undo_buf[text->undo_pos]; text->undo_pos--;
|
|
|
|
linep= (linep<<8)+text->undo_buf[text->undo_pos]; text->undo_pos--;
|
|
|
|
linep= (linep<<8)+text->undo_buf[text->undo_pos]; text->undo_pos--;
|
|
|
|
linep= (linep<<8)+text->undo_buf[text->undo_pos]; text->undo_pos--;
|
|
|
|
|
|
|
|
txt_delete_sel(text);
|
|
|
|
while (linep>0) {
|
|
|
|
txt_backspace_char(text);
|
|
|
|
text->undo_pos--;
|
|
|
|
linep--;
|
|
|
|
}
|
|
|
|
|
|
|
|
text->undo_pos--;
|
|
|
|
text->undo_pos--;
|
|
|
|
text->undo_pos--;
|
|
|
|
text->undo_pos--;
|
|
|
|
|
|
|
|
text->undo_pos--;
|
|
|
|
|
|
|
|
break;
|
2005-12-12 18:35:15 +00:00
|
|
|
case UNDO_INDENT:
|
|
|
|
case UNDO_UNINDENT:
|
|
|
|
case UNDO_COMMENT:
|
|
|
|
case UNDO_UNCOMMENT:
|
|
|
|
linep= text->undo_buf[text->undo_pos]; text->undo_pos--;
|
|
|
|
linep = (linep<<8)+text->undo_buf[text->undo_pos]; text->undo_pos--;
|
|
|
|
linep = (linep<<8)+text->undo_buf[text->undo_pos]; text->undo_pos--;
|
|
|
|
linep = (linep<<8)+text->undo_buf[text->undo_pos]; text->undo_pos--;
|
|
|
|
//linep is now the end line of the selection
|
|
|
|
|
|
|
|
charp = text->undo_buf[text->undo_pos]; text->undo_pos--;
|
|
|
|
charp = (charp<<8)+text->undo_buf[text->undo_pos]; text->undo_pos--;
|
|
|
|
//charp is the last char selected or text->line->len
|
|
|
|
//set the selcetion for this now
|
|
|
|
text->selc = charp;
|
|
|
|
text->sell = text->lines.first;
|
|
|
|
for (i= 0; i < linep; i++) {
|
|
|
|
text->sell = text->sell->next;
|
|
|
|
}
|
|
|
|
|
|
|
|
linep= text->undo_buf[text->undo_pos]; text->undo_pos--;
|
|
|
|
linep = (linep<<8)+text->undo_buf[text->undo_pos]; text->undo_pos--;
|
|
|
|
linep = (linep<<8)+text->undo_buf[text->undo_pos]; text->undo_pos--;
|
|
|
|
linep = (linep<<8)+text->undo_buf[text->undo_pos]; text->undo_pos--;
|
|
|
|
//first line to be selected
|
|
|
|
|
|
|
|
charp = text->undo_buf[text->undo_pos]; text->undo_pos--;
|
|
|
|
charp = (charp<<8)+text->undo_buf[text->undo_pos]; text->undo_pos--;
|
|
|
|
//first postion to be selected
|
|
|
|
text->curc = charp;
|
|
|
|
text->curl = text->lines.first;
|
|
|
|
for (i = 0; i < linep; i++) {
|
|
|
|
text->curl = text->curl->next;
|
|
|
|
}
|
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
|
2005-12-12 18:35:15 +00:00
|
|
|
if (op==UNDO_INDENT) {
|
|
|
|
unindent(text);
|
|
|
|
} else if (op== UNDO_UNINDENT) {
|
|
|
|
indent(text);
|
|
|
|
} else if (op == UNDO_COMMENT) {
|
|
|
|
uncomment(text);
|
|
|
|
} else if (op == UNDO_UNCOMMENT) {
|
|
|
|
comment(text);
|
|
|
|
}
|
|
|
|
|
|
|
|
text->undo_pos--;
|
|
|
|
break;
|
2002-10-12 11:37:38 +00:00
|
|
|
default:
|
2008-01-01 18:16:10 +00:00
|
|
|
//XXX error("Undo buffer error - resetting");
|
2002-10-12 11:37:38 +00:00
|
|
|
text->undo_pos= -1;
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
2008-07-23 12:59:05 +00:00
|
|
|
|
|
|
|
/* next undo step may need evaluating */
|
2008-07-28 11:54:13 +00:00
|
|
|
if (text->undo_pos>=0) {
|
|
|
|
switch (text->undo_buf[text->undo_pos]) {
|
|
|
|
case UNDO_STO:
|
|
|
|
txt_do_undo(text);
|
|
|
|
txt_do_redo(text); /* selections need restoring */
|
|
|
|
break;
|
|
|
|
case UNDO_SWAP:
|
|
|
|
txt_do_undo(text); /* swaps should appear transparent */
|
|
|
|
break;
|
|
|
|
}
|
2008-07-23 12:59:05 +00:00
|
|
|
}
|
2002-10-12 11:37:38 +00:00
|
|
|
|
|
|
|
undoing= 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void txt_do_redo(Text *text)
|
|
|
|
{
|
|
|
|
char op;
|
2006-04-03 20:31:10 +00:00
|
|
|
unsigned int linep, i;
|
2002-10-12 11:37:38 +00:00
|
|
|
unsigned short charp;
|
|
|
|
char *buf;
|
|
|
|
|
|
|
|
text->undo_pos++;
|
|
|
|
op= text->undo_buf[text->undo_pos];
|
|
|
|
|
|
|
|
if (!op) {
|
|
|
|
text->undo_pos--;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
undoing= 1;
|
2005-12-12 18:35:15 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
switch(op) {
|
|
|
|
case UNDO_CLEFT:
|
|
|
|
txt_move_left(text, 0);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case UNDO_CRIGHT:
|
|
|
|
txt_move_right(text, 0);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case UNDO_CUP:
|
|
|
|
txt_move_up(text, 0);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case UNDO_CDOWN:
|
|
|
|
txt_move_down(text, 0);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case UNDO_SLEFT:
|
|
|
|
txt_move_left(text, 1);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case UNDO_SRIGHT:
|
|
|
|
txt_move_right(text, 1);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case UNDO_SUP:
|
|
|
|
txt_move_up(text, 1);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case UNDO_SDOWN:
|
|
|
|
txt_move_down(text, 1);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case UNDO_INSERT:
|
|
|
|
text->undo_pos++;
|
|
|
|
txt_add_char(text, text->undo_buf[text->undo_pos]);
|
|
|
|
text->undo_pos++;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case UNDO_BS:
|
|
|
|
text->undo_pos++;
|
|
|
|
txt_backspace_char(text);
|
|
|
|
text->undo_pos++;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case UNDO_DEL:
|
|
|
|
text->undo_pos++;
|
|
|
|
txt_delete_char(text);
|
|
|
|
text->undo_pos++;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case UNDO_SWAP:
|
|
|
|
txt_curs_swap(text);
|
2008-07-23 12:59:05 +00:00
|
|
|
txt_do_redo(text); /* swaps should appear transparent a*/
|
2002-10-12 11:37:38 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case UNDO_CTO:
|
|
|
|
case UNDO_STO:
|
|
|
|
text->undo_pos++;
|
|
|
|
text->undo_pos++;
|
|
|
|
|
|
|
|
text->undo_pos++;
|
|
|
|
text->undo_pos++;
|
|
|
|
text->undo_pos++;
|
|
|
|
text->undo_pos++;
|
|
|
|
|
|
|
|
text->undo_pos++;
|
|
|
|
|
|
|
|
charp= text->undo_buf[text->undo_pos];
|
|
|
|
text->undo_pos++;
|
|
|
|
charp= charp+(text->undo_buf[text->undo_pos]<<8);
|
|
|
|
|
|
|
|
text->undo_pos++;
|
|
|
|
linep= text->undo_buf[text->undo_pos]; text->undo_pos++;
|
|
|
|
linep= linep+(text->undo_buf[text->undo_pos]<<8); text->undo_pos++;
|
|
|
|
linep= linep+(text->undo_buf[text->undo_pos]<<16); text->undo_pos++;
|
|
|
|
linep= linep+(text->undo_buf[text->undo_pos]<<24); text->undo_pos++;
|
|
|
|
|
|
|
|
if (op==UNDO_CTO) {
|
|
|
|
txt_move_toline(text, linep, 0);
|
|
|
|
text->curc= charp;
|
|
|
|
txt_pop_sel(text);
|
|
|
|
} else {
|
|
|
|
txt_move_toline(text, linep, 1);
|
|
|
|
text->selc= charp;
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
case UNDO_DBLOCK:
|
|
|
|
text->undo_pos++;
|
|
|
|
linep= text->undo_buf[text->undo_pos]; text->undo_pos++;
|
|
|
|
linep= linep+(text->undo_buf[text->undo_pos]<<8); text->undo_pos++;
|
|
|
|
linep= linep+(text->undo_buf[text->undo_pos]<<16); text->undo_pos++;
|
|
|
|
linep= linep+(text->undo_buf[text->undo_pos]<<24); text->undo_pos++;
|
|
|
|
|
|
|
|
txt_delete_sel(text);
|
|
|
|
text->undo_pos+=linep;
|
|
|
|
|
|
|
|
text->undo_pos++;
|
|
|
|
text->undo_pos++;
|
|
|
|
text->undo_pos++;
|
|
|
|
text->undo_pos++;
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
case UNDO_IBLOCK:
|
|
|
|
text->undo_pos++;
|
|
|
|
linep= text->undo_buf[text->undo_pos]; text->undo_pos++;
|
|
|
|
linep= linep+(text->undo_buf[text->undo_pos]<<8); text->undo_pos++;
|
|
|
|
linep= linep+(text->undo_buf[text->undo_pos]<<16); text->undo_pos++;
|
|
|
|
linep= linep+(text->undo_buf[text->undo_pos]<<24); text->undo_pos++;
|
|
|
|
|
|
|
|
buf= MEM_mallocN(linep+1, "iblock buffer");
|
|
|
|
memcpy (buf, &text->undo_buf[text->undo_pos], linep);
|
|
|
|
text->undo_pos+= linep;
|
|
|
|
buf[linep]= 0;
|
|
|
|
|
|
|
|
txt_insert_buf(text, buf);
|
|
|
|
MEM_freeN(buf);
|
|
|
|
|
|
|
|
linep= text->undo_buf[text->undo_pos]; text->undo_pos++;
|
|
|
|
linep= linep+(text->undo_buf[text->undo_pos]<<8); text->undo_pos++;
|
|
|
|
linep= linep+(text->undo_buf[text->undo_pos]<<16); text->undo_pos++;
|
|
|
|
linep= linep+(text->undo_buf[text->undo_pos]<<24); text->undo_pos++;
|
|
|
|
|
|
|
|
break;
|
2005-12-12 18:35:15 +00:00
|
|
|
case UNDO_INDENT:
|
|
|
|
case UNDO_UNINDENT:
|
|
|
|
case UNDO_COMMENT:
|
|
|
|
case UNDO_UNCOMMENT:
|
|
|
|
text->undo_pos++;
|
|
|
|
charp = text->undo_buf[text->undo_pos]; text->undo_pos++;
|
|
|
|
charp = charp+(text->undo_buf[text->undo_pos]<<8); text->undo_pos++;
|
|
|
|
//charp is the first char selected or 0
|
|
|
|
|
|
|
|
linep= text->undo_buf[text->undo_pos]; text->undo_pos++;
|
|
|
|
linep = linep+(text->undo_buf[text->undo_pos]<<8); text->undo_pos++;
|
|
|
|
linep = linep+(text->undo_buf[text->undo_pos]<<16); text->undo_pos++;
|
|
|
|
linep = linep+(text->undo_buf[text->undo_pos]<<24); text->undo_pos++;
|
|
|
|
//linep is now the first line of the selection
|
|
|
|
//set the selcetion for this now
|
|
|
|
text->curc = charp;
|
|
|
|
text->curl = text->lines.first;
|
|
|
|
for (i= 0; i < linep; i++) {
|
|
|
|
text->curl = text->curl->next;
|
|
|
|
}
|
|
|
|
|
|
|
|
charp = text->undo_buf[text->undo_pos]; text->undo_pos++;
|
|
|
|
charp = charp+(text->undo_buf[text->undo_pos]<<8); text->undo_pos++;
|
|
|
|
//last postion to be selected
|
|
|
|
linep= text->undo_buf[text->undo_pos]; text->undo_pos++;
|
|
|
|
linep = linep+(text->undo_buf[text->undo_pos]<<8); text->undo_pos++;
|
|
|
|
linep = linep+(text->undo_buf[text->undo_pos]<<16); text->undo_pos++;
|
|
|
|
linep = linep+(text->undo_buf[text->undo_pos]<<24); text->undo_pos++;
|
|
|
|
//Last line to be selected
|
|
|
|
|
|
|
|
text->selc = charp;
|
|
|
|
text->sell = text->lines.first;
|
|
|
|
for (i = 0; i < linep; i++) {
|
|
|
|
text->sell = text->sell->next;
|
|
|
|
}
|
2002-10-12 11:37:38 +00:00
|
|
|
|
2005-12-12 18:35:15 +00:00
|
|
|
if (op==UNDO_INDENT) {
|
|
|
|
indent(text);
|
|
|
|
} else if (op== UNDO_UNINDENT) {
|
|
|
|
unindent(text);
|
|
|
|
} else if (op == UNDO_COMMENT) {
|
|
|
|
comment(text);
|
|
|
|
} else if (op == UNDO_UNCOMMENT) {
|
|
|
|
uncomment(text);
|
|
|
|
}
|
|
|
|
break;
|
2002-10-12 11:37:38 +00:00
|
|
|
default:
|
2008-01-01 18:16:10 +00:00
|
|
|
//XXX error("Undo buffer error - resetting");
|
2002-10-12 11:37:38 +00:00
|
|
|
text->undo_pos= -1;
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
undoing= 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**************************/
|
|
|
|
/* Line editing functions */
|
|
|
|
/**************************/
|
|
|
|
|
2006-11-26 16:03:36 +00:00
|
|
|
void txt_split_curline (Text *text)
|
|
|
|
{
|
2002-10-12 11:37:38 +00:00
|
|
|
TextLine *ins;
|
2008-08-04 23:01:47 +00:00
|
|
|
TextMarker *mrk;
|
2008-07-28 11:05:35 +00:00
|
|
|
char *left, *right;
|
2008-08-04 23:01:47 +00:00
|
|
|
int lineno= -1;
|
2002-10-12 11:37:38 +00:00
|
|
|
|
|
|
|
if (!text) return;
|
|
|
|
if (!text->curl) return;
|
|
|
|
|
2008-08-04 23:01:47 +00:00
|
|
|
txt_delete_sel(text);
|
|
|
|
|
|
|
|
/* Move markers */
|
|
|
|
|
|
|
|
lineno= txt_get_span(text->lines.first, text->curl);
|
|
|
|
mrk= text->markers.first;
|
|
|
|
while (mrk) {
|
|
|
|
if (mrk->lineno==lineno && mrk->start>text->curc) {
|
|
|
|
mrk->lineno++;
|
|
|
|
mrk->start -= text->curc;
|
|
|
|
mrk->end -= text->curc;
|
|
|
|
} else if (mrk->lineno > lineno) {
|
|
|
|
mrk->lineno++;
|
|
|
|
}
|
|
|
|
mrk= mrk->next;
|
|
|
|
}
|
2002-10-12 11:37:38 +00:00
|
|
|
|
|
|
|
/* Make the two half strings */
|
|
|
|
|
|
|
|
left= MEM_mallocN(text->curc+1, "textline_string");
|
|
|
|
if (text->curc) memcpy(left, text->curl->line, text->curc);
|
|
|
|
left[text->curc]=0;
|
|
|
|
|
|
|
|
right= MEM_mallocN(text->curl->len - text->curc+1, "textline_string");
|
|
|
|
if (text->curl->len - text->curc) memcpy(right, text->curl->line+text->curc, text->curl->len-text->curc);
|
|
|
|
right[text->curl->len - text->curc]=0;
|
|
|
|
|
|
|
|
MEM_freeN(text->curl->line);
|
2005-05-19 03:15:49 +00:00
|
|
|
if (text->curl->format) MEM_freeN(text->curl->format);
|
2002-10-12 11:37:38 +00:00
|
|
|
|
|
|
|
/* Make the new TextLine */
|
|
|
|
|
|
|
|
ins= MEM_mallocN(sizeof(TextLine), "textline");
|
|
|
|
ins->line= left;
|
2008-07-28 11:05:35 +00:00
|
|
|
ins->format= NULL;
|
2002-10-12 11:37:38 +00:00
|
|
|
ins->len= text->curc;
|
|
|
|
|
|
|
|
text->curl->line= right;
|
2008-07-28 11:05:35 +00:00
|
|
|
text->curl->format= NULL;
|
2002-10-12 11:37:38 +00:00
|
|
|
text->curl->len= text->curl->len - text->curc;
|
|
|
|
|
|
|
|
BLI_insertlinkbefore(&text->lines, text->curl, ins);
|
|
|
|
|
|
|
|
text->curc=0;
|
|
|
|
|
|
|
|
txt_make_dirty(text);
|
|
|
|
txt_clean_text(text);
|
|
|
|
|
|
|
|
txt_pop_sel(text);
|
|
|
|
if(!undoing) txt_undo_add_charop(text, UNDO_INSERT, '\n');
|
|
|
|
}
|
|
|
|
|
|
|
|
static void txt_delete_line (Text *text, TextLine *line)
|
|
|
|
{
|
2008-08-04 23:01:47 +00:00
|
|
|
TextMarker *mrk=NULL, *nxt;
|
|
|
|
int lineno= -1;
|
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
if (!text) return;
|
|
|
|
if (!text->curl) return;
|
|
|
|
|
2008-08-04 23:01:47 +00:00
|
|
|
lineno= txt_get_span(text->lines.first, line);
|
|
|
|
mrk= text->markers.first;
|
|
|
|
while (mrk) {
|
|
|
|
nxt= mrk->next;
|
|
|
|
if (mrk->lineno==lineno)
|
|
|
|
BLI_freelinkN(&text->markers, mrk);
|
|
|
|
else if (mrk->lineno > lineno)
|
|
|
|
mrk->lineno--;
|
|
|
|
mrk= nxt;
|
|
|
|
}
|
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
BLI_remlink (&text->lines, line);
|
|
|
|
|
|
|
|
if (line->line) MEM_freeN(line->line);
|
2005-05-13 16:11:28 +00:00
|
|
|
if (line->format) MEM_freeN(line->format);
|
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
MEM_freeN(line);
|
|
|
|
|
|
|
|
txt_make_dirty(text);
|
|
|
|
txt_clean_text(text);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void txt_combine_lines (Text *text, TextLine *linea, TextLine *lineb)
|
|
|
|
{
|
2008-07-28 11:05:35 +00:00
|
|
|
char *tmp;
|
2008-08-04 23:01:47 +00:00
|
|
|
TextMarker *mrk= NULL;
|
|
|
|
int lineno=-1;
|
2002-10-12 11:37:38 +00:00
|
|
|
|
|
|
|
if (!text) return;
|
|
|
|
|
|
|
|
if(!linea || !lineb) return;
|
2008-08-04 23:01:47 +00:00
|
|
|
|
2008-08-24 13:30:35 +00:00
|
|
|
mrk= txt_find_marker_region(text, lineb, 0, lineb->len, 0, 0);
|
2008-08-04 23:01:47 +00:00
|
|
|
if (mrk) {
|
|
|
|
lineno= mrk->lineno;
|
|
|
|
do {
|
|
|
|
mrk->lineno--;
|
|
|
|
mrk->start += linea->len;
|
|
|
|
mrk->end += linea->len;
|
|
|
|
mrk= mrk->next;
|
|
|
|
} while (mrk && mrk->lineno==lineno);
|
|
|
|
}
|
|
|
|
if (lineno==-1) lineno= txt_get_span(text->lines.first, lineb);
|
|
|
|
if (!mrk) mrk= text->markers.first;
|
2002-10-12 11:37:38 +00:00
|
|
|
|
|
|
|
tmp= MEM_mallocN(linea->len+lineb->len+1, "textline_string");
|
|
|
|
|
|
|
|
strcpy(tmp, linea->line);
|
|
|
|
strcat(tmp, lineb->line);
|
2005-05-13 16:11:28 +00:00
|
|
|
|
2008-07-28 11:05:35 +00:00
|
|
|
make_new_line(linea, tmp);
|
2002-10-12 11:37:38 +00:00
|
|
|
|
2008-08-04 23:01:47 +00:00
|
|
|
txt_delete_line(text, lineb);
|
2002-10-12 11:37:38 +00:00
|
|
|
|
|
|
|
txt_make_dirty(text);
|
|
|
|
txt_clean_text(text);
|
|
|
|
}
|
|
|
|
|
|
|
|
void txt_delete_char (Text *text)
|
|
|
|
{
|
|
|
|
char c='\n';
|
|
|
|
|
|
|
|
if (!text) return;
|
|
|
|
if (!text->curl) return;
|
|
|
|
|
2003-11-10 05:51:55 +00:00
|
|
|
if (txt_has_sel(text)) { /* deleting a selection */
|
2008-08-04 23:01:47 +00:00
|
|
|
txt_delete_sel(text);
|
2008-08-13 17:29:51 +00:00
|
|
|
txt_make_dirty(text);
|
2008-08-04 23:01:47 +00:00
|
|
|
return;
|
2002-10-12 11:37:38 +00:00
|
|
|
}
|
2003-11-10 05:51:55 +00:00
|
|
|
else if (text->curc== text->curl->len) { /* Appending two lines */
|
2002-10-12 11:37:38 +00:00
|
|
|
if (text->curl->next) {
|
|
|
|
txt_combine_lines(text, text->curl, text->curl->next);
|
|
|
|
txt_pop_sel(text);
|
|
|
|
}
|
|
|
|
} else { /* Just deleting a char */
|
|
|
|
int i= text->curc;
|
2008-08-04 23:01:47 +00:00
|
|
|
|
2008-08-24 13:30:35 +00:00
|
|
|
TextMarker *mrk= txt_find_marker_region(text, text->curl, i-1, text->curl->len, 0, 0);
|
2008-08-04 23:01:47 +00:00
|
|
|
if (mrk) {
|
|
|
|
int lineno= mrk->lineno;
|
|
|
|
if (mrk->end==i) {
|
|
|
|
if ((mrk->flags & TMARK_TEMP) && !(mrk->flags & TMARK_EDITALL)) {
|
2008-08-24 13:30:35 +00:00
|
|
|
txt_clear_markers(text, mrk->group, TMARK_TEMP);
|
2008-08-04 23:01:47 +00:00
|
|
|
} else {
|
|
|
|
BLI_freelinkN(&text->markers, mrk);
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
do {
|
|
|
|
if (mrk->start>i) mrk->start--;
|
|
|
|
mrk->end--;
|
|
|
|
mrk= mrk->next;
|
|
|
|
} while (mrk && mrk->lineno==lineno);
|
|
|
|
}
|
2002-10-12 11:37:38 +00:00
|
|
|
|
|
|
|
c= text->curl->line[i];
|
|
|
|
while(i< text->curl->len) {
|
|
|
|
text->curl->line[i]= text->curl->line[i+1];
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
text->curl->len--;
|
|
|
|
|
|
|
|
txt_pop_sel(text);
|
|
|
|
}
|
|
|
|
|
|
|
|
txt_make_dirty(text);
|
|
|
|
txt_clean_text(text);
|
|
|
|
|
|
|
|
if(!undoing) txt_undo_add_charop(text, UNDO_DEL, c);
|
|
|
|
}
|
|
|
|
|
2008-06-04 23:20:54 +00:00
|
|
|
void txt_delete_word (Text *text)
|
|
|
|
{
|
2008-06-10 15:25:05 +00:00
|
|
|
txt_jump_right(text, 1);
|
|
|
|
txt_delete_sel(text);
|
2008-06-04 23:20:54 +00:00
|
|
|
}
|
|
|
|
|
2006-11-26 16:03:36 +00:00
|
|
|
void txt_backspace_char (Text *text)
|
|
|
|
{
|
2002-10-12 11:37:38 +00:00
|
|
|
char c='\n';
|
|
|
|
|
|
|
|
if (!text) return;
|
|
|
|
if (!text->curl) return;
|
|
|
|
|
2003-11-10 05:51:55 +00:00
|
|
|
if (txt_has_sel(text)) { /* deleting a selection */
|
2008-08-04 23:01:47 +00:00
|
|
|
txt_delete_sel(text);
|
2008-08-13 17:29:51 +00:00
|
|
|
txt_make_dirty(text);
|
2008-08-04 23:01:47 +00:00
|
|
|
return;
|
2002-10-12 11:37:38 +00:00
|
|
|
}
|
2003-11-10 05:51:55 +00:00
|
|
|
else if (text->curc==0) { /* Appending two lines */
|
2008-06-04 16:03:19 +00:00
|
|
|
if (!text->curl->prev) return;
|
2002-10-12 11:37:38 +00:00
|
|
|
|
2008-06-04 16:03:19 +00:00
|
|
|
text->curl= text->curl->prev;
|
|
|
|
text->curc= text->curl->len;
|
2002-10-12 11:37:38 +00:00
|
|
|
|
2008-06-04 16:03:19 +00:00
|
|
|
txt_combine_lines(text, text->curl, text->curl->next);
|
|
|
|
txt_pop_sel(text);
|
2008-08-04 23:01:47 +00:00
|
|
|
}
|
2003-11-10 05:51:55 +00:00
|
|
|
else { /* Just backspacing a char */
|
2008-08-04 23:01:47 +00:00
|
|
|
int i= text->curc-1;
|
|
|
|
|
2008-08-24 13:30:35 +00:00
|
|
|
TextMarker *mrk= txt_find_marker_region(text, text->curl, i, text->curl->len, 0, 0);
|
2008-08-04 23:01:47 +00:00
|
|
|
if (mrk) {
|
|
|
|
int lineno= mrk->lineno;
|
|
|
|
if (mrk->start==i+1) {
|
|
|
|
if ((mrk->flags & TMARK_TEMP) && !(mrk->flags & TMARK_EDITALL)) {
|
2008-08-24 13:30:35 +00:00
|
|
|
txt_clear_markers(text, mrk->group, TMARK_TEMP);
|
2008-08-04 23:01:47 +00:00
|
|
|
} else {
|
|
|
|
BLI_freelinkN(&text->markers, mrk);
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
do {
|
|
|
|
if (mrk->start>i) mrk->start--;
|
|
|
|
mrk->end--;
|
|
|
|
mrk= mrk->next;
|
|
|
|
} while (mrk && mrk->lineno==lineno);
|
|
|
|
}
|
2002-10-12 11:37:38 +00:00
|
|
|
|
2008-08-04 23:01:47 +00:00
|
|
|
c= text->curl->line[i];
|
|
|
|
while(i< text->curl->len) {
|
|
|
|
text->curl->line[i]= text->curl->line[i+1];
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
text->curl->len--;
|
|
|
|
text->curc--;
|
|
|
|
|
|
|
|
txt_pop_sel(text);
|
2002-10-12 11:37:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
txt_make_dirty(text);
|
|
|
|
txt_clean_text(text);
|
|
|
|
|
|
|
|
if(!undoing) txt_undo_add_charop(text, UNDO_BS, c);
|
|
|
|
}
|
|
|
|
|
2008-06-04 23:20:54 +00:00
|
|
|
void txt_backspace_word (Text *text)
|
|
|
|
{
|
2008-06-10 15:25:05 +00:00
|
|
|
txt_jump_left(text, 1);
|
|
|
|
txt_delete_sel(text);
|
2008-06-04 23:20:54 +00:00
|
|
|
}
|
|
|
|
|
2009-11-20 19:15:57 +00:00
|
|
|
/* Max spaces to replace a tab with, currently hardcoded to TXT_TABSIZE = 4.
|
|
|
|
* Used by txt_convert_tab_to_spaces, indent and unintent.
|
|
|
|
* Remember to change this string according to max tab size */
|
|
|
|
static char tab_to_spaces[] = " ";
|
|
|
|
|
|
|
|
static void txt_convert_tab_to_spaces (Text *text)
|
|
|
|
{
|
2010-02-09 11:18:17 +00:00
|
|
|
/* sb aims to pad adjust the tab-width needed so that the right number of spaces
|
|
|
|
* is added so that the indention of the line is the right width (i.e. aligned
|
|
|
|
* to multiples of TXT_TABSIZE)
|
|
|
|
*/
|
|
|
|
char *sb = &tab_to_spaces[text->curc % TXT_TABSIZE];
|
2009-11-20 19:15:57 +00:00
|
|
|
txt_insert_buf(text, sb);
|
|
|
|
}
|
|
|
|
|
2006-11-26 16:03:36 +00:00
|
|
|
int txt_add_char (Text *text, char add)
|
|
|
|
{
|
2008-08-04 23:01:47 +00:00
|
|
|
int len, lineno;
|
2008-07-28 11:05:35 +00:00
|
|
|
char *tmp;
|
2008-08-04 23:01:47 +00:00
|
|
|
TextMarker *mrk;
|
2002-10-12 11:37:38 +00:00
|
|
|
|
|
|
|
if (!text) return 0;
|
|
|
|
if (!text->curl) return 0;
|
|
|
|
|
|
|
|
if (add=='\n') {
|
|
|
|
txt_split_curline(text);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2009-11-20 19:15:57 +00:00
|
|
|
/* insert spaces rather then tabs */
|
2010-01-14 21:30:51 +00:00
|
|
|
if (add == '\t' && text->flags & TXT_TABSTOSPACES) {
|
2009-11-20 19:15:57 +00:00
|
|
|
txt_convert_tab_to_spaces(text);
|
2009-11-18 01:16:49 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
txt_delete_sel(text);
|
|
|
|
|
2008-08-24 13:30:35 +00:00
|
|
|
mrk= txt_find_marker_region(text, text->curl, text->curc-1, text->curl->len, 0, 0);
|
2008-08-04 23:01:47 +00:00
|
|
|
if (mrk) {
|
|
|
|
lineno= mrk->lineno;
|
|
|
|
do {
|
|
|
|
if (mrk->start>text->curc) mrk->start++;
|
|
|
|
mrk->end++;
|
|
|
|
mrk= mrk->next;
|
|
|
|
} while (mrk && mrk->lineno==lineno);
|
|
|
|
}
|
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
tmp= MEM_mallocN(text->curl->len+2, "textline_string");
|
|
|
|
|
|
|
|
if(text->curc) memcpy(tmp, text->curl->line, text->curc);
|
|
|
|
tmp[text->curc]= add;
|
|
|
|
|
|
|
|
len= text->curl->len - text->curc;
|
|
|
|
if(len>0) memcpy(tmp+text->curc+1, text->curl->line+text->curc, len);
|
|
|
|
tmp[text->curl->len+1]=0;
|
2008-07-28 11:05:35 +00:00
|
|
|
make_new_line(text->curl, tmp);
|
2002-10-12 11:37:38 +00:00
|
|
|
|
|
|
|
text->curc++;
|
|
|
|
|
|
|
|
txt_pop_sel(text);
|
|
|
|
|
|
|
|
txt_make_dirty(text);
|
|
|
|
txt_clean_text(text);
|
|
|
|
|
|
|
|
if(!undoing) txt_undo_add_charop(text, UNDO_INSERT, add);
|
|
|
|
return 1;
|
|
|
|
}
|
2004-10-14 23:37:04 +00:00
|
|
|
|
2.5: Text Editor back.
There was very little structure in this code, using many globals
and duplicated code. Now it should be better structured. Most
things should work, the main parts that are not back yet are the
python plugins and markers. Notes:
* Blenfont is used for drawing the text, nicely anti-aliased.
* A monospace truetype font was added, since that is needed for
the text editor. It's Bitstream Vera Sans Mono. This is the
default gnome terminal font, but it doesn't fit entirely well
with the other font I think, can be changed easily of course.
* Clipboard copy/cut/paste now always uses the system clipboard,
the code for the own cut buffer was removed.
* The interface buttons should support copy/cut/paste again now
as well.
* WM_clipboard_text_get/WM_clipboard_text_set were added to the
windowmanager code.
* Find panel is now a kind of second header, instead of a panel.
This needs especially a way to start editing the text field
immediately on open still.
* Operators are independent of the actual space when possible,
was a bit of puzzling but got it solved nice with notifiers,
and some lazy init for syntax highlight in the drawing code.
* RNA was created for the text editor space and used for buttons.
* Operators:
* New, Open, Reload, Save, Save As, Make Internal
* Run Script, Refresh Pyconstraints
* Copy, Cut, Paste
* Convert Whitespace, Uncomment, Comment, Indent, Unindent
* Line Break, Insert
* Next Marker, Previous Marker, Clear All Markers, Mark All
* Select Line, Select All
* Jump, Move, Move Select, Delete, Toggle Overwrite
* Scroll, Scroll Bar, Set Cursor, Line Number
* Find and Replace, Find, Replace, Find Set Selected,
Replace Set Selected
* To 3D Object
* Resolve Conflict
2009-02-28 23:33:35 +00:00
|
|
|
void txt_delete_selected(Text *text)
|
|
|
|
{
|
|
|
|
txt_delete_sel(text);
|
|
|
|
txt_make_dirty(text);
|
|
|
|
}
|
|
|
|
|
2008-06-04 12:32:06 +00:00
|
|
|
int txt_replace_char (Text *text, char add)
|
|
|
|
{
|
|
|
|
char del;
|
|
|
|
|
|
|
|
if (!text) return 0;
|
|
|
|
if (!text->curl) return 0;
|
|
|
|
|
|
|
|
/* If text is selected or we're at the end of the line just use txt_add_char */
|
2008-08-16 20:31:38 +00:00
|
|
|
if (text->curc==text->curl->len || txt_has_sel(text) || add=='\n') {
|
|
|
|
TextMarker *mrk;
|
|
|
|
int i= txt_add_char(text, add);
|
2008-08-24 13:30:35 +00:00
|
|
|
mrk= txt_find_marker(text, text->curl, text->curc, 0, 0);
|
2008-08-16 20:31:38 +00:00
|
|
|
if (mrk && mrk->end==text->curc) mrk->end--;
|
|
|
|
return i;
|
2008-06-04 12:32:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
del= text->curl->line[text->curc];
|
|
|
|
text->curl->line[text->curc]= (unsigned char) add;
|
|
|
|
text->curc++;
|
|
|
|
txt_pop_sel(text);
|
|
|
|
|
|
|
|
txt_make_dirty(text);
|
|
|
|
txt_clean_text(text);
|
|
|
|
|
|
|
|
/* Should probably create a new op for this */
|
|
|
|
if(!undoing) {
|
|
|
|
txt_undo_add_charop(text, UNDO_DEL, del);
|
|
|
|
txt_undo_add_charop(text, UNDO_INSERT, add);
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
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(Text *text)
|
2004-10-14 23:37:04 +00:00
|
|
|
{
|
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
|
|
|
int len, num;
|
2008-07-28 11:05:35 +00:00
|
|
|
char *tmp;
|
2010-01-17 03:15:27 +00:00
|
|
|
|
|
|
|
char *add = "\t";
|
|
|
|
int indentlen = 1;
|
|
|
|
|
2009-11-20 19:15:57 +00:00
|
|
|
/* hardcoded: TXT_TABSIZE = 4 spaces: */
|
|
|
|
int spaceslen = TXT_TABSIZE;
|
2010-01-17 03:15:27 +00:00
|
|
|
|
|
|
|
/* insert spaces rather then tabs */
|
|
|
|
if (text->flags & TXT_TABSTOSPACES){
|
|
|
|
add = tab_to_spaces;
|
|
|
|
indentlen = spaceslen;
|
|
|
|
}
|
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
|
|
|
|
2004-10-14 23:37:04 +00:00
|
|
|
if (!text) return;
|
|
|
|
if (!text->curl) return;
|
|
|
|
if (!text->sell) return;
|
2005-12-12 18:35:15 +00:00
|
|
|
|
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
|
|
|
num = 0;
|
|
|
|
while (TRUE)
|
|
|
|
{
|
2009-11-20 19:15:57 +00:00
|
|
|
tmp= MEM_mallocN(text->curl->len+indentlen+1, "textline_string");
|
2005-05-13 16:11:28 +00:00
|
|
|
|
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
|
|
|
text->curc = 0;
|
2009-11-20 19:15:57 +00:00
|
|
|
if(text->curc) memcpy(tmp, text->curl->line, text->curc); /* XXX never true, check prev line */
|
|
|
|
memcpy(tmp+text->curc, add, indentlen);
|
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
|
|
|
|
|
|
|
len= text->curl->len - text->curc;
|
2009-11-20 19:15:57 +00:00
|
|
|
if(len>0) memcpy(tmp+text->curc+indentlen, text->curl->line+text->curc, len);
|
|
|
|
tmp[text->curl->len+indentlen]= 0;
|
2005-05-13 16:11:28 +00:00
|
|
|
|
2008-07-28 11:05:35 +00:00
|
|
|
make_new_line(text->curl, tmp);
|
2004-10-14 23:37:04 +00:00
|
|
|
|
2009-11-20 19:15:57 +00:00
|
|
|
text->curc+= indentlen;
|
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
|
|
|
|
|
|
|
txt_make_dirty(text);
|
|
|
|
txt_clean_text(text);
|
|
|
|
|
|
|
|
if(text->curl == text->sell)
|
|
|
|
{
|
|
|
|
text->selc = text->sell->len;
|
|
|
|
break;
|
|
|
|
} else {
|
|
|
|
text->curl = text->curl->next;
|
|
|
|
num++;
|
2004-10-14 23:37:04 +00:00
|
|
|
}
|
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
|
|
|
}
|
|
|
|
text->curc = 0;
|
|
|
|
while( num > 0 )
|
|
|
|
{
|
|
|
|
text->curl = text->curl->prev;
|
|
|
|
num--;
|
2004-10-14 23:37:04 +00:00
|
|
|
}
|
2005-12-12 18:35:15 +00:00
|
|
|
|
|
|
|
if(!undoing)
|
|
|
|
{
|
|
|
|
txt_undo_add_toop(text, UNDO_INDENT, txt_get_span(text->lines.first, text->curl), text->curc, txt_get_span(text->lines.first, text->sell), text->selc);
|
|
|
|
}
|
2004-10-14 23:37:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void unindent(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
|
|
|
int num = 0;
|
2010-01-17 03:15:27 +00:00
|
|
|
char *remove = "\t";
|
|
|
|
int indent = 1;
|
|
|
|
|
|
|
|
/* hardcoded: TXT_TABSIZE = 4 spaces: */
|
|
|
|
int spaceslen = TXT_TABSIZE;
|
|
|
|
|
|
|
|
/* insert spaces rather then tabs */
|
|
|
|
if (text->flags & TXT_TABSTOSPACES){
|
|
|
|
remove = tab_to_spaces;
|
|
|
|
indent = spaceslen;
|
|
|
|
}
|
2009-11-20 19:15:57 +00:00
|
|
|
|
2004-10-14 23:37:04 +00:00
|
|
|
if (!text) return;
|
|
|
|
if (!text->curl) return;
|
|
|
|
if (!text->sell) return;
|
2005-12-12 18:35:15 +00:00
|
|
|
|
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
|
|
|
while(TRUE)
|
|
|
|
{
|
|
|
|
int i = 0;
|
|
|
|
|
2009-11-20 19:15:57 +00:00
|
|
|
if (BLI_strncasecmp(text->curl->line, remove, indent) == 0)
|
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
|
|
|
{
|
|
|
|
while(i< text->curl->len) {
|
2009-11-20 19:15:57 +00:00
|
|
|
text->curl->line[i]= text->curl->line[i+indent];
|
2004-10-14 23:37:04 +00:00
|
|
|
i++;
|
|
|
|
}
|
2009-11-20 19:15:57 +00:00
|
|
|
text->curl->len-= indent;
|
2004-10-14 23:37:04 +00:00
|
|
|
}
|
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
|
|
|
|
|
|
|
txt_make_dirty(text);
|
|
|
|
txt_clean_text(text);
|
|
|
|
|
|
|
|
if(text->curl == text->sell)
|
|
|
|
{
|
|
|
|
text->selc = text->sell->len;
|
|
|
|
break;
|
|
|
|
} else {
|
|
|
|
text->curl = text->curl->next;
|
|
|
|
num++;
|
2004-10-14 23:37:04 +00:00
|
|
|
}
|
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
|
|
|
|
|
|
|
}
|
2005-12-12 18:35:15 +00:00
|
|
|
text->curc = 0;
|
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
|
|
|
while( num > 0 )
|
|
|
|
{
|
|
|
|
text->curl = text->curl->prev;
|
|
|
|
num--;
|
2004-10-14 23:37:04 +00:00
|
|
|
}
|
2005-12-12 18:35:15 +00:00
|
|
|
|
|
|
|
if(!undoing)
|
|
|
|
{
|
|
|
|
txt_undo_add_toop(text, UNDO_UNINDENT, txt_get_span(text->lines.first, text->curl), text->curc, txt_get_span(text->lines.first, text->sell), text->selc);
|
|
|
|
}
|
2004-10-14 23:37:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void comment(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
|
|
|
int len, num;
|
2008-07-28 11:05:35 +00:00
|
|
|
char *tmp;
|
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
|
|
|
char add = '#';
|
|
|
|
|
|
|
|
if (!text) return;
|
|
|
|
if (!text->curl) return;
|
2005-12-12 18:35:15 +00:00
|
|
|
if (!text->sell) return;// Need to change this need to check if only one line is selected ot more then one
|
|
|
|
|
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
|
|
|
num = 0;
|
|
|
|
while (TRUE)
|
|
|
|
{
|
|
|
|
tmp= MEM_mallocN(text->curl->len+2, "textline_string");
|
2005-05-13 16:11:28 +00:00
|
|
|
|
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
|
|
|
text->curc = 0;
|
|
|
|
if(text->curc) memcpy(tmp, text->curl->line, text->curc);
|
|
|
|
tmp[text->curc]= add;
|
|
|
|
|
|
|
|
len= text->curl->len - text->curc;
|
|
|
|
if(len>0) memcpy(tmp+text->curc+1, text->curl->line+text->curc, len);
|
|
|
|
tmp[text->curl->len+1]=0;
|
2005-05-13 16:11:28 +00:00
|
|
|
|
2008-07-28 11:05:35 +00:00
|
|
|
make_new_line(text->curl, tmp);
|
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
|
|
|
|
|
|
|
text->curc++;
|
|
|
|
|
|
|
|
txt_make_dirty(text);
|
|
|
|
txt_clean_text(text);
|
|
|
|
|
|
|
|
if(text->curl == text->sell)
|
|
|
|
{
|
|
|
|
text->selc = text->sell->len;
|
|
|
|
break;
|
|
|
|
} else {
|
|
|
|
text->curl = text->curl->next;
|
|
|
|
num++;
|
|
|
|
}
|
|
|
|
}
|
2005-12-12 18:35:15 +00:00
|
|
|
text->curc = 0;
|
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
|
|
|
while( num > 0 )
|
|
|
|
{
|
|
|
|
text->curl = text->curl->prev;
|
|
|
|
num--;
|
|
|
|
}
|
2005-12-12 18:35:15 +00:00
|
|
|
|
|
|
|
if(!undoing)
|
|
|
|
{
|
|
|
|
txt_undo_add_toop(text, UNDO_COMMENT, txt_get_span(text->lines.first, text->curl), text->curc, txt_get_span(text->lines.first, text->sell), text->selc);
|
|
|
|
}
|
2004-10-14 23:37:04 +00:00
|
|
|
}
|
|
|
|
|
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 uncomment(Text *text)
|
2004-10-14 23:37:04 +00:00
|
|
|
{
|
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
|
|
|
int num = 0;
|
2005-12-12 18:35:15 +00:00
|
|
|
char remove = '#';
|
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
|
|
|
|
2004-10-14 23:37:04 +00:00
|
|
|
if (!text) return;
|
|
|
|
if (!text->curl) return;
|
|
|
|
if (!text->sell) return;
|
2005-12-12 18:35:15 +00:00
|
|
|
|
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
|
|
|
while(TRUE)
|
|
|
|
{
|
|
|
|
int i = 0;
|
|
|
|
|
2005-12-12 18:35:15 +00:00
|
|
|
if (text->curl->line[i] == remove)
|
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
|
|
|
{
|
|
|
|
while(i< text->curl->len) {
|
|
|
|
text->curl->line[i]= text->curl->line[i+1];
|
2004-10-14 23:37:04 +00:00
|
|
|
i++;
|
|
|
|
}
|
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
|
|
|
text->curl->len--;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
txt_make_dirty(text);
|
|
|
|
txt_clean_text(text);
|
2004-10-14 23:37:04 +00:00
|
|
|
|
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
|
|
|
if(text->curl == text->sell)
|
|
|
|
{
|
|
|
|
text->selc = text->sell->len;
|
|
|
|
break;
|
|
|
|
} else {
|
|
|
|
text->curl = text->curl->next;
|
|
|
|
num++;
|
2004-10-14 23:37:04 +00:00
|
|
|
}
|
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
|
|
|
|
|
|
|
}
|
2005-12-12 18:35:15 +00:00
|
|
|
text->curc = 0;
|
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
|
|
|
while( num > 0 )
|
|
|
|
{
|
|
|
|
text->curl = text->curl->prev;
|
|
|
|
num--;
|
|
|
|
}
|
2005-12-12 18:35:15 +00:00
|
|
|
|
|
|
|
if(!undoing)
|
|
|
|
{
|
|
|
|
txt_undo_add_toop(text, UNDO_UNCOMMENT, txt_get_span(text->lines.first, text->curl), text->curc, txt_get_span(text->lines.first, text->sell), text->selc);
|
|
|
|
}
|
2004-10-14 23:37:04 +00:00
|
|
|
}
|
|
|
|
|
2010-07-29 22:34:46 +00:00
|
|
|
int setcurr_tab_spaces (Text *text, int space)
|
2004-10-14 23:37:04 +00:00
|
|
|
{
|
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
|
|
|
int i = 0;
|
|
|
|
int test = 0;
|
2010-07-29 22:34:46 +00:00
|
|
|
const char *word = ":";
|
|
|
|
const char *comm = "#";
|
|
|
|
const char indent= (text->flags & TXT_TABSTOSPACES) ? ' ' : '\t';
|
2010-07-26 18:50:38 +00:00
|
|
|
static char *back_words[]= {"return", "break", "continue", "pass", "yield", NULL};
|
2005-04-28 14:37:15 +00:00
|
|
|
if (!text) return 0;
|
|
|
|
if (!text->curl) return 0;
|
2010-07-29 22:34:46 +00:00
|
|
|
|
|
|
|
while (text->curl->line[i] == indent)
|
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
|
|
|
{
|
2010-07-29 22:34:46 +00:00
|
|
|
//we only count those tabs/spaces that are before any text or before the curs;
|
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
|
|
|
if (i == text->curc)
|
|
|
|
{
|
|
|
|
return i;
|
|
|
|
} else {
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(strstr(text->curl->line, word))
|
|
|
|
{
|
|
|
|
//if we find a : then add a tab but not if it is in a comment
|
2008-03-01 12:31:00 +00:00
|
|
|
int a, indent = 0;
|
|
|
|
for(a=0; text->curl->line[a] != '\0'; a++)
|
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
|
|
|
{
|
2008-03-01 12:31:00 +00:00
|
|
|
if (text->curl->line[a]=='#') {
|
|
|
|
break;
|
|
|
|
} else if (text->curl->line[a]==':') {
|
|
|
|
indent = 1;
|
|
|
|
} else if (text->curl->line[a]==']') {
|
|
|
|
indent = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (indent) {
|
2010-07-29 22:34:46 +00:00
|
|
|
i += space;
|
2005-05-13 16:11:28 +00:00
|
|
|
}
|
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
|
|
|
}
|
2004-10-14 23:37:04 +00:00
|
|
|
|
2010-07-26 18:50:38 +00:00
|
|
|
for(test=0; back_words[test]; test++)
|
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
|
|
|
{
|
2010-07-26 18:50:38 +00:00
|
|
|
/* if there are these key words then remove a tab because we are done with the block */
|
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
|
|
|
if(strstr(text->curl->line, back_words[test]) && i > 0)
|
|
|
|
{
|
|
|
|
if(strcspn(text->curl->line, back_words[test]) < strcspn(text->curl->line, comm))
|
|
|
|
{
|
2010-07-29 22:34:46 +00:00
|
|
|
i -= space;
|
2004-10-14 23:37:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
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
|
|
|
return i;
|
2004-10-14 23:37:04 +00:00
|
|
|
}
|
2005-04-28 14:37:15 +00:00
|
|
|
|
2008-08-04 23:01:47 +00:00
|
|
|
/*********************************/
|
|
|
|
/* Text marker utility functions */
|
|
|
|
/*********************************/
|
|
|
|
|
|
|
|
/* Creates and adds a marker to the list maintaining sorted order */
|
2008-08-31 16:23:31 +00:00
|
|
|
void txt_add_marker(Text *text, TextLine *line, int start, int end, char color[4], int group, int flags) {
|
2008-08-04 23:01:47 +00:00
|
|
|
TextMarker *tmp, *marker;
|
|
|
|
|
|
|
|
marker= MEM_mallocN(sizeof(TextMarker), "text_marker");
|
|
|
|
|
|
|
|
marker->lineno= txt_get_span(text->lines.first, line);
|
|
|
|
marker->start= MIN2(start, end);
|
|
|
|
marker->end= MAX2(start, end);
|
2008-08-24 13:30:35 +00:00
|
|
|
marker->group= group;
|
2008-08-04 23:01:47 +00:00
|
|
|
marker->flags= flags;
|
|
|
|
|
2008-08-31 16:23:31 +00:00
|
|
|
marker->color[0]= color[0];
|
|
|
|
marker->color[1]= color[1];
|
|
|
|
marker->color[2]= color[2];
|
|
|
|
marker->color[3]= color[3];
|
2008-08-04 23:01:47 +00:00
|
|
|
|
|
|
|
for (tmp=text->markers.last; tmp; tmp=tmp->prev)
|
|
|
|
if (tmp->lineno < marker->lineno || (tmp->lineno==marker->lineno && tmp->start < marker->start))
|
|
|
|
break;
|
|
|
|
|
|
|
|
if (tmp) BLI_insertlinkafter(&text->markers, tmp, marker);
|
|
|
|
else BLI_addhead(&text->markers, marker);
|
|
|
|
}
|
|
|
|
|
2008-08-24 13:30:35 +00:00
|
|
|
/* Returns the first matching marker on the specified line between two points.
|
|
|
|
If the group or flags fields are non-zero the returned flag must be in the
|
|
|
|
specified group and have at least the specified flags set. */
|
|
|
|
TextMarker *txt_find_marker_region(Text *text, TextLine *line, int start, int end, int group, int flags) {
|
2008-08-04 23:01:47 +00:00
|
|
|
TextMarker *marker, *next;
|
|
|
|
int lineno= txt_get_span(text->lines.first, line);
|
|
|
|
|
|
|
|
for (marker=text->markers.first; marker; marker=next) {
|
|
|
|
next= marker->next;
|
|
|
|
|
2008-08-24 13:30:35 +00:00
|
|
|
if (group && marker->group != group) continue;
|
|
|
|
else if ((marker->flags & flags) != flags) continue;
|
2008-08-04 23:01:47 +00:00
|
|
|
else if (marker->lineno < lineno) continue;
|
|
|
|
else if (marker->lineno > lineno) break;
|
|
|
|
|
|
|
|
if ((marker->start==marker->end && start<=marker->start && marker->start<=end) ||
|
|
|
|
(marker->start<end && marker->end>start))
|
|
|
|
return marker;
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2008-08-24 13:30:35 +00:00
|
|
|
/* Clears all markers on the specified line between two points. If the group or
|
|
|
|
flags fields are non-zero the returned flag must be in the specified group
|
|
|
|
and have at least the specified flags set. */
|
|
|
|
short txt_clear_marker_region(Text *text, TextLine *line, int start, int end, int group, int flags) {
|
2008-08-04 23:01:47 +00:00
|
|
|
TextMarker *marker, *next;
|
|
|
|
int lineno= txt_get_span(text->lines.first, line);
|
2008-08-16 14:38:08 +00:00
|
|
|
short cleared= 0;
|
2008-08-04 23:01:47 +00:00
|
|
|
|
|
|
|
for (marker=text->markers.first; marker; marker=next) {
|
|
|
|
next= marker->next;
|
|
|
|
|
2008-08-24 13:30:35 +00:00
|
|
|
if (group && marker->group != group) continue;
|
|
|
|
else if ((marker->flags & flags) != flags) continue;
|
2008-08-04 23:01:47 +00:00
|
|
|
else if (marker->lineno < lineno) continue;
|
|
|
|
else if (marker->lineno > lineno) break;
|
|
|
|
|
|
|
|
if ((marker->start==marker->end && start<=marker->start && marker->start<=end) ||
|
2008-08-16 14:38:08 +00:00
|
|
|
(marker->start<end && marker->end>start)) {
|
2008-08-04 23:01:47 +00:00
|
|
|
BLI_freelinkN(&text->markers, marker);
|
2008-08-16 14:38:08 +00:00
|
|
|
cleared= 1;
|
|
|
|
}
|
2008-08-04 23:01:47 +00:00
|
|
|
}
|
2008-08-16 14:38:08 +00:00
|
|
|
return cleared;
|
2008-08-04 23:01:47 +00:00
|
|
|
}
|
|
|
|
|
2008-08-24 13:30:35 +00:00
|
|
|
/* Clears all markers in the specified group (if given) with at least the
|
|
|
|
specified flags set. Useful for clearing temporary markers (group=0,
|
|
|
|
flags=TMARK_TEMP) */
|
|
|
|
short txt_clear_markers(Text *text, int group, int flags) {
|
2008-08-04 23:01:47 +00:00
|
|
|
TextMarker *marker, *next;
|
2008-08-16 14:38:08 +00:00
|
|
|
short cleared= 0;
|
2008-08-04 23:01:47 +00:00
|
|
|
|
|
|
|
for (marker=text->markers.first; marker; marker=next) {
|
|
|
|
next= marker->next;
|
|
|
|
|
2008-08-24 13:30:35 +00:00
|
|
|
if ((!group || marker->group==group) &&
|
|
|
|
(marker->flags & flags) == flags) {
|
2008-08-04 23:01:47 +00:00
|
|
|
BLI_freelinkN(&text->markers, marker);
|
2008-08-16 14:38:08 +00:00
|
|
|
cleared= 1;
|
|
|
|
}
|
2008-08-04 23:01:47 +00:00
|
|
|
}
|
2008-08-16 14:38:08 +00:00
|
|
|
return cleared;
|
2008-08-04 23:01:47 +00:00
|
|
|
}
|
|
|
|
|
2008-08-06 13:46:44 +00:00
|
|
|
/* Finds the marker at the specified line and cursor position with at least the
|
2008-08-24 13:30:35 +00:00
|
|
|
specified flags set in the given group (if non-zero). */
|
|
|
|
TextMarker *txt_find_marker(Text *text, TextLine *line, int curs, int group, int flags) {
|
2008-08-04 23:01:47 +00:00
|
|
|
TextMarker *marker;
|
|
|
|
int lineno= txt_get_span(text->lines.first, line);
|
|
|
|
|
|
|
|
for (marker=text->markers.first; marker; marker=marker->next) {
|
2008-08-24 13:30:35 +00:00
|
|
|
if (group && marker->group != group) continue;
|
|
|
|
else if ((marker->flags & flags) != flags) continue;
|
2008-08-04 23:01:47 +00:00
|
|
|
else if (marker->lineno < lineno) continue;
|
|
|
|
else if (marker->lineno > lineno) break;
|
|
|
|
|
|
|
|
if (marker->start <= curs && curs <= marker->end)
|
|
|
|
return marker;
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2008-08-24 13:30:35 +00:00
|
|
|
/* Finds the previous marker in the same group. If no other is found, the same
|
|
|
|
marker will be returned */
|
2008-08-04 23:01:47 +00:00
|
|
|
TextMarker *txt_prev_marker(Text *text, TextMarker *marker) {
|
|
|
|
TextMarker *tmp= marker;
|
|
|
|
while (tmp) {
|
|
|
|
if (tmp->prev) tmp= tmp->prev;
|
|
|
|
else tmp= text->markers.last;
|
2008-08-24 13:30:35 +00:00
|
|
|
if (tmp->group == marker->group)
|
2008-08-04 23:01:47 +00:00
|
|
|
return tmp;
|
|
|
|
}
|
|
|
|
return NULL; /* Only if marker==NULL */
|
|
|
|
}
|
|
|
|
|
2008-08-24 13:30:35 +00:00
|
|
|
/* Finds the next marker in the same group. If no other is found, the same
|
|
|
|
marker will be returned */
|
2008-08-04 23:01:47 +00:00
|
|
|
TextMarker *txt_next_marker(Text *text, TextMarker *marker) {
|
|
|
|
TextMarker *tmp= marker;
|
|
|
|
while (tmp) {
|
|
|
|
if (tmp->next) tmp= tmp->next;
|
|
|
|
else tmp= text->markers.first;
|
2008-08-24 13:30:35 +00:00
|
|
|
if (tmp->group == marker->group)
|
2008-08-06 13:46:44 +00:00
|
|
|
return tmp;
|
|
|
|
}
|
|
|
|
return NULL; /* Only if marker==NULL */
|
|
|
|
}
|
2009-09-22 16:23:46 +00:00
|
|
|
|
|
|
|
|
|
|
|
/*******************************/
|
|
|
|
/* Character utility functions */
|
|
|
|
/*******************************/
|
|
|
|
|
|
|
|
int text_check_bracket(char ch)
|
|
|
|
{
|
|
|
|
int a;
|
|
|
|
char opens[] = "([{";
|
|
|
|
char close[] = ")]}";
|
|
|
|
|
|
|
|
for(a=0; a<(sizeof(opens)-1); a++) {
|
|
|
|
if(ch==opens[a])
|
|
|
|
return a+1;
|
|
|
|
else if(ch==close[a])
|
|
|
|
return -(a+1);
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int text_check_delim(char ch)
|
|
|
|
{
|
|
|
|
int a;
|
|
|
|
char delims[] = "():\"\' ~!%^&*-+=[]{};/<>|.#\t,";
|
|
|
|
|
|
|
|
for(a=0; a<(sizeof(delims)-1); a++) {
|
|
|
|
if(ch==delims[a])
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int text_check_digit(char ch)
|
|
|
|
{
|
|
|
|
if(ch < '0') return 0;
|
|
|
|
if(ch <= '9') return 1;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int text_check_identifier(char ch)
|
|
|
|
{
|
|
|
|
if(ch < '0') return 0;
|
|
|
|
if(ch <= '9') return 1;
|
|
|
|
if(ch < 'A') return 0;
|
|
|
|
if(ch <= 'Z' || ch == '_') return 1;
|
|
|
|
if(ch < 'a') return 0;
|
|
|
|
if(ch <= 'z') return 1;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int text_check_whitespace(char ch)
|
|
|
|
{
|
|
|
|
if(ch == ' ' || ch == '\t' || ch == '\r' || ch == '\n')
|
|
|
|
return 1;
|
|
|
|
return 0;
|
|
|
|
}
|