mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-13 14:32:04 +00:00
f268743f8c
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7632 a592a061-630c-0410-9148-cb99ea01b6c8
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);
|
|
}
|