lyx_mirror/src/filedlg.h
Lars Gullik Bjønnes 77e706c441 fix the smallcaps drawing, move xfont metrics functions out from LyXFont, move non-inlineable functions out of line
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@638 a592a061-630c-0410-9148-cb99ea01b6c8
2000-04-04 00:19:15 +00:00

111 lines
2.3 KiB
C++

// -*- C++ -*-
/* This file is part of
* ======================================================
*
* LyX, The Document Processor
*
* Copyright 1995 Matthias Ettrich
* Copyright 1995-2000 The LyX Team.
*
* ====================================================== */
#ifndef FILEDLG_H
#define FILEDLG_H
#ifdef __GNUG__
#pragma interface
#endif
#include <vector>
#include "LString.h"
#include FORMS_H_LOCATION
#include "form1.h"
/// LyXDirEntry internal structure definition
class LyXDirEntry
{
public:
string pszName;
string pszDisplayed;
string pszLsEntry;
};
/// FileDlg class definition
class LyXFileDlg
{
public:
///
LyXFileDlg();
/// sets file selector user button action
void SetButton(int iIndex, string const & pszName = string(),
string const & pszPath = string());
/// gets last dialog directory
string GetDirectory() const;
/// launches dialog and returns selected file
string Select(string const & pszTitle = string(),
string const & pszPath = string(),
string const & pszMask = string(),
string const & pszSuggested = string());
/// XForms objects callback (static)
static void FileDlgCB(FL_OBJECT *, long);
/// Callback for double click in list
static void DoubleClickCB(FL_OBJECT *, long);
/// Handle Cancel CB from WM close
static int CancelCB(FL_FORM *, void *);
private:
/// data
static FD_FileDlg * pFileDlgForm;
///
static LyXFileDlg * pCurrentDlg;
///
string pszUserPath1;
///
string pszUserPath2;
///
string pszDirectory;
///
string pszMask;
///
string pszFileName;
///
int iDepth;
///
int iLastSel;
///
long lLastTime;
///
string pszInfoLine;
///
typedef std::vector<LyXDirEntry> DirEntries;
///
DirEntries direntries;
///
bool force_cancel;
///
bool force_ok;
/// updates dialog list to match class directory
void Reread();
/// sets dialog current directory
void SetDirectory(string const & pszPath);
/// sets dialog file mask
void SetMask(string const & pszNewMask);
/// sets dialog information line
void SetInfoLine(string const & pszLine);
/// handle dialog during file selection
bool RunDialog();
/// Handle callback from list
void HandleListHit();
/// Handle double click from list
bool HandleDoubleClick();
/// Handle OK button call
bool HandleOK();
/// Simulates a click on OK/Cancel
void Force(bool);
};
#endif