]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/xforms/FormCharacter.C
Introduce LFUN_PRINT.
[lyx.git] / src / frontends / xforms / FormCharacter.C
index f20ec08aca1ee4120019a17014e40361e025df07..68628856855984a375186b696cc00967ecf82f6d 100644 (file)
@@ -6,38 +6,52 @@
  * \author Edwin Leuven
  * \author Angus Leeming
  *
- * Full author contact details are available in file CREDITS
+ * Full author contact details are available in file CREDITS.
  */
 
-#include <vector>
-
-
 #include <config.h>
 
-#include "xformsBC.h"
-#include "ButtonController.h"
-#include "ControlCharacter.h"
 #include "FormCharacter.h"
 #include "forms/form_character.h"
-#include "gettext.h"
-#include "helper_funcs.h"
+
 #include "xforms_helpers.h"
-#include FORMS_H_LOCATION
-#include "combox.h"
+#include "xformsBC.h"
+
+#include "controllers/frnt_lang.h"
+#include "controllers/helper_funcs.h"
 
-#include "frnt_lang.h"
+#include "LColor.h"
 
 #include "support/lstrings.h"
 
+#include "lyx_forms.h"
+#include "combox.h"
+
+using frnt::BarPair;
+using frnt::ColorPair;
+using frnt::FamilyPair;
+using frnt::getBarData;
+using frnt::getColorData;
+using frnt::getFamilyData;
+using frnt::getLanguageData;
+using frnt::getSeriesData;
+using frnt::getShapeData;
+using frnt::getSizeData;
+using frnt::LanguagePair;
+using frnt::SeriesPair;
+using frnt::ShapePair;
+using frnt::SizePair;
+
+using lyx::support::getStringFromVector;
+
 using std::vector;
-using std::find;
+using std::string;
 
-using namespace frnt;
 
 typedef FormController<ControlCharacter, FormView<FD_character> > base_class;
 
 FormCharacter::FormCharacter(Dialog & parent)
-       : base_class(parent, _("Character Layout"), false)
+       : base_class(parent, _("Text Style"), false)
 {}