lyx_mirror/src/intl.C
Angus Leeming 91de22ef34 Strip 320 #includes from the files in src.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7684 a592a061-630c-0410-9148-cb99ea01b6c8
2003-09-05 16:31:30 +00:00

94 lines
1.4 KiB
C

/**
* \file intl.h
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* \author unknown
* \author Lars Gullik Bjønnes
* \author Angus Leeming
* \author John Levon
*
* Full author contact details are available in file CREDITS.
*/
#include <config.h>
#include "intl.h"
#include "debug.h"
#include "lyxrc.h"
using std::endl;
Intl::Intl()
: keymap(Intl::PRIMARY), keymapon(lyxrc.use_kbmap),
prim_lang(lyxrc.primary_kbmap), sec_lang(lyxrc.secondary_kbmap)
{
}
void Intl::KeyMapOn(bool on)
{
keymapon = on;
if (on) {
if (keymap == PRIMARY)
KeyMapPrim();
else
KeyMapSec();
} else
trans.DisableKeymap();
}
void Intl::ToggleKeyMap()
{
if (keymapon && (keymap == PRIMARY)) {
KeyMapSec();
} else if (keymapon) {
KeyMapOn(false);
} else
KeyMapPrim();
}
void Intl::KeyMapPrim()
{
if (!trans.SetPrimary(prim_lang))
trans.EnablePrimary();
keymapon = true;
keymap = PRIMARY;
}
void Intl::KeyMapSec()
{
if (!trans.SetSecondary(sec_lang))
trans.EnableSecondary();
keymapon = true;
keymap = SECONDARY;
}
void Intl::InitKeyMapper(bool on)
{
lyxerr[Debug::INIT] << "Initializing key mappings..." << endl;
if (prim_lang.empty() && sec_lang.empty())
keymapon = false;
else
keymapon = on;
KeyMapOn(keymapon);
if (keymapon)
KeyMapPrim();
trans.SetPrimary(prim_lang);
trans.SetSecondary(sec_lang);
trans.setCharset(lyxrc.font_norm);
}