X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Ffrontends%2FLiason.h;h=77aceddb2dcfc7c04754c0598b677e53c84153ca;hb=0c978e6a3fb133c97d95e87715add6bae26f7837;hp=2fab06fc6820d8d8b7f9c305df2490faf8927a36;hpb=4b2a999762c83627476428e595d3c1e3704a3da0;p=lyx.git diff --git a/src/frontends/Liason.h b/src/frontends/Liason.h index 2fab06fc68..77aceddb2d 100644 --- a/src/frontends/Liason.h +++ b/src/frontends/Liason.h @@ -32,27 +32,31 @@ class PrinterParams; class Buffer; +class LyXView; +class BufferParams; /** Temporary namespace to hold the various frontend functions - * until XTL and the compilers of the world are ready for something more - * elaborate. This is basically the Communicator class from the lyx cvs module - * all over again. - * - * Eventually, we will switch back to the XTL+LyXFunc combination that - * worked so nicely on a very small number of compilers and systems. - * See the "dialogbase" branch of lyx-devel cvs module for xtl implementation. - */ + until XTL and the compilers of the world are ready for something more + elaborate. This is basically the Communicator class from the lyx cvs module + all over again. + + Eventually, we will switch back to the XTL+LyXFunc combination that + worked so nicely on a very small number of compilers and systems. + See the "dialogbase" branch of lyx-devel cvs module for xtl implementation. +*/ #ifdef CXX_WORKING_NAMESPACES namespace Liason { #endif -/**@name Global support functions */ -//@{ -/// get global printer parameters -PrinterParams getPrinterParams(Buffer *); -/// print the current buffer -bool printBuffer(Buffer *, PrinterParams const &); -//@} + /**@name Global support functions */ + //@{ + /// get global printer parameters + PrinterParams getPrinterParams(Buffer *); + /// print the current buffer + bool printBuffer(Buffer *, PrinterParams const &); + /// set the minibuffer + void setMinibuffer(LyXView *, char const * msg); + //@} #ifdef CXX_WORKING_NAMESPACES }