mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-04 14:20:05 +00:00
a6adf5d732
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
56 lines
926 B
C++
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
|