]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/xforms/FormPreferences.h
remove defaults stuff, let Qt handle no toolbar
[lyx.git] / src / frontends / xforms / FormPreferences.h
index 81b202f30f678d9d3ad51e40896d831cb5628aef..9ef2f6adfb27806d8151d8ebdc2388dc1e0a156e 100644 (file)
 // -*- C++ -*-
-/* This file is part of
- * ======================================================
- * 
- *           LyX, The Document Processor
- *      
- *         Copyright 1995 Matthias Ettrich
- *          Copyright 1995-2000 The LyX Team.
+/**
+ * \file FormPreferences.h
+ * Copyright 1999-2001 Allan Rae
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- *         This file copyright 1999-2000
- *         Allan Rae
- *======================================================*/
-/* FormPreferences.h
- * FormPreferences Interface Class
+ * \author Allan Rae
+ * \author Angus Leeming
+ *
+ * Full author contact details are available in file CREDITS
  */
 
 #ifndef FORMPREFERENCES_H
 #define FORMPREFERENCES_H
 
-#include <utility> // for pair
 
 #include "FormBase.h"
-#include "Color.h"
+#include "Color.h" // NamedColor
+#include "xforms_helpers.h" // XformColor
+
+#include <boost/scoped_ptr.hpp>
 
-#ifdef __GNUG_
-#pragma interface
-#endif
+#include FORMS_H_LOCATION
+#include <utility> // pair
+
+class ControlPrefs;
 
-class Combox;
-class Command;
 class Dialogs;
-class Format;
 class LyXView;
-struct FD_form_colors;
-struct FD_form_converters;
-struct FD_form_formats;
-struct FD_form_inputs_misc;
-struct FD_form_interface;
-struct FD_form_language;
-struct FD_form_lnf_misc;
-struct FD_form_outer_tab;
-struct FD_form_outputs_misc;
-struct FD_form_paths;
-struct FD_form_preferences;
-struct FD_form_printer;
-struct FD_form_screen_fonts;
-struct FD_form_spellchecker;
+class RGBColor;
+struct FD_preferences;
+struct FD_preferences_colors;
+struct FD_preferences_converters;
+struct FD_preferences_formats;
+struct FD_preferences_inputs_misc;
+struct FD_preferences_interface;
+struct FD_preferences_language;
+struct FD_preferences_lnf_misc;
+struct FD_preferences_identity;
+struct FD_preferences_inner_tab;
+struct FD_preferences_outputs_misc;
+struct FD_preferences_paths;
+struct FD_preferences_printer;
+struct FD_preferences_screen_fonts;
+struct FD_preferences_spelloptions;
 
 
 /** This class provides an XForms implementation of the FormPreferences Dialog.
   The preferences dialog allows users to set/save their preferences.
*  The preferences dialog allows users to set/save their preferences.
  */
-class FormPreferences : public FormBaseBI {
+class FormPreferences : public FormCB<ControlPrefs, FormDB<FD_preferences> > {
 public:
-       /// #FormPreferences x(LyXFunc ..., Dialogs ...);#
-       FormPreferences(LyXView *, Dialogs *);
-       ///
-       ~FormPreferences();
-       ///
-       static int FeedbackCB(FL_OBJECT *, int,
-                             FL_Coord, FL_Coord, int, void *);
+       FormPreferences();
 
 private:
        /** Redraw the form (on receipt of a Signal indicating, for example,
-           that the xform colours have been re-mapped). */
+           that the xforms colours have been re-mapped). */
        virtual void redraw();
        /// Update the dialog.
        virtual void update();
-       ///
+       /// Hide the dialog.
        virtual void hide();
-       /// OK from dialog
-       virtual void ok();
        /// Apply from dialog
        virtual void apply();
        /// Filter the inputs -- return true if entries are valid
-       virtual bool input(FL_OBJECT *, long);
+       virtual ButtonPolicy::SMInput 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);
-       ///
-       virtual FL_FORM * form() const;
+       string const getFeedback(FL_OBJECT *);
 
