]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/controllers/ControlNote.C
Finish the task of removing all cruft from the header files.
[lyx.git] / src / frontends / controllers / ControlNote.C
index 4a50523e39e5c6a7e2f2f414109e244946bcd2c8..21247d8557a0d5ccd7e75d9ba00d70f96fc5481a 100644 (file)
@@ -5,7 +5,7 @@
  *
  * \author Angus Leeming
  *
- * Full author contact details are available in file CREDITS
+ * Full author contact details are available in file CREDITS.
  */
 
 #include <config.h>
 #include "ControlNote.h"
 #include "funcrequest.h"
 #include "insets/insetnote.h"
-#include "debug.h"
+#include "gettext.h"
+
+
+using std::vector;
+
 
 ControlNote::ControlNote(Dialog & parent)
        : Dialog::Controller(parent)
@@ -36,9 +40,21 @@ void ControlNote::clearParams()
        params_.reset();
 }
 
+
 void ControlNote::dispatchParams()
 {
        string const lfun = InsetNoteMailer::params2string(string("note"), params());
        kernel().dispatch(FuncRequest(LFUN_INSET_APPLY, lfun));
 }
 
+
+void note_gui_tokens(vector<string> & ids, vector<string> & gui_names)
+{
+       char const * const ids_[] = {"Note", "Comment", "Greyedout"};
+       size_t const ids_size = sizeof(ids_) / sizeof(char *);
+       ids = vector<string>(ids_, ids_ + ids_size);
+       gui_names.clear();
+       gui_names.push_back(_("LyX Note"));
+       gui_names.push_back(_("Comment"));
+       gui_names.push_back(_("Greyed Out"));
+}