]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/FormSplashImpl.h
implement getLabelList
[lyx.git] / src / frontends / qt2 / FormSplashImpl.h
1 /**
2  * \file FormSplashBase.C
3  * Copyright 2001 the LyX Team
4  * Read the file COPYING
5  *
6  * \author Edwin Leuven
7  */
8
9 #ifndef FORMSPLASHBASE_H
10 #define FORMSPLASHBASE_H
11
12 class FormSplashBase : public QFrame
13 {
14  public:
15    
16    FormSplashBase(QWidget* parent,  const char* name,
17                   WFlags fl = QWidget::WStyle_NoBorder | QWidget::WStyle_Customize, 
18                   bool modal = false );
19    
20    ~FormSplashBase();
21    
22  protected:
23    
24    virtual void mousePressEvent( QMouseEvent * );
25 };
26
27 #endif // FORMSPLASHBASE_H