mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 21:49:51 +00:00
1eb8155fa0
Licence details can be found in the file COPYING. and thank God for sed. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5211 a592a061-630c-0410-9148-cb99ea01b6c8
78 lines
1.7 KiB
C++
78 lines
1.7 KiB
C++
// -*- C++ -*-
|
|
/**
|
|
* \file FormCharacter.h
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Edwin Leuven
|
|
* \author Angus Leeming
|
|
*
|
|
* Full author contact details are available in file CREDITS
|
|
*/
|
|
|
|
#ifndef FORM_CHARACTER_H
|
|
#define FORM_CHARACTER_H
|
|
|
|
#ifdef __GNUG__
|
|
#pragma interface
|
|
#endif
|
|
|
|
#include "FormBase.h"
|
|
#include "lyxfont.h" // for LyXFont enums
|
|
#include "ControlCharacter.h" // for ControlCharacter enum
|
|
#include "LColor.h" // for LColor enum
|
|
#include "character.h" // for FONT_STATE enum
|
|
|
|
#include <boost/scoped_ptr.hpp>
|
|
|
|
class Combox;
|
|
struct FD_character;
|
|
|
|
/**
|
|
* This class provides an XForms implementation of the Character Dialog.
|
|
* The character dialog allows users to change the character settings
|
|
* in their documents.
|
|
*/
|
|
class FormCharacter
|
|
: public FormCB<ControlCharacter, FormDB<FD_character> > {
|
|
public:
|
|
///
|
|
FormCharacter();
|
|
private:
|
|
|
|
/// Apply from dialog
|
|
virtual void apply();
|
|
|
|
/// Build the dialog
|
|
virtual void build();
|
|
|
|
/// Update the dialog.
|
|
virtual void update();
|
|
|
|
/// Filter the inputs on callback from xforms
|
|
virtual ButtonPolicy::SMInput input(FL_OBJECT *, long);
|
|
|
|
/** Callback method (used only to activate Apply button when
|
|
combox is changed */
|
|
static void ComboInputCB(int, void *, Combox *);
|
|
|
|
///
|
|
boost::scoped_ptr<Combox> combo_language2_;
|
|
///
|
|
std::vector<LyXFont::FONT_FAMILY> family_;
|
|
///
|
|
std::vector<LyXFont::FONT_SERIES> series_;
|
|
///
|
|
std::vector<LyXFont::FONT_SHAPE> shape_;
|
|
///
|
|
std::vector<LyXFont::FONT_SIZE> size_;
|
|
///
|
|
std::vector<frnt::FONT_STATE> bar_;
|
|
///
|
|
std::vector<LColor::color> color_;
|
|
///
|
|
std::vector<string> lang_;
|
|
};
|
|
|
|
#endif
|