]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/xforms/FormPreferences.h
try this for distinguishing inner and outer tabs
[lyx.git] / src / frontends / xforms / FormPreferences.h
index 2e58da727e2548923bf738c9f1b1b1f560246546..928f826f0e426ba9e1dacba0b88fd8459ce0df73 100644 (file)
 #ifndef FORMPREFERENCES_H
 #define FORMPREFERENCES_H
 
-#include <utility> // for pair
-
-#include "FormBase.h"
-#include "Color.h"
-
 #ifdef __GNUG_
 #pragma interface
 #endif
 
+#include <utility> // pair
+#include "FormBase.h"
+#include "Color.h" // NamedColor
+#include "xform_helpers.h" // XformColor
+
 class Combox;
-class Command;
 class Dialogs;
-class Format;
 class LyXView;
+class RGBColor;
 struct FD_form_colors;
 struct FD_form_converters;
 struct FD_form_formats;
@@ -57,20 +56,22 @@ public:
        ///
        ~FormPreferences();
        ///
-       static void ComboLanguageCB(int, void *, Combox *);
-       ///
        static int FeedbackCB(FL_OBJECT *, int,
                              FL_Coord, FL_Coord, int, void *);
 
 private:
+       /// Connect signals etc. Set form's max size.
+       virtual void connect();
+       /// Disconnect signals. Also perform any necessary housekeeping.
+       virtual void disconnect();
        /** Redraw the form (on receipt of a Signal indicating, for example,
            that the xform colours have been re-mapped). */
        virtual void redraw();
        /// Update the dialog.
        virtual void update();
-       ///
+       /// Hide the dialog.
        virtual void hide();
-       /// OK from dialog
+       /// OK (Save) from dialog
        virtual void ok();
        /// Apply from dialog
        virtual void apply();
@@ -78,206 +79,25 @@ private:
        virtual bool input(FL_OBJECT *, long);
        /// Build the dialog
        virtual void build();
-       /// control which feedback message is output
-       void feedback( FL_OBJECT * );
-       /// The handler for the preemptive feedback
-       void Feedback(FL_OBJECT *, int);
-       ///
+       /// Pointer to the actual instantiation of xform's form.
        virtual FL_FORM * form() const;
+       /// control which feedback message is output
+       void feedback(FL_OBJECT *);
 
