mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
53 lines
1.0 KiB
C++
53 lines
1.0 KiB
C++
|
/**
|
||
|
* \file FileDialog.C
|
||
|
* This file is part of LyX, the document processor.
|
||
|
* Licence details can be found in the file COPYING.
|
||
|
*
|
||
|
* \author Huang Ying
|
||
|
*
|
||
|
* Full author contact details are available in file CREDITS
|
||
|
*/
|
||
|
|
||
|
#include <config.h>
|
||
|
#include <gtkmm.h>
|
||
|
|
||
|
#include "FileDialogPrivate.h"
|
||
|
|
||
|
|
||
|
FileDialog::FileDialog(string const & title,
|
||
|
kb_action action,
|
||
|
Button b1,
|
||
|
Button b2)
|
||
|
{
|
||
|
private_ = new FileDialog::Private(title, action, b1, b2);
|
||
|
}
|
||
|
|
||
|
|
||
|
FileDialog::~FileDialog()
|
||
|
{
|
||
|
delete private_;
|
||
|
}
|
||
|
|
||
|
|
||
|
FileDialog::Result const FileDialog::open(string const & path,
|
||
|
string const & mask,
|
||
|
string const & suggested)
|
||
|
{
|
||
|
return private_->open(path, mask, suggested);
|
||
|
}
|
||
|
|
||
|
|
||
|
FileDialog::Result const FileDialog::opendir(string const & path,
|
||
|
string const & suggested)
|
||
|
{
|
||
|
return private_->opendir(path, suggested);
|
||
|
}
|
||
|
|
||
|
|
||
|
FileDialog::Result const FileDialog::save(string const & path,
|
||
|
string const & mask,
|
||
|
string const & suggested)
|
||
|
{
|
||
|
return private_->save(path, mask, suggested);
|
||
|
}
|