]> git.lyx.org Git - lyx.git/blobdiff - src/insets/inset.C
pos=string::npos for regex not found, use handcoded transform in lstring.C, fix the...
[lyx.git] / src / insets / inset.C
index 4e09297a81c10b6e3d47b9a5d565499d69a18d09..7a2293118edb77234a05c505e82c0b30b03ac274 100644 (file)
@@ -1,12 +1,12 @@
 /* This file is part of
- * ======================================================
+ * ====================================================== 
  * 
  *           LyX, The Document Processor
  *      
- *         Copyright (C) 1995 Matthias Ettrich
- *          Copyright (C) 1995-1998 The LyX Team.
+ *         Copyright 1995 Matthias Ettrich
+ *          Copyright 1995-1999 The LyX Team.
  *
- *======================================================*/
+ * ====================================================== */
 
 #include <config.h>
 
 #endif
 
 #include "lyxinset.h"
-#include "error.h"
-
-//     $Id: inset.C,v 1.1 1999/09/27 18:44:38 larsbj Exp $     
-
-#if !defined(lint) && !defined(WITH_WARNINGS)
-static char vcid[] = "$Id: inset.C,v 1.1 1999/09/27 18:44:38 larsbj Exp $";
-#endif /* lint */
+#include "debug.h"
+#include "support/lstrings.h"
 
 /* Insets default methods */
 
@@ -42,13 +37,12 @@ unsigned char Inset::Editable() const
   return 0;
 }
 
+
 void Inset::Validate(LaTeXFeatures &) const
 {
-       // nothing by default
 }
 
 
-
 bool Inset::AutoDelete() const
 {
   return false;
@@ -66,44 +60,38 @@ LyXFont Inset::ConvertFont(LyXFont font)
 }
 
 
-// Inset::Code Inset::LyxCode() const
-// {
-//   return Inset::NO_CODE;
-// }
-
  /* some stuff for inset locking */
 
-
 void UpdatableInset::InsetButtonPress(int x, int y, int button)
 {
-       lyxerr.debug(LString("Inset Button Press x=")+ x +
-                     ", y=" + y + ", button=" + button);
+       lyxerr.debug() << "Inset Button Press x=" << x
+                      << ", y=" << y << ", button=" << button << endl;
 }
 
 
 void UpdatableInset::InsetButtonRelease(int x, int y, int button)
 {
-       lyxerr.debug(LString("Inset Button Release x=")+ x +
-                     ", y=" + y + ", button=" + button);
+       lyxerr.debug() << "Inset Button Release x=" << x
+                      << ", y=" << y << ", button=" << button << endl;
 }
 
 
 void UpdatableInset::InsetKeyPress(XKeyEvent *)
 {
-       lyxerr.debug("Inset Keypress");
+       lyxerr.debug() << "Inset Keypress" << endl;
 }
 
 
 void UpdatableInset::InsetMotionNotify(int x, int y, int state)
 {
-       lyxerr.debug(LString("Inset Motion Notify x=")+ x +
-                     ", y=" + y + ", state=" + state);
+       lyxerr.debug() << "Inset Motion Notify x=" << x
+                      << ", y=" << y << ", state=" << state << endl;
 }
 
 
 void UpdatableInset::InsetUnlock()
 {
-       lyxerr.debug("Inset Unlock", Error::ANY);
+       lyxerr.debug() << "Inset Unlock" << endl;
 }
 
 
@@ -116,5 +104,4 @@ unsigned char UpdatableInset::Editable() const
 
 void UpdatableInset::ToggleInsetCursor()
 {
-  // nothing
 }