-       /** Folder specific apply functions.
-        */
-       
-       ///
-       void applyColors(); // not const as modifies modifiedXformPrefs.
-       ///
-       void applyConverters() const;
-       ///
-       void applyFormats() const;
-       ///
-       void applyInputsMisc() const;
-       ///
-       void applyInterface() const;
-       ///
-       void applyLanguage(); // not const because calls updateLanguage!
-       ///
-       void applyLnFmisc() const;
-       ///
-       void applyOutputsMisc() const;
-       ///
-       void applyPaths(); // not const because calls updatePaths!
-       ///
-       void applyPrinter() const;
-       ///
-       void applyScreenFonts() const;
-       ///
-       void applySpellChecker(); // not const because calls updateSpellChecker!
-
-       /** Folder specific build functions.
-        */
-       
-       ///
-       void buildColors();
-       ///
-       void buildConverters();
-       ///
-       void buildFormats();
-       ///
-       void buildInputsMisc();
-       ///
-       void buildInterface();
-       ///
-       void buildLanguage();
-       ///
-       void buildLnFmisc();
-       ///
-       void buildOutputsMisc();
-       ///
-       void buildPaths();
-       ///
-       void buildPrinter();
-       ///
-       void buildScreenFonts();
-       ///
-       void buildSpellchecker();
-
-       /** Folder specific feedback functions.
-        */
-       
-       ///
-       string const feedbackColors(FL_OBJECT const * const) const;
-       ///
-       string const feedbackConverters(FL_OBJECT const * const) const;
-       ///
-       string const feedbackFormats( FL_OBJECT const * const ) const;
-       ///
-       string const feedbackInputsMisc(FL_OBJECT const * const) const;
-       ///
-       string const feedbackInterface(FL_OBJECT const * const) const;
-       ///
-       string const feedbackLanguage(FL_OBJECT const * const) const;
-       ///
-       string const feedbackLnFmisc(FL_OBJECT const * const) const;
-       ///
-       string const feedbackOutputsMisc(FL_OBJECT const * const) const;
-       ///
-       string const feedbackPaths(FL_OBJECT const * const) const;
-       ///
-       string const feedbackPrinter(FL_OBJECT const * const) const;
-       ///
-       string const feedbackScreenFonts(FL_OBJECT const * const) const;
-       ///
-       string const feedbackSpellChecker(FL_OBJECT const * const) const;
-
-       /** Folder specific input functions. Not all folders require one.
-        */
-       
-       ///
-       bool inputColors(FL_OBJECT const * const);
-       ///
-       bool inputConverters( FL_OBJECT const * const );
-       ///
-       bool inputFormats( FL_OBJECT const * const );
-       ///
-       bool inputLanguage(FL_OBJECT const * const);
-       ///
-       bool inputPaths(FL_OBJECT const * const);
-       ///
-       bool inputScreenFonts();
-       ///
-       bool inputSpellChecker(FL_OBJECT const * const);
-
-       /** Folder specific update functions.
-        */
-       
-       ///
-       void updateColors();
-       ///
-       void updateConverters();
-       ///
-       void updateFormats();
-       ///
-       void updateInputsMisc();
-       ///
-       void updateInterface();
-       ///
-       void updateLanguage();
-       ///
-       void updateLnFmisc();
-       ///
-       void updateOutputsMisc();
-       ///
-       void updatePaths();
-       ///
-       void updatePrinter();
-       ///
-       void updateScreenFonts();
-       ///
-       void updateSpellChecker();
-
-       /** Some helper functions for specific folders.
+               /// Set the preemptive handler for each FL_OBJECT.
+       static void setPreHandler(FL_OBJECT *);
+       /// The preemptive handler for feedback messages.
+       void Feedback(FL_OBJECT *, int);
+       /// Print a warning message and set warning flag.
+       void printWarning( string const & );
+       /** Launch a file dialog and modify input if it returns a new file.
+           For an explanation of the various parameters, see xform_helpers.h.
         */
+       void browse( FL_OBJECT * input,
+                    string const & title, string const & pattern, 
+                    std::pair<string,string> const & dir1,
+                    std::pair<string,string> const & dir2 );
        
-       ///
-       void ColorsAdjustVal( int, int, double ) const;
-       ///
-       bool ColorsBrowserLyX() const;
-       ///
-       bool ColorsBrowserX11() const;
-       ///
-       bool ColorsBrowseDatabase() const;
-       ///
-       bool ColorsDatabase() const;
-       ///
-       void ColorsLoadBrowserLyX();
-       ///
-       bool ColorsLoadBrowserX11(string const &) const;
-       ///
-       bool ColorsModify() const;
-       ///
-       bool ColorsRGB() const;
-       ///
-       int ColorsSearchEntry(RGBColor const &) const;
-
-       ///
-       bool ConvertersAdd();
-       ///
-       bool ConvertersBrowser();
-       ///
-       void ConvertersUpdateBrowser();
-       ///
-       bool ConvertersDelete();
-       ///
-       bool ConvertersInput();
-       ///
-       string const ConverterGetFrom() const;
-       ///
-       string const ConverterGetTo() const;
-       ///
-       void ConvertersUpdateChoices() const;
-
-       bool FormatsAdd();
-       ///
-       bool FormatsBrowser();
-       ///
-       void FormatsUpdateBrowser();
-       ///
-       bool FormatsDelete();
-       ///
-       bool FormatsInput();
-
-       ///
-       bool WriteableDir( string const & );
-       ///
-       bool ReadableDir( string const & );
-       ///
-       bool WriteableFile( string const &, string const & = string() );
-
-       ///
-       void setPreHandler( FL_OBJECT * ) const;
-       ///
-       void printWarning( string const & );
-
        /// Type definitions from the fdesign produced header file.
        FD_form_preferences * build_preferences();
        ///
@@ -318,53 +138,464 @@ private:
        /// Outputs tabfolder
        FD_form_outer_tab * outputs_tab_;
        /// Spellchecker, language stuff, etc
