mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
04ff598331
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
56 lines
1003 B
C++
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
|