mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
0507b8600d
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5345 a592a061-630c-0410-9148-cb99ea01b6c8
59 lines
959 B
C++
59 lines
959 B
C++
|
|
// -*- C++ -*-
|
|
/**
|
|
* \file GLog.h
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Michael Koziarski
|
|
*
|
|
* Full author contact details are available in file CREDITS
|
|
*/
|
|
|
|
#ifndef GLOG_H
|
|
#define GLOG_H
|
|
|
|
#ifdef __GNUG__
|
|
#pragma interface
|
|
#endif
|
|
|
|
#include "ControlLog.h"
|
|
#include "GnomeBase.h"
|
|
|
|
namespace Gtk {
|
|
class Button;
|
|
class TextView;
|
|
}
|
|
|
|
/**
|
|
* This class implements the dialog to modify the LaTeX preamble
|
|
*/
|
|
class GLog : public FormCB<ControlLog> {
|
|
public:
|
|
///
|
|
GLog(ControlLog & c);
|
|
///
|
|
~GLog();
|
|
|
|
void apply();
|
|
void update();
|
|
|
|
private:
|
|
/// Build the dialog
|
|
void build();
|
|
|
|
/// Returns true if the dialog input is in a valid state.
|
|
bool validate() const;
|
|
|
|
/// generated by accessors.py
|
|
Gtk::Button * refresh_btn() const;
|
|
/// generated by accessors.py
|
|
Gtk::Button * close_btn() const;
|
|
/// generated by accessors.py
|
|
Gtk::TextView * log_text() const;
|
|
|
|
|
|
};
|
|
|
|
#endif
|