-       FD_form_outer_tab * usage_tab_;
+       FD_form_outer_tab * lang_opts_tab_;
+
+       /** Flag whether a warning has been posted to the text window.
+           If so, don't redraw the window when the mouse leaves an object. */
+       bool warningPosted;
+       
+       /** Each tab folder is encapsulated in its own class.
+        */
+
+       class Colors {
+       public:
+               ///
+               enum GuiColors {
+                       GUI_COLOR_CHOICE = FL_FREE_COL1,
+                       GUI_COLOR_HUE_DIAL = FL_FREE_COL2,
+                       GUI_COLOR_CURSOR = FL_FREE_COL3
+               };
+               ///
+               Colors( FormPreferences & p ) : parent_(p), dialog_(0) {}
+               ///
+               ~Colors();
+               ///
+               FD_form_colors const * dialog() { return dialog_; }
+               ///
+               void apply(); // not const as modifies modifiedXformPrefs.
+               ///
+               void build();
+               ///
+               string const feedback(FL_OBJECT const * const) const;
+               ///
+               void input(FL_OBJECT const * const);
+               ///
+               void update() { LoadBrowserLyX(); }
+               
+               /// Flag whether Xforms colors have changed since last file save
+               bool modifiedXformPrefs;
+
+       private:
+               ///
+               void AdjustVal( int, int, double ) const;
+               ///
+               void InputBrowserLyX() const;
+               ///
+               void InputHSV();
+               ///
+               void InputRGB();
+               ///
+               void LoadBrowserLyX();
+               ///
+               void Modify();
+               ///
+               void SwitchColorSpace() const;
+               ///
+               string const X11hexname(RGBColor const &) const;
+
+               ///
+               FormPreferences & parent_;
+               ///
+               FD_form_colors * dialog_;
+
+               /// A vector of LyX LColor GUI name and associated RGB color.
+               std::vector<NamedColor> lyxColorDB;
+               /// A vector of xform color ID, RGB colors and associated name.
+               std::vector<XformColor> xformColorDB;
+       };
        ///
