Sophie

Sophie

distrib > Mandriva > 2010.0 > i586 > media > contrib-release > by-pkgid > a6711891ce757817bba854bf3f25205a > files > 2351

qtjambi-doc-4.3.3-3mdv2008.1.i586.rpm

<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html
    PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<!-- /home/gvatteka/dev/qtjambi/4.3/scripts/../doc/src/examples/customfilter.qdoc -->
<head>
  <title>Custom Sort/Filter Model Example</title>
  <link href="classic.css" rel="stylesheet" type="text/css" />
</head>
<body>
<h1 align="center">Custom Sort/Filter Model Example<br /><small></small></h1>
<p>The Custom Sort/Filter Model example illustrates how to subclass <a href="gui/QSortFilterProxyModel.html"><tt>QSortFilterProxyModel</tt></a> to perform advanced sorting and filtering.</p>
<p align="center"><img src="images/customfilter-example.png" /></p><p>The <a href="gui/QSortFilterProxyModel.html"><tt>QSortFilterProxyModel</tt></a> class provides support for sorting and filtering data passed between another model and a view.</p>
<p>The model transforms the structure of a source model by mapping the model indexes it supplies to new indexes, corresponding to different locations, for views to use. This approach allows a given source model to be restructured as far as views are concerned, without requiring any transformations on the underlying data and without duplicating the data in memory.</p>
<p>The Custom Sort/Filter Model example consists of two classes:</p>
<ul>
<li>The <tt>MySortFilterProxyModel</tt> class provides a custom proxy model.</li>
<li>The <tt>CustomFilter</tt> class provides the main application window, using the custom proxy model to sort and filter a standard item model.</li>
</ul>
<p>We will first take a look at the <tt>MySortFilterProxyModel</tt> class to see how the custom proxy model is implemented, then we will take a look at the <tt>CustomFilter</tt> class to see how the model is used.</p>
<a name="mysortfilterproxymodel-class-implementation"></a>
<h2>MySortFilterProxyModel Class Implementation</h2>
<p>The <tt>MySortFilterProxyModel</tt> class extends the <a href="gui/QSortFilterProxyModel.html"><tt>QSortFilterProxyModel</tt></a> class:</p>
<pre>        private class MySortFilterProxyModel extends QSortFilterProxyModel {
            private QDateTime minDate = new QDateTime();
            private QDateTime maxDate = new QDateTime();

            private MySortFilterProxyModel(QObject parent) {
                super(parent);
            }</pre>
<p>Since <a href="gui/QAbstractProxyModel.html"><tt>QAbstractProxyModel</tt></a> and its subclasses are derived from <a href="core/QAbstractItemModel.html"><tt>QAbstractItemModel</tt></a>, much of the same advice about subclassing normal models also applies to proxy models.</p>
<p>On the other hand, it is worth noting that many of <a href="gui/QSortFilterProxyModel.html"><tt>QSortFilterProxyModel</tt></a>'s default implementations of methods are written so that they call the equivalent methods in the relevant source model. This simple proxying mechanism may need to be overridden for source models with more complex behavior; in this example we derive from the <a href="gui/QSortFilterProxyModel.html"><tt>QSortFilterProxyModel</tt></a> class to ensure that our filter can recognize a valid range of dates, and to control the sorting behavior.</p>
<pre>            private void setFilterMinimumDate(QDate date) {
                minDate = new QDateTime(date);
                invalidateFilter();
            }

            private void setFilterMaximumDate(QDate date) {
                maxDate = new QDateTime(date);
                invalidateFilter();
            }</pre>
<p>We want to be able to filter our data by specifying a given period of time. For that reason, we implement custom <tt>setFilterMinimumDate()</tt> and <tt>setFilterMaximumDate()</tt> methods to set the corresponding variables. The QSortFilterProxyModel.</tt>filterChanged() method updates the proxy model's mapping by reapplying the filter. Note that <a href="gui/QSortFilterProxyModel.html"><tt>QSortFilterProxyModel</tt></a> also provides the clear() method that removes all mapping, forcing the model to update the sorting as well as the data filtering.</p>
<p>In addition, we reimplement <a href="gui/QSortFilterProxyModel.html"><tt>QSortFilterProxyModel</tt></a>'s filterAcceptsRow() method to only accept rows with valid dates:</p>
<pre>            protected boolean filterAcceptsRow(int sourceRow,
                                               QModelIndex sourceParent) {
                QModelIndex index0;
                QModelIndex index1;
                QModelIndex index2;

                index0 = sourceModel().index(sourceRow, 0, sourceParent);
                index1 = sourceModel().index(sourceRow, 1, sourceParent);
                index2 = sourceModel().index(sourceRow, 2, sourceParent);

                QRegExp filter = filterRegExp();
                QAbstractItemModel model = sourceModel();
                boolean matchFound;

                matchFound = filter.indexIn(model.data(index0).toString()) != -1
                             || filter.indexIn(model.data(index1).toString()) != -1;

                return matchFound &amp;&amp; dateInRange((QDateTime) (model.data(index2)));
            }

            private boolean dateInRange(QDateTime date) {
                return (minDate.compareTo(date) &lt; 0 &amp;&amp; maxDate.compareTo(date) &gt; 0);
            }</pre>
<p>The filterAcceptsRow() method is expected to return true if the given row should be included in the model. In our example, a row is accepted if either the subject or the sender contains the given regular expression, and the date is valid.</p>
<pre>            protected boolean lessThan(QModelIndex left, QModelIndex right) {

                boolean result = false;
                Object leftData = sourceModel().data(left);
                Object rightData = sourceModel().data(right);</pre>
<p>Finally, we want to be able to sort the senders by their email adresses. For that reason we must reimplement the QSortFilterProxyModel.</tt>lessThan() method. This method is used as the &lt; operator when sorting. The default implementation handles a collection of types including <a href="core/QDateTime.html"><tt>QDateTime</tt></a> and String, but in order to be able to sort the senders by their email adresses we must first identify the adress within the given string:</p>
<pre>                if (leftData instanceof QDateTime
                    &amp;&amp; rightData instanceof QDateTime) {

                    QDateTime leftDate = (QDateTime) leftData;
                    QDateTime rightDate = (QDateTime) rightData;

                    result = leftDate.compareTo(rightDate) &lt; 0;
                } else {

                    QRegExp emailPattern = new QRegExp(&quot;([\\w\\.]*@[\\w\\.]*)&quot;);

                    String leftString = leftData.toString();
                    if(left.column() == 1 &amp;&amp; emailPattern.indexIn(leftString) != -1)
                        leftString = emailPattern.cap(1);

                    String rightString = rightData.toString();
                    if(right.column() == 1 &amp;&amp; emailPattern.indexIn(rightString) != -1)
                        rightString = emailPattern.cap(1);

                    result = leftString.compareTo(rightString) &lt; 0;
                }
                return result;
            }

        }</pre>
