mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-25 10:58:52 +00:00
0f9678630c
Add them as appropriate to .C files. Rename Voss as Vo�, Juergen as J�rgen and Spitzmueller as Spitzm�ller. Happy compiling. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7701 a592a061-630c-0410-9148-cb99ea01b6c8
64 lines
1.5 KiB
C++
64 lines
1.5 KiB
C++
// -*- C++ -*-
|
|
/**
|
|
* \file FormGraphics.h
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Baruch Even
|
|
* \author Herbert Voß
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#ifndef FORMGRAPHICS_H
|
|
#define FORMGRAPHICS_H
|
|
|
|
|
|
#include "FormDialogView.h"
|
|
|
|
#include <boost/scoped_ptr.hpp>
|
|
|
|
#include <vector>
|
|
|
|
class ControlGraphics;
|
|
struct FD_graphics;
|
|
struct FD_graphics_file;
|
|
struct FD_graphics_bbox;
|
|
struct FD_graphics_extra;
|
|
|
|
/** This class provides an XForms implementation of the Graphics Dialog.
|
|
*/
|
|
class FormGraphics
|
|
: public FormController<ControlGraphics, FormView<FD_graphics> > {
|
|
public:
|
|
///
|
|
FormGraphics(Dialog &);
|
|
private:
|
|
|
|
/** Redraw the form (on receipt of a Signal indicating, for example,
|
|
that the xforms colours have been re-mapped). */
|
|
virtual void redraw();
|
|
/// Set the Params variable for the Controller.
|
|
virtual void apply();
|
|
/// Build the dialog.
|
|
virtual void build();
|
|
/// Update dialog before/whilst showing it.
|
|
virtual void update();
|
|
/// Update the BoundingBox info.
|
|
void updateBB(string const & filename, string const & bb_inset);
|
|
/// Filter the inputs on callback from xforms
|
|
virtual ButtonPolicy::SMInput input(FL_OBJECT *, long);
|
|
|
|
/// Real GUI implementation.
|
|
boost::scoped_ptr<FD_graphics_file> file_;
|
|
///
|
|
boost::scoped_ptr<FD_graphics_bbox> bbox_;
|
|
///
|
|
boost::scoped_ptr<FD_graphics_extra> extra_;
|
|
|
|
/// Store the LaTeX names for the rotation origins.
|
|
std::vector<string> origins_;
|
|
};
|
|
|
|
#endif // FORMGRAPHICS_H
|