lyx_mirror/src/frontends/xforms/FormSplash.h
Angus Leeming 1df761e26d John's splash patch
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1740 a592a061-630c-0410-9148-cb99ea01b6c8
2001-03-12 12:44:56 +00:00

51 lines
792 B
C++

/**
* \file FormSplash.h
* Copyright 2001 the LyX Team
* Read the file COPYING
*
* \author Allan Rae
* \author John Levon
*/
#ifndef FORMSPLASH_H
#define FORMSPLASH_H
#ifdef __GNUG__
#pragma interface
#endif
#include "DialogBase.h"
struct FD_form_splash;
class Dialogs;
class LyXView;
/** The startup splash screen
*/
class FormSplash : public DialogBase {
public:
FormSplash(LyXView *, Dialogs *);
~FormSplash();
/// hide (and destroy) the dialog
void hide();
private:
/// show the dialog
void show();
/// Build the dialog
void build();
/// Fdesign generated method
FD_form_splash * build_splash();
/// Real GUI implementation.
FD_form_splash * dialog_;
/// our container
Dialogs * d_;
/// the show connection
Connection c_;
};
#endif // FORMSPLASH_H