1999-09-27 18:44:28 +00:00
|
|
|
// -*- C++ -*-
|
|
|
|
/* This file is part of
|
1999-12-21 06:10:21 +00:00
|
|
|
* ======================================================
|
|
|
|
*
|
|
|
|
* LyX, The Document Processor
|
|
|
|
*
|
|
|
|
* Copyright 1995 1996 Matthias Ettrich
|
2000-03-16 04:29:22 +00:00
|
|
|
* Copyright 1995-2000 The LyX Team
|
1999-12-21 06:10:21 +00:00
|
|
|
*
|
|
|
|
* ====================================================== */
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
// Misc. GUI specific routines
|
|
|
|
|
1999-11-15 12:01:38 +00:00
|
|
|
#ifndef LYX_GUI_MISC_H
|
|
|
|
#define LYX_GUI_MISC_H
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
#include FORMS_H_LOCATION
|
|
|
|
#include "LString.h"
|
1999-12-30 02:35:43 +00:00
|
|
|
#include <utility> /* needed for pair<> definition */
|
2000-03-28 02:18:55 +00:00
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
/// Prevents LyX from being killed when the close box is pressed in a popup.
|
|
|
|
extern "C" int CancelCloseBoxCB(FL_FORM *, void *);
|
|
|
|
/// Prevents LyX from being killed when the close box is pressed in a popup.
|
|
|
|
extern "C" int IgnoreCloseBoxCB(FL_FORM *, void *);
|
|
|
|
|
|
|
|
/// Prevents LyX from crashing when no buffers available
|
2000-06-12 11:27:15 +00:00
|
|
|
void CloseAllBufferRelatedDialogs();
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
/// Ensures info in visible popups are always correct.
|
2000-06-12 11:27:15 +00:00
|
|
|
void updateAllVisibleBufferRelatedDialogs();
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
/// Extract shortcut from <ident>|<shortcut> string
|
1999-12-21 06:10:21 +00:00
|
|
|
char const * flyx_shortcut_extract(char const * sc);
|
1999-09-27 18:44:28 +00:00
|
|
|
/// Make a shortnamed version of the above func
|
|
|
|
#define scex flyx_shortcut_extract
|
|
|
|
|
|
|
|
/// Extract shortcut from <ident>|<shortcut> string
|
1999-12-21 06:10:21 +00:00
|
|
|
char const * flyx_ident_extract(char const * sc);
|
1999-09-27 18:44:28 +00:00
|
|
|
/// Make a shortnamed versjon of the above func
|
|
|
|
#define idex flyx_ident_extract
|
|
|
|
|
|
|
|
/// Show message
|
1999-11-15 12:01:38 +00:00
|
|
|
void WriteAlert(string const & s1, string const & s2 = string(),
|
|
|
|
string const & s3 = string());
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
/// Alarms user of something related to files
|
1999-11-15 12:01:38 +00:00
|
|
|
void WriteFSAlert(string const & s1, string const & s2 = string());
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
/// Asks "Yes" or "No". Returns true for yes, false for no
|
1999-11-15 12:01:38 +00:00
|
|
|
bool AskQuestion(string const & s1, string const & s2 = string(),
|
|
|
|
string const & s3 = string());
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
/// Asks "Yes", "No" or "Cancel". Returns 1 for yes, 2 for no, 3 for cancel
|
1999-11-15 12:01:38 +00:00
|
|
|
int AskConfirmation(string const & s1, string const & s2 = string(),
|
|
|
|
string const & s3 = string());
|
1999-09-27 18:44:28 +00:00
|
|
|
|
1999-12-30 02:35:43 +00:00
|
|
|
/// returns a bool: false=cancelled, true=okay. string contains returned text
|
2000-04-04 00:19:15 +00:00
|
|
|
std::pair<bool, string> askForText(string const & msg,
|
|
|
|
string const & dflt = string());
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
/// Informs the user that changes in the coming form will be ignored
|
1999-12-21 06:10:21 +00:00
|
|
|
void WarnReadonly(string const & file);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
2000-04-11 16:57:16 +00:00
|
|
|
/// Get the dpi setting of the current screen
|
|
|
|
float getScreenDPI();
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
// inlined functions
|
|
|
|
/// rings the audio bell.
|
|
|
|
inline
|
|
|
|
void LyXBell() {
|
|
|
|
// if (audio()) ON/OFF switch yet to be implemented
|
|
|
|
fl_ringbell(20);
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|