]> git.lyx.org Git - lyx.git/blobdiff - src/funcrequest.h
more action work
[lyx.git] / src / funcrequest.h
index 037cbb32ed81ff5f2e62815b8054181801a5c391..8a1d5acc01259e69702cb186d5074735c9fc7ee0 100644 (file)
@@ -1,21 +1,24 @@
+// -*- C++ -*-
 /**
  * \file funcrequest.h
- * Copyright 2002 the LyX Team
- * Read the file COPYING
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
  * \author André Pönitz
+ *
+ * Full author contact details are available in file CREDITS.
  */
 
 #ifndef FUNCREQUEST_H
 #define FUNCREQUEST_H
 
-#include "commandtags.h"
+#include "lfuns.h"
 #include "frontends/mouse_state.h"
-#include "LString.h"
+#include "support/std_string.h"
 
 class BufferView;
 
-/** 
+/**
  * This class encapsulates a LyX action and its argument
  * in order to pass it around easily.
  */
@@ -53,6 +56,9 @@ public:
        /// output an error message
        void errorMessage(string const & msg) const;
 
+       /// argument parsing, extract argument i as string
+       string getArg(unsigned int i) const;
+
 private:
        /// the BufferView we are talking to
        BufferView * view_;
@@ -69,4 +75,11 @@ public:  // should be private, too...
        mouse_button::state button_;
 };
 
+
+inline
+bool operator==(FuncRequest const & lhs, FuncRequest const & rhs)
+{
+       return lhs.action == rhs.action && lhs.argument == rhs.argument;
+}
+
 #endif // FUNCREQUEST_H