mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-08 10:51:03 +00:00
8283e978f8
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3803 a592a061-630c-0410-9148-cb99ea01b6c8
59 lines
1.2 KiB
C++
59 lines
1.2 KiB
C++
// -*- C++ -*-
|
|
/* This file is part of
|
|
* ======================================================
|
|
*
|
|
* LyX, The Document Processor
|
|
*
|
|
* Copyright 1995 Matthias Ettrich
|
|
* Copyright 1995-2001 The LyX Team.
|
|
*
|
|
* ====================================================== */
|
|
|
|
#ifndef BUFFERVIEW_FUNCS_H
|
|
#define BUFFERVIEW_FUNCS_H
|
|
|
|
#ifdef __GNUG__
|
|
#pragma interface
|
|
#endif
|
|
|
|
#include "LString.h"
|
|
|
|
class BufferView;
|
|
class LyXFont;
|
|
class LyXText;
|
|
|
|
///
|
|
extern void emph(BufferView *);
|
|
///
|
|
extern void bold(BufferView *);
|
|
///
|
|
extern void noun(BufferView *);
|
|
///
|
|
extern void table();
|
|
///
|
|
extern void lang(BufferView *, string const &);
|
|
///
|
|
extern void number(BufferView *);
|
|
///
|
|
extern void tex(BufferView *);
|
|
///
|
|
extern void changeDepth(BufferView *, LyXText *, int);
|
|
///
|
|
extern void code(BufferView *);
|
|
///
|
|
extern void sans(BufferView *);
|
|
///
|
|
extern void roman(BufferView *);
|
|
///
|
|
extern void styleReset(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 toggleAndShow(BufferView *, LyXFont const &,
|
|
bool toggleall = true);
|
|
#endif
|