-       FD_form_colors * colors_;
+       friend class Colors;
+
+       ///
+       class Converters {
+       public:
+               ///
+               Converters( FormPreferences & p ) : parent_(p), dialog_(0) {}
+               ///
+               ~Converters();
+               ///
+               FD_form_converters const * dialog() { return dialog_; }
+               ///
+               void apply() const;
+               ///
+               void build();
+               ///
+               string const feedback(FL_OBJECT const * const) const;
+               ///
+               bool input( FL_OBJECT const * const );
+               ///
+               void update();
+               ///
+               void UpdateBrowser();
+               ///
+               void UpdateChoices() const;
+
+       private:
+               ///
+               bool Add();
+               ///
+               bool Browser();
+               ///
+               bool Delete();
+               ///
+               bool Input();
+               ///
+               string const GetFrom() const;
+               ///
+               string const GetTo() const;
+
+               ///
+               FormPreferences & parent_;
+               ///
+               FD_form_converters * dialog_;
+       };
+       ///
+       friend class Converters;
+
+       ///
+       class Formats {
+       public:
+               ///
+               Formats( FormPreferences &  p ) : parent_(p), dialog_(0) {}
+               ///
+               ~Formats();
+               ///
+               FD_form_formats const * dialog() { return dialog_; }
+               ///
+               void apply() const;
+               ///
+               void build();
+               ///
+               string const feedback(FL_OBJECT const * const) const;
+               ///
+               bool input( FL_OBJECT const * const );
+               ///
+               void update();
+
+       private:
+               ///
+               bool Add();
+               ///
+               bool Browser();
+               ///
+               void UpdateBrowser();
+               ///
+               bool Delete();
+               ///
+               bool Input();
+
+               ///
+               FormPreferences & parent_;
+               ///
+               FD_form_formats * dialog_;
+       };
+       ///
+       friend class Formats;
+
+       ///
+       class InputsMisc {
+       public:
+               ///
+               InputsMisc( FormPreferences &  p ) : parent_(p), dialog_(0) {}
+               ///
+               ~InputsMisc();
+               ///
+               FD_form_inputs_misc const * dialog() { return dialog_; }
+               ///
+               void apply() const;
+               ///
+               void build();
+               ///
+               string const feedback(FL_OBJECT const * const) const;
+               ///
+               void update();
+
+       private:
+               ///
+               FormPreferences & parent_;
+               ///
+               FD_form_inputs_misc * dialog_;
+       };
+       ///
+       friend class InputsMisc;
+       
+       ///
+       class Interface {
+       public:
+               ///
+               Interface( FormPreferences &  p ) : parent_(p), dialog_(0) {}
+               ///
+               ~Interface();
+               ///
+               FD_form_interface const * dialog() { return dialog_; }
+               ///
+               void apply() const;
+               ///
+               void build();
+               ///
+               string const feedback(FL_OBJECT const * const) const;
+               ///
+               bool input( FL_OBJECT const * const );
+               ///
+               void update();
+
+       private:
+               ///
+               FormPreferences & parent_;
+               ///
+               FD_form_interface * dialog_;
+       };
+       ///
+       friend class Interface;
+
+       ///
+       class Language {
+       public:
+               ///
+               Language( FormPreferences &  p )
+                       : parent_(p), dialog_(0), combo_default_lang(0) {}
+               ///
+               ~Language();
+               ///
+               FD_form_language const * dialog() { return dialog_; }
+               ///
+               void apply(); // not const because calls update()
+               ///
+               void build();
+               ///
+               string const feedback(FL_OBJECT const * const) const;
+               ///
+               bool input( FL_OBJECT const * const );
+               ///
+               void update();
+               ///
+               static void ComboCB(int, void *, Combox *);
+
+       private:
+               ///
+               FormPreferences & parent_;
+               ///
+               FD_form_language * dialog_;
+               ///
+               Combox * combo_default_lang;
+       };
+       ///
+       friend class Language;
+       
+       ///
+       class LnFmisc {
+       public:
+               ///
+               LnFmisc( FormPreferences &  p ) : parent_(p), dialog_(0) {}
+               ///
+               ~LnFmisc();
+               ///
+               FD_form_lnf_misc const * dialog() { return dialog_; }
+               ///
+               void apply() const;
+               ///
+               void build();
+               ///
+               string const feedback(FL_OBJECT const * const) const;
+               ///
+               void update();
+
+       private:
+               ///
+               FormPreferences & parent_;
+               ///
+               FD_form_lnf_misc * dialog_;
+       };
+       ///
+       friend class LnFmisc;
+
        ///
-       FD_form_converters * converters_;
+       class OutputsMisc {
+       public:
+               ///
+               OutputsMisc( FormPreferences &  p ) : parent_(p), dialog_(0) {}
+               ///
+               ~OutputsMisc();
+               ///
+               FD_form_outputs_misc const * dialog() { return dialog_; }
+               ///
+               void apply() const;
+               ///
+               void build();
+               ///
+               string const feedback(FL_OBJECT const * const) const;
+               ///
+               void update();
+
+       private:
+               ///
+               FormPreferences & parent_;
+               ///
+               FD_form_outputs_misc * dialog_;
+       };
+       ///
+       friend class OutputsMisc;
+
        ///
-       FD_form_formats * formats_;
+       class Paths {
+       public:
+               ///
+               Paths( FormPreferences &  p ) : parent_(p), dialog_(0) {}
+               ///
+               ~Paths();
+               ///
+               FD_form_paths const * dialog() { return dialog_; }
+               ///
+               void apply();
+               ///
+               void build();
+               ///
+               string const feedback(FL_OBJECT const * const) const;
+               ///
+               bool input(FL_OBJECT const * const);
+               ///
+               void update();
+
+       private:
+               ///
+               FormPreferences & parent_;
+               ///
+               FD_form_paths * dialog_;
+       };
+       ///
+       friend class Paths;
+
        ///
