three missing files

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@619 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Lars Gullik Bjønnes 2000-03-17 10:26:26 +00:00
parent 014ebb2efe
commit 601889d75d
3 changed files with 102 additions and 0 deletions

74
lib/kbd/arabic.kmap Normal file
View File

@ -0,0 +1,74 @@
#
# Arabic keyboard definition for LyX
#
# Generated automatically from kikbd map by Adil Alsaid <alsaid@bigfoot.com>
#
\kmap q Ö
\kmap w Õ
\kmap e Ë
\kmap r â
\kmap t á
\kmap y Ú
\kmap u Ù
\kmap i ç
\kmap o Î
\kmap p Í
\kmap a Ô
\kmap s Ó
\kmap d ê
\kmap f È
\kmap g ä
\kmap h Ç
\kmap j Ê
\kmap k æ
\kmap l å
\kmap z Æ
\kmap x Á
\kmap c Ä
\kmap v Ñ
\kmap b ¡
\kmap n é
\kmap m É
\kmap ; ã
\kmap ' ×
\kmap "," è
\kmap . Ò
\kmap / Ø
\kmap ` ;
\kmap ` Ð
\kmap [ Ì
\kmap ] Ï
\kmap Q «
\kmap W ¨
\kmap E ¬
\kmap R ©
\kmap T ¤
\kmap Y Å
\kmap U º
\kmap I ç
\kmap O Î
\kmap P »
\kmap A ­
\kmap S ª
\kmap D [
\kmap F ]
\kmap G £
\kmap H Ã
\kmap J à
\kmap K º
\kmap L /
\kmap Z ®
\kmap X ¯
\kmap C {
\kmap V }
\kmap B ¢
\kmap N Â
\kmap M º
\kmap < ","
\kmap > .
\kmap ? ¿
\kmap ~ Ð
\kmap { <
\kmap } >

5
src/tracer.C Normal file
View File

@ -0,0 +1,5 @@
#include <config.h>
#include "tracer.h"
int DebugTracer::depth = 0;

23
src/tracer.h Normal file
View File

@ -0,0 +1,23 @@
#ifndef TRACER_H
#define TRACER_H
#include "debug.h"
#include "LString.h"
class DebugTracer {
public:
DebugTracer(string const & s) : str(s) {
lyxerr << string(depth, ' ') << "Trace begin : " << str << endl;
++depth;
}
~DebugTracer() {
--depth;
lyxerr << string(depth, ' ') << "Trace end : " << str << endl;
}
private:
string str;
static int depth;
};
#endif