]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/FormSplash.h
Compiles and links again
[lyx.git] / src / frontends / qt2 / FormSplash.h
1 /**
2  * \file FormSplash.h
3  * Copyright 2001 the LyX Team
4  * Read the file COPYING
5  *
6  * \author Edwin Leuven
7  */
8
9 #ifndef FORMSPLASH_H
10 #define FORMSPLASH_H
11
12 #include "DialogBase.h"
13  
14 class Dialogs; 
15 class LyXView;
16 class FormSplashBase;
17
18 /** The startup splash screen
19  */
20 class FormSplash : public DialogBase {
21
22  public:
23         FormSplash(LyXView *, Dialogs *);
24
25         ~FormSplash();
26    
27         /// hide the dialog
28         void hide(); 
29
30  private:
31         /// show the dialog
32         void show(); 
33
34         /// Real GUI implementation.
35         FormSplashBase * dialog_;
36         /// our container
37         Dialogs * d_; 
38         /// the show connection
39         SigC::Connection c_; 
40 };
41
42 #endif // FORMSPLASH_H