lyx_mirror/src/lyx_cb.h
Lars Gullik Bjønnes 9ce32d63e5 several small and larger changes, read the Changelog
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@529 a592a061-630c-0410-9148-cb99ea01b6c8
2000-02-04 09:38:32 +00:00

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