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