X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Flyx_cb.h;h=03cecc4a7058b103faa96d56d1a68dcbeb23c09b;hb=e5a46922e916a06ad1b958d5895cc3cfb4f13d2c;hp=5e6c26ce894979dd2624356c9ed35a0df5385815;hpb=27de1486ca34aaad446adb798d71a77d6f6304da;p=lyx.git diff --git a/src/lyx_cb.h b/src/lyx_cb.h index 5e6c26ce89..03cecc4a70 100644 --- a/src/lyx_cb.h +++ b/src/lyx_cb.h @@ -1,78 +1,43 @@ // -*- C++ -*- -#ifndef _LYX_CB_H -#define _LYX_CB_H +/** + * \file lyx_cb.h + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. + * + * \author Lars Gullik Bjønnes + * + * Full author contact details are available in file CREDITS. + */ -#include FORMS_H_LOCATION +#ifndef LYX_CB_H +#define LYX_CB_H -class LString; -class Inset; +#include -/// -extern bool quitting; +namespace lyx { -// When still false after reading lyxrc, warn user -//about failing \bind_file command. RVDK_PATCH_5 -extern bool BindFileSet; +class Buffer; +class BufferView; +class LyXView; /// -extern void FootCB(FL_OBJECT *, long); -/// -extern void EmphCB(); -/// -extern void BoldCB(); -/// -extern void NounCB(); -/// -extern void MarginCB(FL_OBJECT *, long); -/// -extern void FigureCB(FL_OBJECT *, long); -/// -extern void TableCB(FL_OBJECT *, long); -/// -extern void MeltCB(FL_OBJECT *, long); -/// -extern void TexCB(); -/// -extern void DepthCB(FL_OBJECT *, long); -/// -extern void FreeCB(); -/// -extern void CutCB(); -/// -extern void PasteCB(); -/// -extern void CopyCB(); -/// -extern void NoteCB(); -/// -extern void HtmlUrlCB(); -/// -extern void UrlCB(); -/// -extern void ProhibitInput(); -/// -extern void CodeCB(); -/// -extern void SansCB(); +extern bool quitting; + /// -extern void RomanCB(); +bool menuWrite(Buffer * buffer); +/// write the given file, or ask if no name given +bool writeAs(Buffer * buffer, std::string const & filename = std::string()); /// -extern void StyleResetCB(); +void autoSave(BufferView * bv); /// -extern void UnderlineCB(); +void newFile(BufferView * bv, std::string const & filename); /// -extern void FontSizeCB(LString const &); +void insertPlaintextFile(BufferView * bv, std::string const & f, bool asParagraph); /// -extern LString CurrentState(); +std::string getContentsOfPlaintextFile(BufferView * bv, std::string const & f, bool asParagraph); /// -extern void AllowInput(); +void reconfigure(LyXView & lv); -/// -struct InsetUpdateStruct { - /// - Inset* inset; - /// - InsetUpdateStruct* next; -}; -#endif +} // namespace lyx +#endif