lyx_mirror/src/frontends/gtk/ghelpers.C

53 lines
1.1 KiB
C++
Raw Normal View History

/**
* \file ghelpers.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 "ghelpers.h"
#include "debug.h"
#include "support/filetools.h"
#include "support/path_defines.h"
using std::string;
namespace lyx {
namespace frontend {
string const findGladeFile(string const & name)
{
// First, search in the installation directories.
string filename =
lyx::support::LibFileSearch("glade", name, "glade");
if (!filename.empty())
return filename;
// Second, search in the src tree.
string const dir =
lyx::support::AddPath(lyx::support::top_srcdir(),
"src/frontends/gtk/glade");
filename = lyx::support::ChangeExtension(name, ".glade");
filename = lyx::support::AddName(dir, filename);
if (!lyx::support::IsFileReadable(filename)) {
lyxerr << "Unable to find glade file \"" << name
<< "\". libglade is going to crash..." << std::endl;
}
return filename;
}
} // namespace frontend
} // namespace lyx