<p>We use <a href="core/QRegExp.html"><tt>QRegExp</tt></a> to define a pattern for the adresses we are looking for. The QRegExp.</tt>indexIn() method attempts to find a match in the given string and returns the position of the first match, or -1 if there was no match. If the given string contains the pattern, we use <a href="core/QRegExp.html"><tt>QRegExp</tt></a>'s cap() method to retrieve the actual adress. The cap() method returns the text captured by the <i>nth</i> subexpression. The entire match has index 0 and the parenthesized subexpressions have indexes starting from 1 (excluding non-capturing parentheses).</p>
<p>The reimplementation of the lessThan() method completes our custom proxy model. Let's see how we can use it in an application.</p>
<a name="customfilter-class-implementation"></a>
<h2>CustomFilter Class Implementation</h2>
<p>The <tt>CustomFilter</tt> class extends <a href="gui/QWidget.html"><tt>QWidget</tt></a>, and provides the main application window:</p>
<pre>    public class CustomFilter extends QWidget {
        ...
        public CustomFilter() {
            QStandardItemModel model = createMailModel(this);</pre>
<p>In the constructor, we first create our source model by calling the <tt>createMailModel()</tt> method. The <a href="gui/QStandardItemModel.html"><tt>QStandardItemModel</tt></a> class provides a generic model for storing custom data, and can be used as a repository for standard Qt data types.</p>
<pre>            proxyModel = new MySortFilterProxyModel(this);
            proxyModel.setSourceModel(model);
            proxyModel.setDynamicSortFilter(true);</pre>
<p>Then we create a proxy model. By calling the QSortFilterProxyModel.</tt>setSourceModel() method, we make the proxy model process the data in our mail model. We also set the dynamicSortFilter property that holds whether the proxy model is dynamically sorted and filtered. By setting this property to true, we ensure that the model is sorted and filtered whenever the contents of the source model change.</p>
<p>The main application window shows views of both the source model and the proxy model. The source view is quite simple:</p>
<pre>            sourceView = new QTreeView();
            sourceView.setRootIsDecorated(false);
            sourceView.setAlternatingRowColors(true);
            sourceView.setModel(model);

            QHBoxLayout sourceLayout = new QHBoxLayout();
            sourceLayout.addWidget(sourceView);

            sourceGroupBox = new QGroupBox(tr(&quot;Original Model&quot;));
            sourceGroupBox.setLayout(sourceLayout);</pre>
<p>The <a href="gui/QTreeView.html"><tt>QTreeView</tt></a> class provides a default model/view implementation of a tree view; our view implements a tree representation of items in the application's source model. We add our view widget to a layout that we install on a corresponding group box.</p>
<p>The proxy model view, on the other hand, contains several widgets controlling the various aspects of transforming the source model's data structure:</p>
<pre>            filterPatternLineEdit = new QLineEdit(&quot;Grace|Sports&quot;);
            filterPatternLabel = new QLabel(tr(&quot;&amp;Filter pattern:&quot;));
            filterPatternLabel.setBuddy(filterPatternLineEdit);

            filterSyntaxComboBox = new QComboBox();
            filterSyntaxComboBox.addItem(tr(&quot;Regular expression&quot;),
                                         QRegExp.PatternSyntax.RegExp);
            filterSyntaxComboBox.addItem(tr(&quot;Wildcard&quot;),
                                         QRegExp.PatternSyntax.Wildcard);
            filterSyntaxComboBox.addItem(tr(&quot;Fixed string&quot;),
                                         QRegExp.PatternSyntax.FixedString);

            filterCaseSensitivityCheckBox = new QCheckBox(
                    tr(&quot;Case sensitive filter&quot;));
            filterCaseSensitivityCheckBox.setChecked(true);

            fromDateEdit = new QDateEdit(new QDate(1970, 01, 01));
            fromLabel = new QLabel(tr(&quot;F&amp;rom:&quot;));
            fromLabel.setBuddy(fromDateEdit);

            toDateEdit = new QDateEdit(new QDate(2099, 12, 31));
            toLabel = new QLabel(tr(&quot;&amp;To:&quot;));
            toLabel.setBuddy(toDateEdit);

            filterPatternLineEdit.textChanged.connect(this, &quot;textFilterChanged()&quot;);
            filterSyntaxComboBox.currentIndexChanged.connect(this,
                                                             &quot;textFilterChanged()&quot;);
            filterCaseSensitivityCheckBox.toggled.connect(this,
                                                          &quot;textFilterChanged()&quot;);
            fromDateEdit.dateChanged.connect(this, &quot;dateFilterChanged()&quot;);
            toDateEdit.dateChanged.connect(this, &quot;dateFilterChanged()&quot;);</pre>
<p>Note that whenever the user changes one of the filtering options, we must explicitly reapply the filter. This is done by connecting the various editors to methods that update the proxy model.</p>
<pre>            proxyView = new QTreeView();
            proxyView.setRootIsDecorated(false);
            proxyView.setAlternatingRowColors(true);
            proxyView.setModel(proxyModel);
            proxyView.setSortingEnabled(true);
            proxyView.sortByColumn(1, Qt.SortOrder.AscendingOrder);

            QGridLayout proxyLayout = new QGridLayout();
            proxyLayout.addWidget(proxyView, 0, 0, 1, 3);
            proxyLayout.addWidget(filterPatternLabel, 1, 0);
            proxyLayout.addWidget(filterPatternLineEdit, 1, 1);
            proxyLayout.addWidget(filterSyntaxComboBox, 1, 2);
            proxyLayout.addWidget(filterCaseSensitivityCheckBox, 2, 0, 1, 3);
            proxyLayout.addWidget(fromLabel, 3, 0);
            proxyLayout.addWidget(fromDateEdit, 3, 1, 1, 2);
            proxyLayout.addWidget(toLabel, 4, 0);
            proxyLayout.addWidget(toDateEdit, 4, 1, 1, 2);

            proxyGroupBox = new QGroupBox(tr(&quot;Sorted/Filtered Model&quot;));
            proxyGroupBox.setLayout(proxyLayout);</pre>
<p>The sorting will be handled by the view. All we have to do is to enable sorting for our proxy view by setting the QTreeView.</tt>sortingEnabled property (which is false by default). Then we add all the filtering widgets and the proxy view to a layout that we install on a corresponding group box.</p>
<pre>            QVBoxLayout mainLayout = new QVBoxLayout();
            mainLayout.addWidget(sourceGroupBox);
            mainLayout.addWidget(proxyGroupBox);
            setLayout(mainLayout);

            setWindowTitle(tr(&quot;Custom Sort/Filter Model&quot;));
            setWindowIcon(new QIcon(&quot;classpath:com/trolltech/images/qt-logo.png&quot;));
            resize(500, 450);

            textFilterChanged();
            dateFilterChanged();
        }</pre>
<p>After putting our two group boxes into another layout that we install on our main application widget, we customize the application window. Finally, we call the <tt>textFilterChanged()</tt> and <tt>dateFilterChanged()</tt> methods to update the proxy model according to the filtering widgets's initial values.</p>
<pre>        private void textFilterChanged() {
            QRegExp.PatternSyntax syntax;
            int index = filterSyntaxComboBox.currentIndex();
            syntax = (QRegExp.PatternSyntax) filterSyntaxComboBox.itemData(index);

            Qt.CaseSensitivity caseSensitivity;
            if (filterCaseSensitivityCheckBox.isChecked())
                caseSensitivity = Qt.CaseSensitivity.CaseSensitive;
            else
                caseSensitivity = Qt.CaseSensitivity.CaseInsensitive;

            QRegExp regExp = new QRegExp(filterPatternLineEdit.text(),
                                         caseSensitivity, syntax);
            proxyModel.setFilterRegExp(regExp);
        }</pre>
<p>The <tt>textFilterChanged()</tt> method is called whenever the user changes the filter pattern or the case sensitivity.</p>
<p>We first retrieve the preferred syntax (the QRegExp.</tt>PatternSyntax enum is used to interpret the meaning of the given pattern), then we determine the preferred case sensitivity. Based on these preferences and the current filter pattern, we set the proxy model's filterRegExp property. The filterRegExp property holds the regular expression used to filter the contents of the source model; calling <a href="gui/QSortFilterProxyModel.html"><tt>QSortFilterProxyModel</tt></a>'s setFilterRegExp() method also updates the model.</p>
<pre>        private void dateFilterChanged() {
            proxyModel.setFilterMinimumDate(fromDateEdit.date());
            proxyModel.setFilterMaximumDate(toDateEdit.date());
        }</pre>
<p>The <tt>dateFilterChanged()</tt> method is called whenever the user modifies the range of valid dates. We retrieve the new dates from the user interface, and call the corresponding methods (provided by our custom proxy model) to set the proxy model's minimum and maximum dates. As we explained above, calling these methods also updates the model.</p>
<pre>        private QStandardItemModel createMailModel(QObject parent) {
            QStandardItemModel model = new QStandardItemModel(0, 3, parent);

            model.setHeaderData(0, Qt.Orientation.Horizontal, tr(&quot;Subject&quot;));
            model.setHeaderData(1, Qt.Orientation.Horizontal, tr(&quot;Sender&quot;));
            model.setHeaderData(2, Qt.Orientation.Horizontal, tr(&quot;Date&quot;));

            addMail(model, &quot;Happy New Year!&quot;, &quot;Grace K. &lt;grace@software-inc.com&gt;&quot;,
                    new QDateTime(new QDate(2006, 12, 31), new QTime(17, 03)));
            addMail(model, &quot;Radically new concept&quot;,
                    &quot;Grace K. &lt;grace@software-inc.com&gt;&quot;,
                    new QDateTime(new QDate(2006, 12, 22), new QTime(9, 44)));
            addMail(model, &quot;Accounts&quot;, &quot;pascale@nospam.com&quot;,
                    new QDateTime(new QDate(2006, 12, 31), new QTime(12, 50)));
            addMail(model, &quot;Expenses&quot;, &quot;Joe Bloggs &lt;joe@bloggs.com&gt;&quot;,
                    new QDateTime(new QDate(2006, 12, 25), new QTime(11, 39)));
            addMail(model, &quot;Re: Expenses&quot;, &quot;Andy &lt;andy@nospam.com&gt;&quot;,
                    new QDateTime(new QDate(2007, 01, 02), new QTime(16, 05)));
            addMail(model, &quot;Re: Accounts&quot;, &quot;Joe Bloggs &lt;joe@bloggs.com&gt;&quot;,
                    new QDateTime(new QDate(2007, 01, 03), new QTime(14, 18)));
            addMail(model, &quot;Re: Accounts&quot;, &quot;Andy &lt;andy@nospam.com&gt;&quot;,
                    new QDateTime(new QDate(2007, 01, 03), new QTime(14, 26)));
            addMail(model, &quot;Sports&quot;, &quot;Linda Smith &lt;linda.smith@nospam.com&gt;&quot;,
                    new QDateTime(new QDate(2007, 01, 05), new QTime(11, 33)));
            addMail(model, &quot;AW: Sports&quot;, &quot;Rolf Newschweinstein &lt;rolfn@nospam.com&gt;&quot;,
                    new QDateTime(new QDate(2007, 01, 05), new QTime(12, 00)));
            addMail(model, &quot;RE: Sports&quot;, &quot;Petra Schmidt &lt;petras@nospam.com&gt;&quot;,
                    new QDateTime(new QDate(2007, 01, 05), new QTime(12, 01)));

            return model;
        }

        private void addMail(QAbstractItemModel model, String subject,
                             String sender, QDateTime date) {
            model.insertRow(0);
            model.setData(model.index(0, 0), subject);
            model.setData(model.index(0, 1), sender);
            model.setData(model.index(0, 2), date);
        }</pre>
<p>The <tt>createMailModel()</tt> method is a convenience method provided to simplify the constructor. All it does is to create and return a standard item model describing a collection of emails. Each description is added to the model using <tt>addMail()</tt>, another convenience method.</p>
<pre>        public static void main(String[] args) {

            QApplication.initialize(args);
            CustomFilter filter = new CustomFilter();
            filter.show();
            QApplication.exec();
        }

    }</pre>
<p>Finally, we provide the <tt>main()</tt> method to create and show the main application window when the example is run.</p>
<p /><address><hr /><div align="center">
<table width="100%" cellspacing="0" border="0"><tr class="address">
<td width="30%">Copyright &copy; 2007 <a href="trolltech.html">Trolltech</a></td>
<td width="40%" align="center"><a href="trademarks.html">Trademarks</a></td>
<td width="30%" align="right"><div align="right">Qt Jambi </div></td>
</tr></table></div></address></body>
</html>