lyx_mirror/src/frontends/controllers/ControlShowFile.C

43 lines
634 B
C++
Raw Normal View History

/**
* \file ControlShowFile.C
* See the file COPYING.
*
* \author Herbert Voss
*
* Full author contact details are available in file CREDITS
*/
#include <config.h>
#ifdef __GNUG__
#pragma implementation
#endif
#include "ControlShowFile.h"
#include "support/filetools.h" // FileSearch
ControlShowFile::ControlShowFile(LyXView & lv, Dialogs & d)
: ControlDialogBI(lv, d)
{}
void ControlShowFile::showFile(string const & file)
{
filename_ = file;
show();
}
string ControlShowFile::getFileContents()
{
return GetFileContents(filename_);
}
string ControlShowFile::getFileName()
{
return OnlyFilename(filename_);
}