1999-09-27 18:44:28 +00:00
|
|
|
// -*- C++ -*-
|
1999-10-02 16:21:10 +00:00
|
|
|
#ifndef LYX_CB_H
|
|
|
|
#define LYX_CB_H
|
1999-09-27 18:44:28 +00:00
|
|
|
|
2000-08-30 04:38:32 +00:00
|
|
|
#include "LString.h"
|
|
|
|
|
2000-06-22 09:30:43 +00:00
|
|
|
class BufferParams;
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
///
|
|
|
|
extern bool quitting;
|
2000-08-07 20:58:24 +00:00
|
|
|
///
|
2000-04-12 14:20:08 +00:00
|
|
|
extern bool toggleall;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
// When still false after reading lyxrc, warn user
|
|
|
|
//about failing \bind_file command. RVDK_PATCH_5
|
2000-08-07 20:58:24 +00:00
|
|
|
///
|
1999-09-27 18:44:28 +00:00
|
|
|
extern bool BindFileSet;
|
2000-08-07 20:58:24 +00:00
|
|
|
///
|
2000-06-22 09:30:43 +00:00
|
|
|
extern LyXFont UserFreeFont(BufferParams const & params);
|
2000-08-30 04:38:32 +00:00
|
|
|
///
|
|
|
|
void ShowMessage(Buffer * buf,
|
|
|
|
string const & msg1,
|
|
|
|
string const & msg2 = string(),
|
|
|
|
string const & msg3 = string(), int delay = 6);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|