lyx_mirror/src/frontends/controllers/ControlRef.C
Lars Gullik Bjønnes 8c93f63b48 * filetools.[Ch]: Make functions that start with a capital
letter start with a lower letter.
	* All other .C and .h in the cs: adjust for above change


git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@13603 a592a061-630c-0410-9148-cb99ea01b6c8
2006-04-08 22:31:11 +00:00

91 lines
1.8 KiB
C

/**
* \file ControlRef.C
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* \author Angus Leeming
*
* Full author contact details are available in file CREDITS.
*/
#include <config.h>
#include "ControlRef.h"
#include "buffer.h"
#include "bufferlist.h"
#include "funcrequest.h"
#include "support/filetools.h" // MakeAbsPath, MakeDisplayPath
using std::vector;
using std::string;
extern BufferList bufferlist;
namespace lyx {
using support::makeAbsPath;
using support::makeDisplayPath;
namespace frontend {
ControlRef::ControlRef(Dialog & d)
: ControlCommand(d, "ref")
{}
vector<string> const ControlRef::getLabelList(string const & name) const
{
Buffer const & buf = *bufferlist.getBuffer(makeAbsPath(name));
vector<string> list;
buf.getLabelList(list);
return list;
}
void ControlRef::gotoRef(string const & ref)
{
kernel().dispatch(FuncRequest(LFUN_BOOKMARK_SAVE, "0"));
kernel().dispatch(FuncRequest(LFUN_LABEL_GOTO, ref));
}
void ControlRef::gotoBookmark()
{
kernel().dispatch(FuncRequest(LFUN_BOOKMARK_GOTO, "0"));
}
vector<string> const ControlRef::getBufferList() const
{
vector<string> buffers = bufferlist.getFileNames();
for (vector<string>::iterator it = buffers.begin();
it != buffers.end(); ++it) {
*it = makeDisplayPath(*it);
}
return buffers;
}
int ControlRef::getBufferNum() const
{
vector<string> buffers = bufferlist.getFileNames();
string const name = kernel().buffer().fileName();
vector<string>::const_iterator cit =
find(buffers.begin(), buffers.end(), name);
if (cit == buffers.end())
return 0;
return int(cit - buffers.begin());
}
string const ControlRef::getBufferName(int num) const
{
return bufferlist.getFileNames()[num];
}
} // namespace frontend
} // namespace lyx