]> git.lyx.org Git - features.git/commitdiff
idiot-patch from Angus, new latvian keymap
authorJean-Marc Lasgouttes <lasgouttes@lyx.org>
Tue, 24 Oct 2000 15:15:25 +0000 (15:15 +0000)
committerJean-Marc Lasgouttes <lasgouttes@lyx.org>
Tue, 24 Oct 2000 15:15:25 +0000 (15:15 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1149 a592a061-630c-0410-9148-cb99ea01b6c8

ChangeLog
lib/kbd/latvian.kmap [new file with mode: 0644]
src/frontends/xforms/FormInset.C
src/frontends/xforms/FormInset.h

index 39755945037745675c084e95dce68db3f37a6ea0..491f7fdf2b8d26f76efe55c588984c106b735309 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2000-10-24  Angus Leeming <a.leeming@ic.ac.uk>
+       
+       * src/frontends/xforms/FormInset.[Ch]: Aieeeeee! Ok, I'm an idiot. 
+       
+2000-10-24  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
+
+       * lib/kbd/latvian.kmap: new file from Janne Pänkälä (epa@iki.fi)
+
 2000-10-24  John Levon  <moz@compsoc.man.ac.uk>
 
        * src/frontends/kde/*data.[Ch]: _("") is not
diff --git a/lib/kbd/latvian.kmap b/lib/kbd/latvian.kmap
new file mode 100644 (file)
index 0000000..cae401b
--- /dev/null
@@ -0,0 +1,15 @@
+#
+# latvian.kmap
+#
+# this is for Latvian, with US Keyboard.
+# 2000 By Janne Pänkälä (epa@iki.fi)
+#
+# Characters that are (afaik ;/ ) needed are
+# g k n l with , underneath
+# c s z   with v above
+# a e i u with - above
+
+\kmod ^ caron cszCSZ
+\kmod - macron aeiuAEIU
+\kmod \, cedilla gknlGKNL
+
index d45f507768768e9121bc64de48966f470137641d..07d498302d300bb25fc1f4f178d6a278f4e73c2c 100644 (file)
@@ -29,6 +29,16 @@ FormInset::FormInset(LyXView * lv, Dialogs * d, string const & t,
 {}
 
 
+void FormInset::connect()
+{
+       u_ = d_->updateBufferDependent.
+                connect(slot(this, &FormInset::updateSlot));
+       h_ = d_->hideBufferDependent.
+                connect(slot(this, &FormInset::hide));
+       FormBase::connect();
+}
+
+
 void FormInset::disconnect()
 {
        ih_.disconnect();
index f523336ae33ef7cd70a6fcbd26370ede6ae9629e..40cedb80563c3b634d945fb211417d21af28e580 100644 (file)
@@ -30,6 +30,8 @@ protected:
                   char const * close = N_("Close"),
                   char const * cancel = N_("Cancel"));
 
+       /// Connect signals. Also perform any necessary initialisation.
+       virtual void connect();
        /// Disconnect signals. Also perform any necessary housekeeping.
        virtual void disconnect();