lyx_mirror/src/frontends/gnome/FormCredits.h
Baruch Even a6adf5d732 Fixes to get it to compile after the latest ButtonController changes.
Refactoring of the dialogs into GnomeBase to remove common code.


git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1862 a592a061-630c-0410-9148-cb99ea01b6c8
2001-03-30 18:49:10 +00:00

56 lines
926 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 FORMCREDITS_H
#define FORMCREDITS_H
#ifdef __GNUG__
#pragma interface
#endif
#include "ControlCredits.h"
#include "GnomeBase.h"
namespace Gtk {
class Button;
class Text;
}
/**
* This class implements the dialog to show the credits.
*/
class FormCredits : public FormCB<ControlCredits> {
public:
///
FormCredits(ControlCredits & c);
///
~FormCredits() {};
void apply() {};
void update() {};
private:
/// Build the dialog
void build();
void CancelClicked() { CancelButton(); }
/// The ok button
Gtk::Button * ok();
Gtk::Text * text();
};
#endif