mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-24 18:43:37 +00:00
4505b2f7b3
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1676 a592a061-630c-0410-9148-cb99ea01b6c8
47 lines
798 B
C++
47 lines
798 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
|
|
|
|
#include "FormBase.h"
|
|
|
|
#ifdef __GNUG__
|
|
#pragma interface
|
|
#endif
|
|
|
|
struct FD_form_splash;
|
|
|
|
/** The startup splash screen
|
|
*/
|
|
class FormSplash : public FormBaseBI {
|
|
public:
|
|
FormSplash(LyXView *, Dialogs *);
|
|
|
|
~FormSplash();
|
|
|
|
/// close the dialog
|
|
static void CloseCB(FL_OBJECT *);
|
|
|
|
private:
|
|
/// show the dialog
|
|
virtual void show();
|
|
/// Build the dialog
|
|
virtual void build();
|
|
/// Pointer to the actual instantiation of the xforms form
|
|
virtual FL_FORM * form() const;
|
|
/// Fdesign generated method
|
|
FD_form_splash * build_splash();
|
|
|
|
/// Real GUI implementation.
|
|
FD_form_splash * dialog_;
|
|
};
|
|
|
|
#endif // FORMSPLASH_H
|