mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
188833d864
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@312 a592a061-630c-0410-9148-cb99ea01b6c8
108 lines
1.7 KiB
C
108 lines
1.7 KiB
C
/* This file is part of
|
|
* ======================================================
|
|
*
|
|
* LyX, The Document Processor
|
|
*
|
|
* Copyright 1995 Matthias Ettrich
|
|
* Copyright 1995-1999 The LyX Team.
|
|
*
|
|
* ====================================================== */
|
|
|
|
#include <config.h>
|
|
|
|
#ifdef __GNUG__
|
|
#pragma implementation "lyxinset.h"
|
|
#endif
|
|
|
|
#include "lyxinset.h"
|
|
#include "debug.h"
|
|
#include "support/lstrings.h"
|
|
|
|
/* Insets default methods */
|
|
|
|
bool Inset::Deletable() const
|
|
{
|
|
return true;
|
|
}
|
|
|
|
|
|
bool Inset::DirectWrite() const
|
|
{
|
|
return false;
|
|
}
|
|
|
|
|
|
unsigned char Inset::Editable() const
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
|
|
void Inset::Validate(LaTeXFeatures &) const
|
|
{
|
|
}
|
|
|
|
|
|
bool Inset::AutoDelete() const
|
|
{
|
|
return false;
|
|
}
|
|
|
|
|
|
void Inset::Edit(int, int)
|
|
{
|
|
}
|
|
|
|
|
|
LyXFont Inset::ConvertFont(LyXFont font)
|
|
{
|
|
return font;
|
|
}
|
|
|
|
|
|
/* some stuff for inset locking */
|
|
|
|
void UpdatableInset::InsetButtonPress(int x, int y, int button)
|
|
{
|
|
lyxerr.debug() << "Inset Button Press x=" << x
|
|
<< ", y=" << y << ", button=" << button << endl;
|
|
}
|
|
|
|
|
|
void UpdatableInset::InsetButtonRelease(int x, int y, int button)
|
|
{
|
|
lyxerr.debug() << "Inset Button Release x=" << x
|
|
<< ", y=" << y << ", button=" << button << endl;
|
|
}
|
|
|
|
|
|
void UpdatableInset::InsetKeyPress(XKeyEvent *)
|
|
{
|
|
lyxerr.debug() << "Inset Keypress" << endl;
|
|
}
|
|
|
|
|
|
void UpdatableInset::InsetMotionNotify(int x, int y, int state)
|
|
{
|
|
lyxerr.debug() << "Inset Motion Notify x=" << x
|
|
<< ", y=" << y << ", state=" << state << endl;
|
|
}
|
|
|
|
|
|
void UpdatableInset::InsetUnlock()
|
|
{
|
|
lyxerr.debug() << "Inset Unlock" << endl;
|
|
}
|
|
|
|
|
|
// An updatable inset is highly editable by definition
|
|
unsigned char UpdatableInset::Editable() const
|
|
{
|
|
return 2; // and what does "2" siginify? (Lgb)
|
|
}
|
|
|
|
|
|
void UpdatableInset::ToggleInsetCursor()
|
|
{
|
|
}
|