mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-27 19:59:46 +00:00
9ce32d63e5
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@529 a592a061-630c-0410-9148-cb99ea01b6c8
75 lines
1.0 KiB
C++
75 lines
1.0 KiB
C++
// -*- C++ -*-
|
|
#ifndef LYX_CB_H
|
|
#define LYX_CB_H
|
|
|
|
#include FORMS_H_LOCATION
|
|
|
|
#include "LString.h"
|
|
|
|
class Inset;
|
|
class BufferView;
|
|
|
|
///
|
|
extern bool quitting;
|
|
|
|
// When still false after reading lyxrc, warn user
|
|
//about failing \bind_file command. RVDK_PATCH_5
|
|
extern bool BindFileSet;
|
|
|
|
///
|
|
extern void Foot(BufferView *);
|
|
///
|
|
extern void Emph();
|
|
///
|
|
extern void Bold();
|
|
///
|
|
extern void Noun();
|
|
///
|
|
extern void Margin(BufferView *);
|
|
///
|
|
extern void Figure();
|
|
///
|
|
extern void RTLCB();
|
|
///
|
|
extern void Table();
|
|
///
|
|
extern void Melt(BufferView *);
|
|
///
|
|
extern void Tex();
|
|
///
|
|
extern void changeDepth(BufferView *, int);
|
|
///
|
|
extern void Free();
|
|
///
|
|
extern void HtmlUrl();
|
|
///
|
|
extern void Url();
|
|
///
|
|
extern void ProhibitInput();
|
|
///
|
|
extern void Code();
|
|
///
|
|
extern void Sans();
|
|
///
|
|
extern void Roman();
|
|
///
|
|
extern void StyleReset();
|
|
///
|
|
extern void Underline();
|
|
///
|
|
extern void FontSize(string const &);
|
|
///
|
|
extern string CurrentState();
|
|
///
|
|
extern void AllowInput();
|
|
|
|
///
|
|
struct InsetUpdateStruct {
|
|
///
|
|
Inset * inset;
|
|
///
|
|
InsetUpdateStruct * next;
|
|
};
|
|
#endif
|
|
|