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
|
2001-05-30 13:53:44 +00:00
|
|
|
* Copyright 1995-2001 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
|
|
|
|
2000-07-24 13:53:19 +00:00
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma interface
|
|
|
|
#endif
|
|
|
|
|
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.
|
2001-09-09 22:02:19 +00:00
|
|
|
extern "C"
|
|
|
|
int CancelCloseBoxCB(FL_FORM *, void *);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
2000-11-28 06:46:06 +00:00
|
|
|
/** Redraw the form (on receipt of a Signal indicating, for example,
|
|
|
|
that the xform colors have been re-mapped). */
|
|
|
|
void RedrawAllBufferRelatedDialogs();
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
/// 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-10-13 05:57:05 +00:00
|
|
|
void updateAllVisibleBufferRelatedDialogs(bool switched = false);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
2000-07-28 04:59:45 +00:00
|
|
|
/* These shortcut extractors should be shifted to frontends/xforms/ eventually */
|
2000-08-07 20:58:24 +00:00
|
|
|
|
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);
|
2000-08-07 20:58:24 +00:00
|
|
|
/// Shortcut for flyx_shortcut_extract
|
1999-09-27 18:44:28 +00:00
|
|
|
#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);
|
2000-08-07 20:58:24 +00:00
|
|
|
/// Shortcut for flyx_ident_extract
|
1999-09-27 18:44:28 +00:00
|
|
|
#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(),
|
2000-10-03 18:38:10 +00:00
|
|
|
string const & s3 = string(), bool default_value = true);
|
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(),
|
2000-10-03 18:38:10 +00:00
|
|
|
string const & s3 = string(), int default_value = 1);
|
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-08-05 05:17:18 +00:00
|
|
|
std::pair<bool, string> const
|
|
|
|
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
|
|
|
#endif
|