-       FD_form_inputs_misc * inputs_misc_;
+       class Printer {
+       public:
+               ///
+               Printer( FormPreferences &  p ) : parent_(p), dialog_(0) {}
+               ///
+               ~Printer();
+               ///
+               FD_form_printer const * dialog() { return dialog_; }
+               ///
+               void apply() const;
+               ///
+               void build();
+               ///
+               string const feedback(FL_OBJECT const * const) const;
+               ///
+               void update();
+
+       private:
+               ///
+               FormPreferences & parent_;
+               ///
+               FD_form_printer * dialog_;
+       };
+       ///
+       friend class Printer;
+
        ///
-       FD_form_interface * interface_;
+       class ScreenFonts {
+       public:
+               ///
+               ScreenFonts( FormPreferences &  p ) : parent_(p), dialog_(0) {}
+               ///
+               ~ScreenFonts();
+               ///
+               FD_form_screen_fonts const * dialog() { return dialog_; }
+               ///
+               void apply() const;
+               ///
+               void build();
+               ///
+               string const feedback(FL_OBJECT const * const) const;
+               ///
+               bool input();
+               ///
+               void update();
+
+       private:
+               ///
+               FormPreferences & parent_;
+               ///
+               FD_form_screen_fonts * dialog_;
+       };
+       ///
+       friend class ScreenFonts;
+
        ///
-       FD_form_language * language_;
+       class SpellChecker {
+       public:
+               ///
+               SpellChecker( FormPreferences &  p ) : parent_(p), dialog_(0) {}
+               ///
+               ~SpellChecker();
+               ///
+               FD_form_spellchecker const * dialog() { return dialog_; }
+               ///
+               void apply(); // not const because calls update()!
+               ///
+               void build();
+               ///
+               string const feedback(FL_OBJECT const * const) const;
+               ///
+               bool input(FL_OBJECT const * const);
+               ///
+               void update();
+
+       private:
+               ///
+               FormPreferences & parent_;
+               ///
+               FD_form_spellchecker * dialog_;
+       };
+       ///
+       friend class SpellChecker;
+
+       /** The tab folders.
+        */
+       
+       ///
+       Colors colors_;
+       ///
+       Converters converters_;
        ///
-       FD_form_lnf_misc * lnf_misc_;
+       InputsMisc inputs_misc_;
        ///
-       FD_form_outputs_misc * outputs_misc_;
+       Formats formats_;
        ///
-       FD_form_paths * paths_;
+       Interface interface_;
        ///
-       FD_form_printer * printer_;
+       Language language_;
        ///
-       FD_form_screen_fonts * screen_fonts_;
+       LnFmisc lnf_misc_;
        ///
-       FD_form_spellchecker * spellchecker_;
+       OutputsMisc outputs_misc_;
        ///
-       Combox * combo_default_lang;
+       Paths paths_;
        ///
-       Combox * combo_kbmap_1;
+       Printer printer_;
        ///
-       Combox * combo_kbmap_2;
+       ScreenFonts screen_fonts_;
+       ///
+       SpellChecker spellchecker_;
+
+       /** A couple of helper structs to enable colors to be sorted by name
+           and by color */
+       ///
+       struct SortColorsByName {
+               ///
+               int operator()(NamedColor const & a, NamedColor const & b) const
+                       { return (a.getname() < b.getname()); }
+       };
+       ///
+       struct SortColorsByColor {
+               ///
+               SortColorsByColor(RGBColor c) : col(c) {}
+               ///
+               int operator()(RGBColor const &, RGBColor const &) const;
+               ///
+               RGBColor col;
+       };
 
-       /// A vector of RGB colors and associated name.
-       static std::vector<X11Color> colorDB;
-       /// A vector of xform RGB colors and associated name.
-       static std::vector<XformColor> xformColorDB;
-       /** A collection of kmap files.
-           First entry is the file name, full path.
-           Second entry is the shorthand, as appears in the fl_choice.
-           Eg, system_lyxdir/kbd/american2.kmap, american2
-       */
-       static std::pair<std::vector<string>, std::vector<string> > dirlist;
-       /** Flag whether a warning has been posted to the text window.
-           If so, don't redraw the window when the mouse leaves an object. */
-       bool warningPosted;
-       /// Flag whether Xforms colors have been changed since last file save.
-       bool modifiedXformPrefs;
 };
 
 #endif