mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-14 23:12:31 +00:00
a040c0bc6f
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@314 a592a061-630c-0410-9148-cb99ea01b6c8
64 lines
1.1 KiB
C++
64 lines
1.1 KiB
C++
// -*- C++ -*-
|
|
/* This file is part of
|
|
* ======================================================
|
|
*
|
|
* LyX, The Document Processor
|
|
*
|
|
* Copyright (C) 1997-1999 The LyX Team.
|
|
*
|
|
* ====================================================== */
|
|
|
|
#ifndef BACK_STACK_H
|
|
#define BACK_STACK_H
|
|
|
|
#include <stack>
|
|
using std::stack;
|
|
|
|
#include "LString.h"
|
|
|
|
// Created by Alejandro Aguilar Sierra, 970806
|
|
|
|
/** Utility to get back from a reference or from a child document.
|
|
*/
|
|
class BackStack {
|
|
private:
|
|
///
|
|
struct BackStackItem {
|
|
BackStackItem(string const & f, int xx, int yy)
|
|
: fname(f), x(xx), y(yy) {}
|
|
///
|
|
//void set(string f, int xx, int yy) {
|
|
// fname = f; x = xx; y = yy;
|
|
//}
|
|
/// Filename
|
|
string fname;
|
|
/// Cursor x-position
|
|
int x;
|
|
/// Cursor y-position
|
|
int y;
|
|
};
|
|
public:
|
|
///
|
|
void push(string f, int x, int y) {
|
|
BackStackItem bit(f, x, y);
|
|
stakk.push(bit);
|
|
}
|
|
///
|
|
string pop(int * x, int * y) {
|
|
BackStackItem bit = stakk.top();
|
|
*x = bit.x;
|
|
*y = bit.y;
|
|
stakk.pop();
|
|
return bit.fname;
|
|
}
|
|
///
|
|
bool empty() const {
|
|
return stakk.empty();
|
|
}
|
|
private:
|
|
///
|
|
stack<BackStackItem> stakk;
|
|
};
|
|
|
|
#endif
|