-       /** Helper functions available to the various tab folders.
-        */
-
-       ///
-       bool WriteableDir( string const & );
-       ///
-       bool ReadableDir( string const & );
-       ///
-       bool WriteableFile( string const &, string const & = string() );
-       ///
-       bool ReadableFile( string const &, string const & = string() );
-       ///
-       void setPreHandler( FL_OBJECT * ) const;
-       ///
-       void printWarning( string const & );
-
-       /** title: filedlg title, pattern: *.ps etc
-           extra buttons on filedlg: dir1 = (name, dir), dir2 = (name, dir)
-        */
-       
-       ///
-       bool browse( FL_OBJECT * input,
-                    string const & title, string const & pattern, 
-                    std::pair<string,string> const & dir1 =
-                       std::pair<string,string>(),
-                    std::pair<string,string> const & dir2 =
-                       std::pair<string,string>() );
-       /// called from browse()
-       string const browseFile( string const & filename,
-                                string const & title, string const & pattern, 
-                                std::pair<string,string> const & dir1,
-                                std::pair<string,string> const & dir2 ) const;
-
-       /** 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;
-       
-       /// Type definitions from the fdesign produced header file.
-       FD_form_preferences * build_preferences();
-       ///
-       FD_form_outer_tab * build_outer_tab();
-       ///
-       FD_form_colors * build_colors();
-       ///
-       FD_form_converters * build_converters();
-       ///
-       FD_form_formats * build_formats();
-       ///
-       FD_form_inputs_misc * build_inputs_misc();
-       ///
-       FD_form_interface * build_interface();
-       ///
-       FD_form_language * build_language();
-       ///
-       FD_form_lnf_misc * build_lnf_misc();
-       ///
-       FD_form_outputs_misc * build_outputs_misc();
-       ///
-       FD_form_paths * build_paths();
-       ///
-       FD_form_printer * build_printer();
-       ///
-       FD_form_screen_fonts * build_screen_fonts();
-       ///
-       FD_form_spellchecker * build_spellchecker();
-
-       /// Real GUI implementation.
-       FD_form_preferences * dialog_;
+       /// Converters tabfolder
+       boost::scoped_ptr<FD_preferences_inner_tab> converters_tab_;
        /// reLyX and other import/input stuff
-       FD_form_outer_tab * inputs_tab_;
+       boost::scoped_ptr<FD_preferences_inner_tab> inputs_tab_;
        /// HCI configuration
-       FD_form_outer_tab * look_n_feel_tab_;
-       /// Converters tabfolder
-       FD_form_outer_tab * converters_tab_;
+       boost::scoped_ptr<FD_preferences_inner_tab> look_n_feel_tab_;
        /// Outputs tabfolder
-       FD_form_outer_tab * outputs_tab_;
+       boost::scoped_ptr<FD_preferences_inner_tab> outputs_tab_;
        /// Spellchecker, language stuff, etc
-       FD_form_outer_tab * usage_tab_;
+       boost::scoped_ptr<FD_preferences_inner_tab> lang_opts_tab_;
 
        /** Each tab folder is encapsulated in its own class.
         */
@@ -168,52 +87,54 @@ private:
        class Colors {
        public:
                ///
-               Colors( FormPreferences & p ) : parent_(p), dialog_(0) {}
+               enum GuiColors {
+                       GUI_COLOR_CHOICE   = FL_FREE_COL14,
+                       GUI_COLOR_HUE_DIAL = FL_FREE_COL15,
+                       GUI_COLOR_CURSOR   = FL_FREE_COL16
+               };
                ///
-               ~Colors();
+               Colors(FormPreferences & p);
                ///
-               FD_form_colors const * dialog() { return dialog_; }
+               FD_preferences_colors const * dialog();
                ///
-               void apply(); // not const as modifies modifiedXformPrefs.
+               void apply(); // not const as modifies modifiedXformsPrefs.
                ///
                void build();
                ///
                string const feedback(FL_OBJECT const * const) const;
                ///
-               bool input(FL_OBJECT const * const);
+               void input(FL_OBJECT const * const);
                ///
-               void update();
+               void update() { LoadBrowserLyX(); }
+
                /// Flag whether Xforms colors have changed since last file save
-               bool modifiedXformPrefs;
+               bool modifiedXformsPrefs;
 
        private:
                ///
-               void AdjustVal( int, int, double ) const;
+               void AdjustVal(int, int, double) const;
                ///
-               bool BrowserLyX() const;
+               void InputBrowserLyX() const;
                ///
-               bool BrowserX11() const;
+               void InputHSV();
                ///
-               bool Database();
+               void InputRGB();
                ///
                void LoadBrowserLyX();
                ///
-               bool LoadBrowserX11(string const &) const;
-               ///
-               bool Modify() const;
-               ///
-               bool RGB() const;
+               void Modify();
                ///
-               int SearchEntry(RGBColor const &) const;
+               void SwitchColorSpace() const;
 
                ///
                FormPreferences & parent_;
                ///
-               FD_form_colors * dialog_;
-               /// 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;
+               boost::scoped_ptr<FD_preferences_colors> dialog_;
+
+               /// A vector of LyX LColor GUI name and associated RGB color.
+               std::vector<NamedColor> lyxColorDB;
+               /// A vector of xforms color ID, RGB colors and associated name.
+               std::vector<XformsColor> xformsColorDB;
        };
        ///
        friend class Colors;
