]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt4/GuiCitation.h
Revert "Mark some intentional fall-throughs (in a way understandable to gcc)"
[lyx.git] / src / frontends / qt4 / GuiCitation.h
index 3dd2143e9e4d50982f24361b51daeb283c4eca2d..5f093cc21d6b905ec7f34f00fda2ac91d493d842 100644 (file)
 
 #include "DialogView.h"
 #include "ui_CitationUi.h"
+#include "FancyLineEdit.h"
 
 #include "insets/InsetCommandParams.h"
 
+#include "BiblioInfo.h"
 #include "Citation.h"
 
+#include <QAbstractListModel>
+#include <QStandardItemModel>
 #include <QStringList>
 #include <QStringListModel>
 
@@ -33,6 +37,7 @@ namespace frontend {
 
 class GuiSelectionManager;
 
+
 class GuiCitation : public DialogView, public Ui::CitationUi
 {
        Q_OBJECT
@@ -40,29 +45,30 @@ class GuiCitation : public DialogView, public Ui::CitationUi
 public:
        ///
        GuiCitation(GuiView & lv);
-       ///
-       ~GuiCitation();
 
 private Q_SLOTS:
-       void cleanUp();
        void on_okPB_clicked();
        void on_cancelPB_clicked();
        void on_restorePB_clicked();
        void on_applyPB_clicked();
-       void on_searchPB_clicked();
-       void on_findLE_textChanged(const QString & text);
+       void on_literalCB_clicked();
+       void filterPressed();
+       void filterChanged(const QString & text);
        void on_fieldsCO_currentIndexChanged(int index);
        void on_entriesCO_currentIndexChanged(int index);
        void on_citationStyleCO_currentIndexChanged(int index);
-       void on_caseCB_stateChanged(int);
-       void on_regexCB_stateChanged(int);
-       void on_asTypeCB_stateChanged(int);
+       void resetFilter();
+       void caseChanged();
+       void regexChanged();
+       void instantChanged(bool checked);
        void changed();
-       ///
+       /// set the citation keys, mark as changed
        void setCitedKeys();
+       /// update the styles for the style combo, mark as changed
+       void updateStyles();
        /// performs a limited update, suitable for internal call
        void updateControls();
-       
+
 
 private:
        /// Dialog inherited methods
@@ -73,6 +79,8 @@ private:
        void clearParams();
        void dispatchParams();
        bool isBufferDependent() const { return true; }
+       void saveSession() const;
+       void restoreSession();
        /** Disconnect from the inset when the Apply button is pressed.
         *  Allows easy insertion of multiple citations.
         */
@@ -89,26 +97,42 @@ private:
        /// check whether key is already selected
        bool isSelected(const QModelIndex &);
        /// update the display of BibTeX information
-       void updateInfo(QModelIndex const &);
+       void updateInfo(BiblioInfo const & bi, QModelIndex const &);
        /// enable/disable buttons
        void setButtons();
-       /// fill the styles combo
-       void fillStyles();
        /// fill the fields combo
-       void fillFields();
+       void fillFields(BiblioInfo const & bi);
        /// fill the entries combo
-       void fillEntries();
+       void fillEntries(BiblioInfo const & bi);
        /// set the styles combo
-       void updateStyle();
+       void updateStyles(BiblioInfo const & bi);
        /// set the formatting widgets
-       void updateFormatting(CiteStyle currentStyle);
+       void updateFormatting(CitationStyle const & currentStyle);
+       ///
+       void updateControls(BiblioInfo const & bi);
+       /// Set the appropriate hinting text on the filter bar
+       void updateFilterHint();
        ///
        void init();
        /// Clear selected keys
        void clearSelection();
-       
+
+       /// Set selected keys
+       void setSelectedKeys(QStringList const);
+       /// Get selected keys
+       QStringList selectedKeys();
+       /// Set pre texts of qualified lists
+       void setPreTexts(std::vector<docstring> const m);
+       /// Get pre texts of qualified lists
+       std::vector<docstring> getPreTexts();
+       /// Set post texts of qualified lists
+       void setPostTexts(std::vector<docstring> const m);
+       /// Get post texts of qualified lists
+       std::vector<docstring> getPostTexts();
+
        /// Find keys containing a string.
        void findKey(
+               BiblioInfo const & bi, //< optimize by passing this
                QString const & str, //< string expression
                bool only_keys, //< set to true if only keys shall be searched.
                docstring field, //<field to search, empty for all fields
@@ -118,22 +142,22 @@ private:
                bool reset = false //< whether to reset and search all keys
                );
 
-       /// List of example cite strings
-       QStringList citationStyles(int);
+       /// List of example cite strings and their correlating lyx name
+       BiblioInfo::CiteStringMap citationStyles(BiblioInfo const & bi,
+                                                               size_t max_size);
 
        /// Set the Params variable for the Controller.
-       void apply(int const choice, bool const full, bool const force,
+       void applyParams(int const choice, bool const full, bool const force,
                                          QString before, QString after);
 
        ///
-       void filterByEntryType(
+       void filterByEntryType(BiblioInfo const & bi,
                std::vector<docstring> & keyVector, docstring entryType);
-       ///
-       CiteEngine citeEngine() const;
 
        /// Search a given string within the passed keys.
        /// \return the vector of matched keys.
        std::vector<docstring> searchKeys(
+               BiblioInfo const & bi, //< optimize by passing this
                std::vector<docstring> const & keys_to_search, //< Keys to search.
                bool only_keys, //< whether to search only the keys
                docstring const & search_expression, //< Search expression (regex possible)
@@ -143,16 +167,31 @@ private:
                ); //
 
        /// The BibTeX information available to the dialog
+       /// Calls to this method will lead to checks of modification times and
+       /// the like, so it should be avoided.
        BiblioInfo const & bibInfo() const;
 
+       /// contains the search box
+       FancyLineEdit * filter_;
+
+       /// Regexp action
+       QAction * regexp_;
+       /// Case sensitive action
+       QAction * casesense_;
+       /// Search as you type action
+       QAction * instant_;
+
        /// last used citation style
-       int style_;
+       QString style_;
+       /// last set value for literal
+       /// this is used only for new citations
+       bool literal_;
        ///
        GuiSelectionManager * selectionManager;
        /// available keys.
        QStringListModel available_model_;
        /// selected keys.
-       QStringListModel selected_model_;
+       QStandardItemModel selected_model_;
        /// All keys.
        QStringList all_keys_;
        /// Cited keys.