mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-14 06:57:01 +00:00
66 lines
1.9 KiB
C
66 lines
1.9 KiB
C
|
/***************************************************************************
|
|||
|
formcopyright.h - description
|
|||
|
-------------------
|
|||
|
begin : Thu Feb 3 2000
|
|||
|
copyright : (C) 2000 by J<EFBFBD>rgen Vigna
|
|||
|
email : jug@sad.it
|
|||
|
***************************************************************************/
|
|||
|
|
|||
|
/***************************************************************************
|
|||
|
* *
|
|||
|
* This program is free software; you can redistribute it and/or modify *
|
|||
|
* it under the terms of the GNU General Public License as published by *
|
|||
|
* the Free Software Foundation; either version 2 of the License, or *
|
|||
|
* (at your option) any later version. *
|
|||
|
* *
|
|||
|
***************************************************************************/
|
|||
|
|
|||
|
#ifndef FORMCOPYRIGHT_H
|
|||
|
#define FORMCOPYRIGHT_H
|
|||
|
|
|||
|
#include "DialogBase.h"
|
|||
|
|
|||
|
/**
|
|||
|
*@author J<EFBFBD>rgen Vigna
|
|||
|
*/
|
|||
|
|
|||
|
class Dialogs;
|
|||
|
class LyXFunc;
|
|||
|
class FormCopyrightDialog;
|
|||
|
|
|||
|
class FormCopyright : public DialogBase {
|
|||
|
public:
|
|||
|
FormCopyright(LyXFunc *, Dialogs *);
|
|||
|
~FormCopyright();
|
|||
|
|
|||
|
private:
|
|||
|
/**@name Slot Methods */
|
|||
|
//@{
|
|||
|
/// Create the dialog if necessary, update it and display it.
|
|||
|
void show();
|
|||
|
/// Hide the dialog.
|
|||
|
void hide();
|
|||
|
/// Not used but we've got to implement it.
|
|||
|
void update() {}
|
|||
|
//@}
|
|||
|
|
|||
|
/**@name Private Data */
|
|||
|
//@{
|
|||
|
/// Real GUI implementation.
|
|||
|
FormCopyrightDialog * dialog_;
|
|||
|
/** Which LyXFunc do we use?
|
|||
|
We could modify Dialogs to have a visible LyXFunc* instead and
|
|||
|
save a couple of bytes per dialog.
|
|||
|
*/
|
|||
|
LyXFunc * lf_;
|
|||
|
/** Which Dialogs do we belong to?
|
|||
|
Used so we can get at the signals we have to connect to.
|
|||
|
*/
|
|||
|
Dialogs * d_;
|
|||
|
/// Hide connection.
|
|||
|
SigC::Connection h_;
|
|||
|
//@}
|
|||
|
};
|
|||
|
|
|||
|
#endif
|