lyx_mirror/src/lyx_cb.h
Lars Gullik Bjønnes 53b464c5e9 some new (not extensive) changes, some fixes, will probably reverto to .la libs later .o libs is too much a hassle, please read the ChangeLog
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@408 a592a061-630c-0410-9148-cb99ea01b6c8
2000-01-08 21:02:58 +00:00

72 lines
1.1 KiB
C++

// -*- C++ -*-
#ifndef LYX_CB_H
#define LYX_CB_H
#include FORMS_H_LOCATION
#include "LString.h"
class Inset;
///
extern bool quitting;
// When still false after reading lyxrc, warn user
//about failing \bind_file command. RVDK_PATCH_5
extern bool BindFileSet;
///
extern "C" void FootCB(FL_OBJECT *, long);
///
extern void EmphCB();
///
extern void BoldCB();
///
extern void NounCB();
///
extern "C" void MarginCB(FL_OBJECT *, long);
///
extern "C" void FigureCB(FL_OBJECT *, long);
///
extern "C" void TableCB(FL_OBJECT *, long);
///
extern "C" void MeltCB(FL_OBJECT *, long);
///
extern void TexCB();
///
extern "C" void DepthCB(FL_OBJECT *, long);
///
extern void FreeCB();
///
extern void HtmlUrlCB();
///
extern void UrlCB();
///
extern void ProhibitInput();
///
extern void CodeCB();
///
extern void SansCB();
///
extern void RomanCB();
///
extern void StyleResetCB();
///
extern void UnderlineCB();
///
extern void FontSizeCB(string const &);
///
extern string CurrentState();
///
extern void AllowInput();
///
struct InsetUpdateStruct {
///
Inset * inset;
///
InsetUpdateStruct * next;
};
#endif