@@ -222,11 +143,9 @@ private:
        class Converters {
        public:
                ///
-               Converters( FormPreferences &  p ) : parent_(p), dialog_(0) {}
-               ///
-               ~Converters();
+               Converters(FormPreferences & p);
                ///
-               FD_form_converters const * dialog() { return dialog_; }
+               FD_preferences_converters const * dialog();
                ///
                void apply() const;
                ///
@@ -234,7 +153,7 @@ private:
                ///
                string const feedback(FL_OBJECT const * const) const;
                ///
-               bool input( FL_OBJECT const * const );
+               bool input(FL_OBJECT const * const);
                ///
                void update();
                ///
@@ -248,7 +167,7 @@ private:
                ///
                bool Browser();
                ///
-               bool Delete();
+               bool erase();
                ///
                bool Input();
                ///
@@ -259,7 +178,7 @@ private:
                ///
                FormPreferences & parent_;
                ///
-               FD_form_converters * dialog_;
+               boost::scoped_ptr<FD_preferences_converters> dialog_;
        };
        ///
        friend class Converters;
@@ -268,11 +187,9 @@ private:
        class Formats {
        public:
                ///
-               Formats( FormPreferences &  p ) : parent_(p), dialog_(0) {}
-               ///
-               ~Formats();
+               Formats(FormPreferences &  p);
                ///
-               FD_form_formats const * dialog() { return dialog_; }
+               FD_preferences_formats const * dialog();
                ///
                void apply() const;
                ///
@@ -280,7 +197,7 @@ private:
                ///
                string const feedback(FL_OBJECT const * const) const;
                ///
-               bool input( FL_OBJECT const * const );
+               bool input(FL_OBJECT const * const);
                ///
                void update();
 
@@ -292,14 +209,14 @@ private:
                ///
                void UpdateBrowser();
                ///
-               bool Delete();
+               bool erase();
                ///
                bool Input();
 
                ///
                FormPreferences & parent_;
                ///
-               FD_form_formats * dialog_;
+               boost::scoped_ptr<FD_preferences_formats> dialog_;
        };
        ///
        friend class Formats;
@@ -308,54 +225,50 @@ private:
        class InputsMisc {
        public:
                ///
-               InputsMisc( FormPreferences &  p ) : parent_(p), dialog_(0) {}
-               ///
-               ~InputsMisc();
+               InputsMisc(FormPreferences &  p);
                ///
-               FD_form_inputs_misc const * dialog() { return dialog_; }
+               FD_preferences_inputs_misc const * dialog();
                ///
-               void apply() const;
+               void apply(LyXRC & rc) const;
                ///
                void build();
                ///
                string const feedback(FL_OBJECT const * const) const;
                ///
-               void update();
+               void update(LyXRC const & rc);
 
        private:
                ///
                FormPreferences & parent_;
                ///
-               FD_form_inputs_misc * dialog_;
+               boost::scoped_ptr<FD_preferences_inputs_misc> dialog_;
        };
        ///
        friend class InputsMisc;
