]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/xforms/FormThesaurus.C
Change glob() API to accept a dir parameter.
[lyx.git] / src / frontends / xforms / FormThesaurus.C
index b7ec39b0763d0636470b087e6a1a0a5f6755b7fd..245ea49207123910ebfeed1ecb4a15a2a8c21121 100644 (file)
@@ -5,35 +5,43 @@
  *
  * \author Edwin Leuven
  *
- * Full author contact details are available in file CREDITS
+ * Full author contact details are available in file CREDITS.
  */
 
 #include <config.h>
 
-
-#include "ControlThesaurus.h"
 #include "FormThesaurus.h"
+#include "ControlThesaurus.h"
 #include "forms/form_thesaurus.h"
-#include "xformsBC.h"
+
 #include "xforms_helpers.h"
-#include "debug.h"
+#include "xformsBC.h"
+
 #include "support/lstrings.h"
-#include FORMS_H_LOCATION
-#include <cctype>
+
+#include "lyx_forms.h"
 
 #ifndef CXX_GLOBAL_CSTD
-using std::isupper;
 using std::islower;
+using std::isupper;
 #endif
 
 using std::vector;
+using std::string;
 
+namespace lyx {
 
-typedef FormCB<ControlThesaurus, FormDB<FD_thesaurus> > base_class;
+using support::lowercase;
+using support::trim;
+using support::uppercase;
 
+namespace frontend {
 
-FormThesaurus::FormThesaurus()
-       : base_class(_("Thesaurus"), false),
+typedef FormController<ControlThesaurus, FormView<FD_thesaurus> > base_class;
+
+
+FormThesaurus::FormThesaurus(Dialog & parent)
+       : base_class(parent, _("Thesaurus"), false),
          clickline_(-1)
 {
 }
@@ -185,3 +193,6 @@ ButtonPolicy::SMInput FormThesaurus::input(FL_OBJECT * obj, long)
 
        return ButtonPolicy::SMI_VALID;
 }
+
+} // namespace frontend
+} // namespace lyx