2001-06-14 08:20:41 +00:00
|
|
|
// -*- C++ -*-
|
2001-03-07 14:25:31 +00:00
|
|
|
/**
|
|
|
|
* \file FileDialog.h
|
|
|
|
* Copyright 2001 the LyX Team
|
|
|
|
* Read the file COPYING
|
|
|
|
*
|
|
|
|
* \author unknown
|
|
|
|
* \author John Levon
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef FILEDIALOG_H
|
|
|
|
#define FILEDIALOG_H
|
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma interface
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <utility>
|
|
|
|
|
|
|
|
#include "commandtags.h"
|
|
|
|
|
|
|
|
#include "LString.h"
|
|
|
|
|
|
|
|
class LyXView;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \class FileDialog
|
|
|
|
* \brief GUI-I definition of file dialog interface
|
|
|
|
*/
|
|
|
|
class FileDialog
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
/// label, directory path button
|
|
|
|
typedef std::pair<string, string> Button;
|
|
|
|
|
|
|
|
/// result type
|
|
|
|
enum ResultType {
|
|
|
|
Later, /**< modeless chooser, no result */
|
|
|
|
Chosen /**< string contains filename */
|
|
|
|
};
|
|
|
|
|
|
|
|
/// result return
|
|
|
|
typedef std::pair<FileDialog::ResultType, string> Result;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Constructs a file dialog attached to LyXView \param lv, with
|
2002-01-10 10:05:45 +00:00
|
|
|
* title \param title. If \param a is \const LFUN_SELECT_FILE_SYNC
|
2001-03-07 14:25:31 +00:00
|
|
|
* then a value will be returned immediately upon performing a Select(),
|
|
|
|
* otherwise a callback Dispatch() will be invoked with the filename as
|
|
|
|
* argument, of action \param a.
|
|
|
|
*
|
2002-01-10 10:05:45 +00:00
|
|
|
* Up to two optional extra buttons are allowed for specifying
|
|
|
|
* additional directories in the navigation (an empty
|
|
|
|
* directory is interpreted as getcwd())
|
2001-03-07 14:25:31 +00:00
|
|
|
*/
|
2002-01-10 10:05:45 +00:00
|
|
|
FileDialog(LyXView * lv, string const & title,
|
|
|
|
kb_action a = LFUN_SELECT_FILE_SYNC,
|
|
|
|
Button b1 = Button(string(), string()),
|
|
|
|
Button b2 = Button(string(), string()));
|
2002-03-21 21:21:28 +00:00
|
|
|
|
2001-03-07 14:25:31 +00:00
|
|
|
|
|
|
|
~FileDialog();
|
|
|
|
|
|
|
|
/**
|
2002-01-10 10:05:45 +00:00
|
|
|
* Choose a file for selection, starting in directory \param
|
|
|
|
* path, with the file selection \param mask. The \param mask
|
2002-03-21 21:21:28 +00:00
|
|
|
* string is of the form :
|
2001-03-07 14:25:31 +00:00
|
|
|
*
|
|
|
|
* <regular expression to match> | <description>
|
|
|
|
*
|
|
|
|
* for example, "*.ps | PostScript files (*.ps)".
|
|
|
|
*
|
|
|
|
* FIXME: should support multiple lines of these for different file types.
|
|
|
|
*/
|
|
|
|
Result const Select(string const & path = string(),
|
|
|
|
string const & mask = string(),
|
|
|
|
string const & suggested = string());
|
|
|
|
|
|
|
|
|
|
|
|
/* This *has* to be public because there is no way to specify extern "C" functions
|
|
|
|
* as friends of Private implementation for the xforms implementation ... grr
|
|
|
|
*/
|
|
|
|
class Private;
|
|
|
|
friend class Private;
|
|
|
|
Private * private_;
|
|
|
|
|
|
|
|
private:
|
|
|
|
/// our LyXView
|
|
|
|
LyXView * lv_;
|
|
|
|
|
|
|
|
/// the dialog title
|
|
|
|
string title_;
|
|
|
|
|
|
|
|
/// success action to perform if not synchronous
|
|
|
|
kb_action success_;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // FILEDIALOG_H
|