-       
+
        ///
        class Interface {
        public:
                ///
-               Interface( FormPreferences &  p ) : parent_(p), dialog_(0) {}
-               ///
-               ~Interface();
+               Interface(FormPreferences &  p);
                ///
-               FD_form_interface const * dialog() { return dialog_; }
+               FD_preferences_interface const * dialog();
                ///
-               void apply() const;
+               void apply(LyXRC & rc) const;
                ///
                void build();
                ///
                string const feedback(FL_OBJECT const * const) const;
                ///
-               bool input( FL_OBJECT const * const );
+               bool input(FL_OBJECT const * const);
                ///
-               void update();
+               void update(LyXRC const & rc);
 
        private:
                ///
                FormPreferences & parent_;
                ///
-               FD_form_interface * dialog_;
+               boost::scoped_ptr<FD_preferences_interface> dialog_;
        };
        ///
        friend class Interface;
@@ -364,86 +277,100 @@ private:
        class Language {
        public:
                ///
-               Language( FormPreferences &  p )
-                       : parent_(p), dialog_(0), combo_default_lang(0) {}
+               Language(FormPreferences &  p);
                ///
-               ~Language();
+               FD_preferences_language const * dialog();
                ///
-               FD_form_language const * dialog() { return dialog_; }
-               ///
-               void apply(); // not const because calls update()
+               void apply(LyXRC & rc); // not const because calls update()
                ///
                void build();
                ///
                string const feedback(FL_OBJECT const * const) const;
                ///
-               bool input( FL_OBJECT const * const );
-               ///
-               void update();
+               bool input(FL_OBJECT const * const);
                ///
-               static void ComboCB(int, void *, Combox *);
+               void update(LyXRC const & rc);
 
        private:
                ///
                FormPreferences & parent_;
                ///
-               FD_form_language * dialog_;
+               boost::scoped_ptr<FD_preferences_language> dialog_;
                ///
-               Combox * combo_default_lang;
+               std::vector<string> lang_;
        };
        ///
        friend class Language;
-       
+
        ///
        class LnFmisc {
        public:
                ///
-               LnFmisc( FormPreferences &  p ) : parent_(p), dialog_(0) {}
-               ///
-               ~LnFmisc();
+               LnFmisc(FormPreferences &  p);
                ///
-               FD_form_lnf_misc const * dialog() { return dialog_; }
+               FD_preferences_lnf_misc const * dialog();
                ///
-               void apply() const;
+               void apply(LyXRC & rc) const;
                ///
                void build();
                ///
                string const feedback(FL_OBJECT const * const) const;
                ///
-               void update();
+               void update(LyXRC const & rc);
 
        private:
                ///
                FormPreferences & parent_;
                ///
-               FD_form_lnf_misc * dialog_;
+               boost::scoped_ptr<FD_preferences_lnf_misc> dialog_;
        };
        ///
        friend class LnFmisc;
 
+       class Identity {
+       public:
+               ///
+               Identity(FormPreferences &  p);
+               ///
+               FD_preferences_identity const * dialog();
+               ///
+               void apply(LyXRC & rc) const;
+               ///
+               void build();
+               ///
+               string const feedback(FL_OBJECT const * const) const;
+               ///
+               void update(LyXRC const & rc);
+
+       private:
+               ///
+               FormPreferences & parent_;
+               ///
+               boost::scoped_ptr<FD_preferences_identity> dialog_;
+       };
+       friend class Identity;
+
        ///
        class OutputsMisc {
        public:
                ///
-               OutputsMisc( FormPreferences &  p ) : parent_(p), dialog_(0) {}
-               ///
-               ~OutputsMisc();
+               OutputsMisc(FormPreferences &  p);
                ///
-               FD_form_outputs_misc const * dialog() { return dialog_; }
+               FD_preferences_outputs_misc const * dialog();
                ///
-               void apply() const;
+               void apply(LyXRC & rc) const;
                ///
                void build();
                ///
                string const feedback(FL_OBJECT const * const) const;
                ///
-               void update();
+               void update(LyXRC const & rc);
 
        private:
                ///
                FormPreferences & parent_;
                ///
-               FD_form_outputs_misc * dialog_;
+               boost::scoped_ptr<FD_preferences_outputs_misc> dialog_;
        };
        ///
        friend class OutputsMisc;
