mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
0c978e6a3f
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1211 a592a061-630c-0410-9148-cb99ea01b6c8
59 lines
1.3 KiB
C++
59 lines
1.3 KiB
C++
// -*- C++ -*-
|
|
/* DialogBase.h
|
|
* Abstract base class of all dialogs.
|
|
* Author: Allan Rae <rae@lyx.org>
|
|
* This file is part of
|
|
* ======================================================
|
|
*
|
|
* LyX, The Document Processor
|
|
*
|
|
* Copyright 1995 Matthias Ettrich
|
|
* Copyright 1995-2000 The LyX Team.
|
|
*
|
|
* This file Copyright 2000
|
|
* Allan Rae
|
|
* ======================================================
|
|
*/
|
|
#ifndef DIALOGBASE_H
|
|
#define DIALOGBASE_H
|
|
|
|
#include <sigc++/signal_system.h>
|
|
|
|
// If we do not want to bring them in global namespace, they could be
|
|
// defined inside DialogBase... (JMarc)
|
|
#ifdef SIGC_CXX_NAMESPACES
|
|
using SigC::Connection;
|
|
using SigC::slot;
|
|
using SigC::Object;
|
|
|
|
#endif
|
|
|
|
|
|
/** Abstract base class of all dialogs.
|
|
The outside world only needs some way to tell a dialog when to show, hide
|
|
or update itself. A dialog then takes whatever steps are necessary to
|
|
satisfy that request. Thus a dialog will have to "pull" the necessary
|
|
details from the core of the program.
|
|
*/
|
|
class DialogBase : public Object
|
|
{
|
|
public:
|
|
/**@name Constructors and Deconstructors */
|
|
//@{
|
|
///
|
|
virtual ~DialogBase() {}
|
|
//@}
|
|
|
|
/**@name Signal Targets */
|
|
//@{
|
|
///
|
|
virtual void show() = 0;
|
|
///
|
|
virtual void hide() = 0;
|
|
///
|
|
virtual void update() {};
|
|
//@}
|
|
};
|
|
|
|
#endif // DIALOGBASE_H
|