]> git.lyx.org Git - lyx.git/blobdiff - src/insets/inset.C
If I ever see another licence blurb again, it'll be too soon...
[lyx.git] / src / insets / inset.C
index 24db8ed9465b8f8c926bd46a5b9caa0fbcac64be..c86b238c779a92bdc71f9d515b9e632e31b8773b 100644 (file)
@@ -8,7 +8,7 @@
  * \author Lars Gullik Bjønnes
  * \author Matthias Ettrich
  *
- * Full author contact details are available in file CREDITS
+ * Full author contact details are available in file CREDITS.
  */
 
 #include <config.h>
@@ -48,7 +48,6 @@ InsetOld::InsetOld(InsetOld const & in)
        top_x(0), top_baseline(0), scx(0), id_(in.id_), owner_(0),
        name_(in.name_), background_color_(in.background_color_)
 {
-       lyxerr << "inset id: " << id_ << std::endl;
 }
 
 
@@ -160,3 +159,28 @@ int InsetOld::width() const
 {
        return dim_.wid;
 }
+
+
+bool InsetOld::insetAllowed(InsetOld * in) const
+{
+       return insetAllowed(in->lyxCode());
+}
+
+
+bool InsetOld::checkInsertChar(LyXFont &)
+{
+       return false;
+}
+
+
+bool isEditableInset(InsetOld const * i)
+{
+       return i && i->editable();
+}
+
+
+bool isHighlyEditableInset(InsetOld const * i)
+{
+       return i && i->editable() == InsetOld::HIGHLY_EDITABLE;
+}
+