mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 21:49:51 +00:00
44cd0fc9a1
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7862 a592a061-630c-0410-9148-cb99ea01b6c8
48 lines
1013 B
C
48 lines
1013 B
C
/**
|
|
* \file FormShowFile.C
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Herbert Voß
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#include "FormShowFile.h"
|
|
#include "ControlShowFile.h"
|
|
#include "forms/form_browser.h"
|
|
|
|
#include "xformsBC.h"
|
|
|
|
#include "lyx_forms.h"
|
|
|
|
|
|
using std::string;
|
|
|
|
|
|
FormShowFile::FormShowFile(Dialog & parent)
|
|
: FormController<ControlShowFile, FormBrowser>(parent, _("Show File"))
|
|
{}
|
|
|
|
|
|
void FormShowFile::update()
|
|
{
|
|
fl_hide_object(dialog_->button_update);
|
|
fl_clear_browser(dialog_->browser);
|
|
|
|
// courier medium
|
|
fl_set_browser_fontstyle(dialog_->browser,FL_FIXED_STYLE);
|
|
|
|
string const title = controller().getFileName();
|
|
setTitle(title);
|
|
|
|
string const contents = controller().getFileContents();
|
|
if (contents.empty())
|
|
fl_add_browser_line(dialog_->browser,
|
|
"Error -> Cannot load file!");
|
|
else
|
|
fl_add_browser_line(dialog_->browser, contents.c_str());
|
|
}
|