X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fbufferview_funcs.h;h=0d27e4650ac9958e7be378c439f3f9f544ed53a5;hb=b99a5acc7f18c3f885856fa962c0f0a63a0ca5ad;hp=368549f624d18f85d2c1f9ea426cfce7db025c8e;hpb=4c6091b63f6ac4dae69ddcee26bf22e4f35a3cdf;p=lyx.git diff --git a/src/bufferview_funcs.h b/src/bufferview_funcs.h index 368549f624..0d27e4650a 100644 --- a/src/bufferview_funcs.h +++ b/src/bufferview_funcs.h @@ -1,21 +1,17 @@ // -*- C++ -*- /* This file is part of - * ====================================================== - * + * ====================================================== + * * LyX, The Document Processor - * + * * Copyright 1995 Matthias Ettrich - * Copyright 1995-2000 The LyX Team. + * Copyright 1995-2001 The LyX Team. * * ====================================================== */ #ifndef BUFFERVIEW_FUNCS_H #define BUFFERVIEW_FUNCS_H -#ifdef __GNUG__ -#pragma interface -#endif - #include "LString.h" class BufferView; @@ -23,41 +19,34 @@ class LyXFont; class LyXText; /// -extern void Emph(BufferView *); +extern void emph(BufferView *); /// -extern void Bold(BufferView *); +extern void bold(BufferView *); /// -extern void Noun(BufferView *); +extern void noun(BufferView *); /// -extern void Figure(); +extern void lang(BufferView *, string const &); /// -extern void Table(); +extern void number(BufferView *); /// -extern void Lang(BufferView *, string const &); -/// -extern void Number(BufferView *); -/// -extern void Tex(BufferView *); +extern void tex(BufferView *); /// extern void changeDepth(BufferView *, LyXText *, int); /// -extern void ProhibitInput(BufferView *); -/// -extern void AllowInput(BufferView *); -/// -extern void Code(BufferView *); +extern void code(BufferView *); /// -extern void Sans(BufferView *); +extern void sans(BufferView *); /// -extern void Roman(BufferView *); +extern void roman(BufferView *); /// -extern void StyleReset(BufferView *); +extern void styleReset(BufferView *); /// -extern void Underline(BufferView *); +extern void underline(BufferView *); /// -extern void FontSize(BufferView *, string const &); -/// Returns the current font and depth as a message. -extern string const CurrentState(BufferView *); +extern void fontSize(BufferView *, string const &); +/// Returns the current font and depth as a message. +extern string const currentState(BufferView *); /// -extern void ToggleAndShow(BufferView *, LyXFont const &, bool toggleall=true); +extern void toggleAndShow(BufferView *, LyXFont const &, + bool toggleall = true); #endif