X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fbufferview_funcs.h;h=0d27e4650ac9958e7be378c439f3f9f544ed53a5;hb=b99a5acc7f18c3f885856fa962c0f0a63a0ca5ad;hp=51b0823be3fa72df9a1f73f7c8a17f1d2467fa6e;hpb=b9d61343fc76a681b0264d65703ef2119647df56;p=lyx.git diff --git a/src/bufferview_funcs.h b/src/bufferview_funcs.h index 51b0823be3..0d27e4650a 100644 --- a/src/bufferview_funcs.h +++ b/src/bufferview_funcs.h @@ -1,9 +1,9 @@ // -*- C++ -*- /* This file is part of - * ====================================================== - * + * ====================================================== + * * LyX, The Document Processor - * + * * Copyright 1995 Matthias Ettrich * Copyright 1995-2001 The LyX Team. * @@ -12,10 +12,6 @@ #ifndef BUFFERVIEW_FUNCS_H #define BUFFERVIEW_FUNCS_H -#ifdef __GNUG__ -#pragma interface -#endif - #include "LString.h" class BufferView; @@ -23,37 +19,34 @@ class LyXFont; class LyXText; /// -extern void Emph(BufferView *); -/// -extern void Bold(BufferView *); -/// -extern void Noun(BufferView *); +extern void emph(BufferView *); /// -extern void Figure(); +extern void bold(BufferView *); /// -extern void Table(); +extern void noun(BufferView *); /// -extern void Lang(BufferView *, string const &); +extern void lang(BufferView *, string const &); /// -extern void Number(BufferView *); +extern void number(BufferView *); /// -extern void Tex(BufferView *); +extern void tex(BufferView *); /// extern void changeDepth(BufferView *, LyXText *, int); /// -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