mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-24 10:40:48 +00:00
ec8da0035d
Ok, Ok, I know this touches a lot of files, but the benefits are worth the huge re-compilation now. Trust me. Would I lie to you? Actually, this also fixes a bug in ControlInset, so you'd have had to recompile 31 files anyway. Happy now? git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3391 a592a061-630c-0410-9148-cb99ea01b6c8
46 lines
843 B
C
46 lines
843 B
C
/**
|
|
* \file ControlShowFile.C
|
|
* Copyright 2001 The LyX Team.
|
|
* See the file COPYING.
|
|
*
|
|
* \author Herbert Voss <voss@perce.de>
|
|
*/
|
|
|
|
#include <config.h>
|
|
#include <fstream>
|
|
|
|
#ifdef __GNUG__
|
|
#pragma implementation
|
|
#endif
|
|
|
|
#include "ViewBase.h"
|
|
#include "ButtonControllerBase.h"
|
|
#include "ControlShowFile.h"
|
|
#include "Dialogs.h"
|
|
#include "LyXView.h"
|
|
#include "BufferView.h"
|
|
#include "gettext.h"
|
|
#include "support/filetools.h" // FileSearch
|
|
|
|
ControlShowFile::ControlShowFile(LyXView & lv, Dialogs & d)
|
|
: ControlDialogBI(lv, d)
|
|
{
|
|
d_.showFile.connect(SigC::slot(this, &ControlShowFile::showFile));
|
|
}
|
|
|
|
void ControlShowFile::showFile(string const & file)
|
|
{
|
|
filename_ = file;
|
|
show();
|
|
}
|
|
|
|
string ControlShowFile::getFileContents()
|
|
{
|
|
return GetFileContents(filename_);
|
|
}
|
|
|
|
string ControlShowFile::getFileName()
|
|
{
|
|
return OnlyFilename(filename_);
|
|
}
|