This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
deb-goldedplus/golded3/geedit3.cpp

106 lines
2.9 KiB
C++
Raw Normal View History

2000-02-25 11:04:07 +00:00
// ------------------------------------------------------------------
// GoldED+
// Copyright (C) 1990-1999 Odinn Sorensen
// Copyright (C) 1999-2000 Alexander S. Aganichev
// ------------------------------------------------------------------
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License as
// published by the Free Software Foundation; either version 2 of the
// License, or (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston,
// MA 02111-1307 USA
// ------------------------------------------------------------------
// $Id$
// ------------------------------------------------------------------
// OS/2 clipboard to/from edit paste buffer.
// ------------------------------------------------------------------
#include <golded.h>
#include <geedit.h>
#include <gutlclip.h>
2005-10-11 01:54:40 +00:00
#if defined(__USE_ALLOCA__)
#include <malloc.h>
#endif
2000-02-25 11:04:07 +00:00
void IEclass::Clip2Buf() {
gclipbrd clipbrd;
if(not clipbrd.openread())
return;
int tabsz = CFG->disptabsize ? CFG->disptabsize : 1;
2005-10-11 01:54:40 +00:00
#if defined(__USE_ALLOCA__)
char *spaces = (char*)alloca(tabsz+1);
#else
2000-02-25 11:04:07 +00:00
__extension__ char spaces[tabsz+1];
#endif
2000-02-25 11:04:07 +00:00
memset(spaces, ' ', tabsz);
spaces[tabsz] = NUL;
// Allocate paragraph read buffer
2001-01-28 15:13:00 +00:00
size_t buf_len = EDIT_PARABUFLEN;
2000-02-25 11:04:07 +00:00
char *buf = (char *)throw_malloc(EDIT_PARABUFLEN);
Line *__line = NULL;
Undo->undo_enabled = NO;
2000-02-25 11:04:07 +00:00
// Read paragraphs
while(clipbrd.read(buf, EDIT_PARABUFLEN-6)) {
2001-01-28 15:13:00 +00:00
size_t read_len = strlen(buf);
2000-02-25 11:04:07 +00:00
// Replace tabs
char *ht = buf;
while((ht = strchr(ht, '\t')) != NULL) {
int rposn = ht-buf;
int rstart = rposn%tabsz+1;
*ht = ' ';
2001-01-28 15:13:00 +00:00
if(tabsz > rstart) {
if((read_len + tabsz - rstart) >= (buf_len - 6)) {
buf_len += tabsz;
buf = (char*)throw_realloc(buf, buf_len);
}
2000-02-25 11:04:07 +00:00
strins(spaces+rstart, buf, rposn);
2001-01-28 15:13:00 +00:00
}
2000-02-25 11:04:07 +00:00
}
// Copy the paragraph to the new line and retype it
2000-03-22 17:59:18 +00:00
__line = insertlinebelow(__line, buf);
2000-02-25 11:04:07 +00:00
if(Edit__pastebuf == NULL)
2000-03-22 17:59:18 +00:00
Edit__pastebuf = __line;
setlinetype(__line);
2000-02-25 11:04:07 +00:00
}
Undo->undo_enabled = YES;
throw_free(buf);
clipbrd.close();
}
void IEclass::Buf2Clip() {
gclipbrd clipbrd;
Line *_bufline;
std::string clipdata;
2000-02-25 11:04:07 +00:00
for(_bufline = Edit__pastebuf; _bufline; _bufline = _bufline->next)
2000-03-22 17:59:18 +00:00
if(not _bufline->txt.empty()) {
clipdata += _bufline->txt;
if(*(clipdata.end()-1) == '\n')
clipdata.replace(clipdata.end()-1, clipdata.end(), "\r\n");
2000-02-25 11:04:07 +00:00
}
2000-03-22 17:59:18 +00:00
clipbrd.writeclipbrd(clipdata.c_str());
2000-02-25 11:04:07 +00:00
}