@@ -452,13 +379,11 @@ private:
        class Paths {
        public:
                ///
-               Paths( FormPreferences &  p ) : parent_(p), dialog_(0) {}
-               ///
-               ~Paths();
+               Paths(FormPreferences &  p);
                ///
-               FD_form_paths const * dialog() { return dialog_; }
+               FD_preferences_paths const * dialog();
                ///
-               void apply();
+               void apply(LyXRC & rc);
                ///
                void build();
                ///
@@ -466,13 +391,13 @@ private:
                ///
                bool input(FL_OBJECT const * const);
                ///
-               void update();
+               void update(LyXRC const & rc);
 
        private:
                ///
                FormPreferences & parent_;
                ///
-               FD_form_paths * dialog_;
+               boost::scoped_ptr<FD_preferences_paths> dialog_;
        };
        ///
        friend class Paths;
@@ -481,25 +406,23 @@ private:
        class Printer {
        public:
                ///
-               Printer( FormPreferences &  p ) : parent_(p), dialog_(0) {}
+               Printer(FormPreferences &  p);
                ///
-               ~Printer();
+               FD_preferences_printer const * dialog();
                ///
-               FD_form_printer const * dialog() { return dialog_; }
-               ///
-               void apply() const;
+               void apply(LyXRC & rc) const;
                ///
                void build();
                ///
                string const feedback(FL_OBJECT const * const) const;
                ///
-               void update();
+               void update(LyXRC const & rc);
 
        private:
                ///
                FormPreferences & parent_;
                ///
-               FD_form_printer * dialog_;
+               boost::scoped_ptr<FD_preferences_printer> dialog_;
        };
        ///
        friend class Printer;
@@ -508,13 +431,11 @@ private:
        class ScreenFonts {
        public:
                ///
-               ScreenFonts( FormPreferences &  p ) : parent_(p), dialog_(0) {}
+               ScreenFonts(FormPreferences &  p);
                ///
-               ~ScreenFonts();
+               FD_preferences_screen_fonts const * dialog();
                ///
-               FD_form_screen_fonts const * dialog() { return dialog_; }
-               ///
-               void apply() const;
+               void apply(LyXRC & rc) const;
                ///
                void build();
                ///
@@ -522,28 +443,26 @@ private:
                ///
                bool input();
                ///
-               void update();
+               void update(LyXRC const & rc);
 
        private:
                ///
                FormPreferences & parent_;
                ///
-               FD_form_screen_fonts * dialog_;
+               boost::scoped_ptr<FD_preferences_screen_fonts> dialog_;
        };
        ///
        friend class ScreenFonts;
 
        ///
-       class SpellChecker {
+       class SpellOptions {
        public:
                ///
-               SpellChecker( FormPreferences &  p ) : parent_(p), dialog_(0) {}
-               ///
-               ~SpellChecker();
+               SpellOptions(FormPreferences &  p);
                ///
-               FD_form_spellchecker const * dialog() { return dialog_; }
+               FD_preferences_spelloptions const * dialog();
                ///
-               void apply(); // not const because calls update()!
+               void apply(LyXRC & rc); // not const because calls update()!
                ///
                void build();
                ///
@@ -551,36 +470,37 @@ private:
                ///
                bool input(FL_OBJECT const * const);
                ///
-               void update();
+               void update(LyXRC const & rc);
 
        private:
                ///
                FormPreferences & parent_;
                ///
-               FD_form_spellchecker * dialog_;
+               boost::scoped_ptr<FD_preferences_spelloptions> dialog_;
        };
        ///
-       friend class SpellChecker;
+       friend class SpellOptions;
 
-       
        /** The tab folders.
         */
-       
+
        ///
        Colors colors_;
        ///
        Converters converters_;
        ///
-       Formats formats_;
-       ///
        InputsMisc inputs_misc_;
        ///
+       Formats formats_;
+       ///
        Interface interface_;
        ///
        Language language_;
        ///
        LnFmisc lnf_misc_;
        ///
+       Identity identity_;
+       ///
        OutputsMisc outputs_misc_;
        ///
        Paths paths_;
@@ -589,7 +509,25 @@ private:
        ///
        ScreenFonts screen_fonts_;
        ///
-       SpellChecker spellchecker_;
+       SpellOptions spelloptions_;
+
+       /** 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;
+       };
 };
 
-#endif
+#endif // FORMPREFERENCES_H