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