mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
50dd8f5894
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1776 a592a061-630c-0410-9148-cb99ea01b6c8
28 lines
499 B
C++
28 lines
499 B
C++
/**
|
|
* \file FormSplashBase.C
|
|
* Copyright 2001 the LyX Team
|
|
* Read the file COPYING
|
|
*
|
|
* \author Edwin Leuven
|
|
*/
|
|
|
|
#ifndef FORMSPLASHBASE_H
|
|
#define FORMSPLASHBASE_H
|
|
|
|
class FormSplashBase : public QFrame
|
|
{
|
|
public:
|
|
|
|
FormSplashBase(QWidget* parent, const char* name,
|
|
WFlags fl = QWidget::WStyle_NoBorder | QWidget::WStyle_Customize,
|
|
bool modal = false );
|
|
|
|
~FormSplashBase();
|
|
|
|
protected:
|
|
|
|
virtual void mousePressEvent( QMouseEvent * );
|
|
};
|
|
|
|
#endif // FORMSPLASHBASE_H
|