mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
some reindentation, revert workarea xpos++, constify, remove all traces of LyXParagraph::Clone
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1989 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
352479f603
commit
76ca534828
@ -902,7 +902,8 @@ Inset * BufferView::Pimpl::checkInsetHit(LyXText * text, int & x, int & y,
|
||||
#if 0
|
||||
if (move_cursor && (tmpinset != bv_->theLockingInset()))
|
||||
#endif
|
||||
text->SetCursor(bv_, cursor.par(),cursor.pos()-1,true);
|
||||
text->SetCursor(bv_, cursor.par(),
|
||||
cursor.pos() - 1, true);
|
||||
x = x - start_x;
|
||||
// The origin of an inset is on the baseline
|
||||
y = y_tmp - (text->cursor.y());
|
||||
|
@ -1,5 +1,12 @@
|
||||
2001-05-08 Lars Gullik Bjønnes <larsbj@birdstep.com>
|
||||
|
||||
* paragraph.C (writeFile): reindent
|
||||
(Erase): reindent
|
||||
|
||||
* WorkArea.h: revert the xpos + etc changes.
|
||||
|
||||
* CutAndPaste.C (SwitchLayoutsBetweenClasses): constify name and s
|
||||
|
||||
* lyxparagraph.[Ch]: add copy constructor, remove Clone
|
||||
|
||||
* CutAndPaste.C (copySelection): use LyXParagraph copy constructor
|
||||
|
@ -159,21 +159,13 @@ bool CutAndPaste::copySelection(LyXParagraph * startpar, LyXParagraph * endpar,
|
||||
// copy more than one paragraph
|
||||
// clone the paragraphs within the selection
|
||||
LyXParagraph * tmppar = startpar;
|
||||
#if 0
|
||||
buf = tmppar->Clone();
|
||||
#else
|
||||
buf = new LyXParagraph(*tmppar);
|
||||
#endif
|
||||
LyXParagraph * tmppar2 = buf;
|
||||
|
||||
while (tmppar != endpar
|
||||
&& tmppar->next()) {
|
||||
tmppar = tmppar->next();
|
||||
#if 0
|
||||
tmppar2->next(tmppar->Clone());
|
||||
#else
|
||||
tmppar2->next(new LyXParagraph(*tmppar));
|
||||
#endif
|
||||
tmppar2->next()->previous(tmppar2);
|
||||
tmppar2 = tmppar2->next();
|
||||
}
|
||||
@ -210,11 +202,8 @@ bool CutAndPaste::pasteSelection(LyXParagraph ** par, LyXParagraph ** endpar,
|
||||
// There are two cases: cutbuffer only one paragraph or many
|
||||
if (!buf->next()) {
|
||||
// only within a paragraph
|
||||
#if 0
|
||||
LyXParagraph * tmpbuf = buf->Clone();
|
||||
#else
|
||||
LyXParagraph * tmpbuf = new LyXParagraph(*buf);
|
||||
#endif
|
||||
|
||||
// Some provisions should be done here for checking
|
||||
// if we are inserting at the beginning of a
|
||||
// paragraph. If there are a space at the beginning
|
||||
@ -243,19 +232,12 @@ bool CutAndPaste::pasteSelection(LyXParagraph ** par, LyXParagraph ** endpar,
|
||||
|
||||
// make a copy of the simple cut_buffer
|
||||
LyXParagraph * tmpbuf = buf;
|
||||
#if 0
|
||||
LyXParagraph * simple_cut_clone = tmpbuf->Clone();
|
||||
#else
|
||||
LyXParagraph * simple_cut_clone = new LyXParagraph(*tmpbuf);
|
||||
#endif
|
||||
LyXParagraph * tmpbuf2 = simple_cut_clone;
|
||||
|
||||
while (tmpbuf->next()) {
|
||||
tmpbuf = tmpbuf->next();
|
||||
#if 0
|
||||
tmpbuf2->next(tmpbuf->Clone());
|
||||
#else
|
||||
tmpbuf2->next(new LyXParagraph(*tmpbuf));
|
||||
#endif
|
||||
tmpbuf2->next()->previous(tmpbuf2);
|
||||
tmpbuf2 = tmpbuf2->next();
|
||||
}
|
||||
@ -343,7 +325,8 @@ int CutAndPaste::SwitchLayoutsBetweenClasses(LyXTextClassList::size_type c1,
|
||||
return ret;
|
||||
|
||||
while (par) {
|
||||
string name = textclasslist.NameOfLayout(c1, par->layout);
|
||||
string const name = textclasslist.NameOfLayout(c1,
|
||||
par->layout);
|
||||
int lay = 0;
|
||||
pair<bool, LyXTextClass::LayoutList::size_type> pp =
|
||||
textclasslist.NumberOfLayout(c2, name);
|
||||
@ -357,7 +340,7 @@ int CutAndPaste::SwitchLayoutsBetweenClasses(LyXTextClassList::size_type c1,
|
||||
|
||||
if (name != textclasslist.NameOfLayout(c2, par->layout)) {
|
||||
++ret;
|
||||
string s = _("Layout had to be changed from\n")
|
||||
string const s = _("Layout had to be changed from\n")
|
||||
+ name + _(" to ")
|
||||
+ textclasslist.NameOfLayout(c2, par->layout)
|
||||
+ _("\nbecause of class conversion from\n")
|
||||
|
@ -35,17 +35,17 @@ public:
|
||||
///
|
||||
int workWidth() const { return work_area->w; }
|
||||
///
|
||||
//unsigned int width() const { return work_area->w + scrollbar->w; }
|
||||
unsigned int width() const { return backgroundbox->w + 15; }
|
||||
unsigned int width() const { return work_area->w + scrollbar->w; }
|
||||
//unsigned int width() const { return backgroundbox->w + 15; }
|
||||
///
|
||||
//unsigned int height() const { return work_area->h; }
|
||||
unsigned int height() const { return backgroundbox->h; }
|
||||
unsigned int height() const { return work_area->h; }
|
||||
//unsigned int height() const { return backgroundbox->h; }
|
||||
///
|
||||
//int xpos() const { return work_area->x; }
|
||||
int xpos() const { return backgroundbox->x; }
|
||||
int xpos() const { return work_area->x; }
|
||||
//int xpos() const { return backgroundbox->x; }
|
||||
///
|
||||
//int ypos() const { return work_area->y; }
|
||||
int ypos() const { return backgroundbox->y; }
|
||||
int ypos() const { return work_area->y; }
|
||||
//int ypos() const { return backgroundbox->y; }
|
||||
///
|
||||
void resize(int xpos, int ypos, int width, int height);
|
||||
///
|
||||
|
@ -177,24 +177,7 @@ void InsetText::Read(Buffer const * buf, LyXLex & lex)
|
||||
char depth = 0; // signed or unsigned?
|
||||
LyXFont font(LyXFont::ALL_INHERIT);
|
||||
|
||||
#if 0
|
||||
// delete all instances of LyXText before deleting the paragraps used
|
||||
// by it.
|
||||
for (Cache::iterator cit = cache.begin(); cit != cache.end(); ++cit) {
|
||||
delete (*cit).second;
|
||||
(*cit).second = 0;
|
||||
}
|
||||
|
||||
while (par) {
|
||||
LyXParagraph * tmp = par->next();
|
||||
delete par;
|
||||
par = tmp;
|
||||
}
|
||||
|
||||
par = new LyXParagraph;
|
||||
#else
|
||||
clear();
|
||||
#endif
|
||||
|
||||
while (lex.IsOK()) {
|
||||
lex.nextToken();
|
||||
@ -1487,20 +1470,12 @@ void InsetText::SetParagraphData(LyXParagraph * p)
|
||||
par = tmp;
|
||||
}
|
||||
|
||||
#if 0
|
||||
par = p->Clone();
|
||||
#else
|
||||
par = new LyXParagraph(*p);
|
||||
#endif
|
||||
par->SetInsetOwner(this);
|
||||
LyXParagraph * np = par;
|
||||
while (p->next()) {
|
||||
p = p->next();
|
||||
#if 0
|
||||
np->next(p->Clone());
|
||||
#else
|
||||
np->next(new LyXParagraph(*p));
|
||||
#endif
|
||||
np->next()->previous(np);
|
||||
np = np->next();
|
||||
np->SetInsetOwner(this);
|
||||
|
@ -132,10 +132,6 @@ public:
|
||||
///
|
||||
LyXParagraph * TeXEnvironment(Buffer const *, BufferParams const &,
|
||||
std::ostream &, TexRow & texrow);
|
||||
#if 0
|
||||
///
|
||||
LyXParagraph * Clone() const;
|
||||
#endif
|
||||
///
|
||||
bool HasSameLayout(LyXParagraph const * par) const;
|
||||
|
||||
|
@ -1049,40 +1049,6 @@ int LyXParagraph::StripLeadingSpaces(LyXTextClassList::size_type tclass)
|
||||
}
|
||||
|
||||
|
||||
#if 0
|
||||
LyXParagraph * LyXParagraph::Clone() const
|
||||
{
|
||||
// create a new paragraph
|
||||
LyXParagraph * result = new LyXParagraph;
|
||||
|
||||
result->MakeSameLayout(this);
|
||||
|
||||
// this is because of the dummy layout of the paragraphs that
|
||||
// follow footnotes
|
||||
result->layout = layout;
|
||||
|
||||
result->inset_owner = inset_owner;
|
||||
|
||||
// ale970302
|
||||
if (bibkey)
|
||||
result->bibkey = static_cast<InsetBibKey *>
|
||||
(bibkey->Clone(*current_view->buffer()));
|
||||
else
|
||||
result->bibkey = 0;
|
||||
|
||||
// copy everything behind the break-position to the new paragraph
|
||||
|
||||
result->text = text;
|
||||
result->fontlist = fontlist;
|
||||
result->insetlist = insetlist;
|
||||
for (InsetList::iterator it = result->insetlist.begin();
|
||||
it != result->insetlist.end(); ++it)
|
||||
(*it).inset = (*it).inset->Clone(*current_view->buffer());
|
||||
return result;
|
||||
}
|
||||
#endif
|
||||
|
||||
|
||||
bool LyXParagraph::HasSameLayout(LyXParagraph const * par) const
|
||||
{
|
||||
return
|
||||
|
@ -2690,11 +2690,7 @@ Undo * LyXText::CreateUndo(Buffer * buf, Undo::undo_kind kind,
|
||||
if (start && end && (start != end->next()) &&
|
||||
((before != behind) || (!before && !behind))) {
|
||||
LyXParagraph * tmppar = start;
|
||||
#if 0
|
||||
LyXParagraph * tmppar2 = tmppar->Clone();
|
||||
#else
|
||||
LyXParagraph * tmppar2 = new LyXParagraph(*tmppar);
|
||||
#endif
|
||||
tmppar2->id(tmppar->id());
|
||||
|
||||
// a memory optimization: Just store the layout information
|
||||
@ -2708,11 +2704,7 @@ Undo * LyXText::CreateUndo(Buffer * buf, Undo::undo_kind kind,
|
||||
|
||||
while (tmppar != end && tmppar->next()) {
|
||||
tmppar = tmppar->next();
|
||||
#if 0
|
||||
tmppar2->next(tmppar->Clone());
|
||||
#else
|
||||
tmppar2->next(new LyXParagraph(*tmppar));
|
||||
#endif
|
||||
tmppar2->next()->id(tmppar->id());
|
||||
// a memory optimization: Just store the layout
|
||||
// information when only edit
|
||||
|
@ -10,12 +10,12 @@
|
||||
|
||||
#include <config.h>
|
||||
|
||||
#include "undo.h"
|
||||
|
||||
#ifdef __GNUG__
|
||||
#pragma implementation
|
||||
#endif
|
||||
|
||||
#include "undo.h"
|
||||
|
||||
|
||||
Undo::Undo(undo_kind kind_arg,
|
||||
int number_before_arg, int number_behind_arg,
|
||||
|
@ -16,9 +16,10 @@
|
||||
#pragma interface
|
||||
#endif
|
||||
|
||||
#include <list>
|
||||
|
||||
#include "lyxparagraph.h"
|
||||
|
||||
#include <list>
|
||||
|
||||
///
|
||||
class Undo {
|
||||
|
Loading…
Reference in New Issue
Block a user