idiot-patch from Angus, new latvian keymap

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1149 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Jean-Marc Lasgouttes 2000-10-24 15:15:25 +00:00
parent c9dbe4fd82
commit 0464bef7be
4 changed files with 35 additions and 0 deletions

View File

@ -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

15
lib/kbd/latvian.kmap Normal file
View File

@ -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

View 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();

View 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();