mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-08 20:32:49 +00:00
a56b428d88
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@9276 a592a061-630c-0410-9148-cb99ea01b6c8
123 lines
3.4 KiB
C++
123 lines
3.4 KiB
C++
// -*- C++ -*-
|
|
/**
|
|
* \file Dialogs.h
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Allan Rae
|
|
* \author Angus Leeming
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#ifndef DIALOGS_H
|
|
#define DIALOGS_H
|
|
|
|
#include <boost/signal.hpp>
|
|
#include <boost/utility.hpp>
|
|
|
|
#include <map>
|
|
|
|
class InsetBase;
|
|
class LyXView;
|
|
|
|
namespace lyx {
|
|
namespace frontend {
|
|
class Dialog;
|
|
} // namespace frontend
|
|
} // namespace lyx
|
|
|
|
/** Container of all dialogs.
|
|
*/
|
|
class Dialogs : boost::noncopyable {
|
|
public:
|
|
///
|
|
Dialogs(LyXView &);
|
|
|
|
/** Redraw all visible dialogs because, for example, the GUI colours
|
|
* have been re-mapped.
|
|
*
|
|
* Note that static boost signals break some compilers, so we return a
|
|
* reference to some hidden magic ;-)
|
|
*/
|
|
static boost::signal<void()> & redrawGUI();
|
|
|
|
/// Toggle tooltips on/off in all dialogs.
|
|
static void toggleTooltips();
|
|
|
|
/// Are the tooltips on or off?
|
|
static bool tooltipsEnabled();
|
|
|
|
/// Hide all visible dialogs
|
|
void hideAll() const;
|
|
/// Hide any dialogs that require a buffer for them to operate
|
|
void hideBufferDependent() const;
|
|
/** Update visible, buffer-dependent dialogs
|
|
If the bool is true then a buffer change has occurred
|
|
else its still the same buffer.
|
|
*/
|
|
void updateBufferDependent(bool) const ;
|
|
|
|
/** \param name == "about" etc; an identifier used to
|
|
launch a particular dialog.
|
|
\param data is a string encoding of the data used to populate
|
|
the dialog. Several of these dialogs do not need any data,
|
|
so it defaults to string().
|
|
*/
|
|
void show(std::string const & name, std::string const & data = std::string());
|
|
|
|
/** \param name == "bibtex", "citation" etc; an identifier used to
|
|
launch a particular dialog.
|
|
\param data is a string representation of the Inset contents.
|
|
It is often little more than the output from Inset::write.
|
|
It is passed to, and parsed by, the frontend dialog.
|
|
\param inset is _not_ passed to the frontend dialog.
|
|
It is stored internally and used by the kernel to ascertain
|
|
what to do with the FuncRequest dispatched from the frontend
|
|
dialog on 'Apply'; should it be used to create a new inset at
|
|
the current cursor position or modify an existing, 'open' inset?
|
|
*/
|
|
void show(std::string const & name, std::string const & data, InsetBase * inset);
|
|
|
|
/** \param name == "citation", "bibtex" etc; an identifier used
|
|
to update the contents of a particular dialog with \param data.
|
|
See the comments to 'show', above.
|
|
*/
|
|
void update(std::string const & name, std::string const & data);
|
|
|
|
/// Is the dialog currently visible?
|
|
bool visible(std::string const & name) const;
|
|
|
|
/** All Dialogs of the given \param name will be closed if they are
|
|
connected to the given \param inset.
|
|
*/
|
|
static void hide(std::string const & name, InsetBase * inset);
|
|
///
|
|
void disconnect(std::string const & name);
|
|
///
|
|
InsetBase * getOpenInset(std::string const & name) const;
|
|
private:
|
|
///
|
|
void hideSlot(std::string const & name, InsetBase * inset);
|
|
///
|
|
void redraw() const;
|
|
///
|
|
bool isValidName(std::string const & name) const;
|
|
///
|
|
lyx::frontend::Dialog * find_or_build(std::string const & name);
|
|
///
|
|
typedef boost::shared_ptr<lyx::frontend::Dialog> DialogPtr;
|
|
///
|
|
DialogPtr build(std::string const & name);
|
|
|
|
///
|
|
LyXView & lyxview_;
|
|
///
|
|
std::map<std::string, InsetBase *> open_insets_;
|
|
|
|
///
|
|
std::map<std::string, DialogPtr> dialogs_;
|
|
};
|
|
|
|
#endif
|