X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Flyx_cb.h;h=03cecc4a7058b103faa96d56d1a68dcbeb23c09b;hb=e5a46922e916a06ad1b958d5895cc3cfb4f13d2c;hp=503733ff2baa57574a4015f68174d6f59167ae1e;hpb=c35b288b74ac9b1450a81c1520292ab95735bb0f;p=lyx.git diff --git a/src/lyx_cb.h b/src/lyx_cb.h index 503733ff2b..03cecc4a70 100644 --- a/src/lyx_cb.h +++ b/src/lyx_cb.h @@ -1,79 +1,43 @@ // -*- C++ -*- +/** + * \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. + */ + #ifndef LYX_CB_H #define LYX_CB_H -#include FORMS_H_LOCATION +#include -#include "LString.h" +namespace lyx { -class Inset; +class Buffer; +class BufferView; +class LyXView; /// extern bool quitting; -// When still false after reading lyxrc, warn user -//about failing \bind_file command. RVDK_PATCH_5 -extern bool BindFileSet; - -/// -extern "C" void FootCB(FL_OBJECT *, long); -/// -extern void EmphCB(); -/// -extern void BoldCB(); -/// -extern void NounCB(); -/// -extern "C" void MarginCB(FL_OBJECT *, long); -/// -extern "C" void FigureCB(FL_OBJECT *, long); -/// -extern "C" void TableCB(FL_OBJECT *, long); -/// -extern "C" void MeltCB(FL_OBJECT *, long); -/// -extern void TexCB(); -/// -extern "C" void DepthCB(FL_OBJECT *, long); -/// -extern void FreeCB(); /// -extern void CutCB(); +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 PasteCB(); +void autoSave(BufferView * bv); /// -extern void CopyCB(); +void newFile(BufferView * bv, std::string const & filename); /// -extern void NoteCB(); +void insertPlaintextFile(BufferView * bv, std::string const & f, bool asParagraph); /// -extern void HtmlUrlCB(); +std::string getContentsOfPlaintextFile(BufferView * bv, std::string const & f, bool asParagraph); /// -extern void UrlCB(); -/// -extern void ProhibitInput(); -/// -extern void CodeCB(); -/// -extern void SansCB(); -/// -extern void RomanCB(); -/// -extern void StyleResetCB(); -/// -extern void UnderlineCB(); -/// -extern void FontSizeCB(string const &); -/// -extern string CurrentState(); -/// -extern void AllowInput(); +void reconfigure(LyXView & lv); -/// -struct InsetUpdateStruct { - /// - Inset* inset; - /// - InsetUpdateStruct* next; -}; -#endif +} // namespace lyx +#endif