lyx_mirror/src/frontends/gnome/FormCopyright.h
Baruch Even 04ff598331 Changed FormCopyright to MVC.
Casting changes in gnome_helpers
Removal of unneeded static from variables in GUIRuntime.


git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1870 a592a061-630c-0410-9148-cb99ea01b6c8
2001-04-02 10:24:07 +00:00

56 lines
1003 B
C++

// -*- C++ -*-
/* This file is part of
* =================================================
*
* LyX, The Document Processor
* Copyright 1995 Matthias Ettrich.
* Copyright 1995-2000 The LyX Team.
*
* =================================================
*
* \author Michael Koziarski <michael@koziarski.org>
* */
#ifndef FORMCOPYRIGHT_H
#define FORMCOPYRIGHT_H
#ifdef __GNUG__
#pragma interface
#endif
#include "ControlCopyright.h"
#include "GnomeBase.h"
namespace Gtk {
class Button;
class Label;
}
/**
* This class implements the dialog to show the copyright.
*/
class FormCopyright : public FormCB<ControlCopyright> {
public:
///
FormCopyright(ControlCopyright & c);
///
~FormCopyright() {};
void apply() {};
void update() {};
private:
/// Build the dialog
void build();
Gtk::Button * ok();
void CancelClicked() { CancelButton(); }
Gtk::Label * disclaimer();
Gtk::Label * copyright();
Gtk::Label * license();
/// The ok button
};
#endif