]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/controllers/ControlShowFile.C
fix crash due to invalidated iterator
[lyx.git] / src / frontends / controllers / ControlShowFile.C
index 9d5e0b5ce66f4b4cb537b3632f84846c43e7a328..6ffe52a18e805e2fce0a864e756a1829b106601f 100644 (file)
@@ -1,42 +1,43 @@
 /**
  * \file ControlShowFile.C
- * Copyright 2001 The LyX Team.
- * See the file COPYING.
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- * \author Herbert Voss <voss@perce.de>
+ * \author Herbert Voß
+ *
+ * Full author contact details are available in file CREDITS.
  */
 
 #include <config.h>
 
-#ifdef __GNUG__
-#pragma implementation
-#endif
-
 #include "ControlShowFile.h"
-#include "ViewBase.h"
-#include "ButtonControllerBase.h"
-#include "Dialogs.h"
-#include "frontends/LyXView.h"
-#include "BufferView.h"
-#include "gettext.h"
+#include "support/filetools.h"
+
+using std::string;
+
+namespace lyx {
 
-#include "support/filetools.h" // FileSearch
+using support::GetFileContents;
+using support::OnlyFilename;
 
-#include <boost/bind.hpp>
+namespace frontend {
 
-#include <fstream>
 
-ControlShowFile::ControlShowFile(LyXView & lv, Dialogs & d)
-       : ControlDialogBI(lv, d)
+ControlShowFile::ControlShowFile(Dialog & parent)
+       : Dialog::Controller(parent)
+{}
+
+
+bool ControlShowFile::initialiseParams(string const & data)
 {
-       d_.showFile = boost::bind(&ControlShowFile::showFile, this, _1);
+       filename_ = data;
+       return true;
 }
 
 
-void ControlShowFile::showFile(string const & file)
+void ControlShowFile::clearParams()
 {
-       filename_ = file;
-       show();
+       filename_.erase();
 }
 
 
@@ -50,3 +51,6 @@ string ControlShowFile::getFileName()
 {
        return OnlyFilename(filename_);
 }
+
+} // namespace frontend
+} // namespace lyx