Development/Tutorials/Introduction to Goya usage: Difference between revisions

    From KDE TechBase
    No edit summary
    Line 14: Line 14:
    Goya is so nice mainly because it integrates pretty well with the Model/View design, and uses the Qt powerful signals and slots. Goya widgets will emit signals when something have happened to them, so you will be able to connect those signals to your app slots, and do fancy stuff without complex stuff.
    Goya is so nice mainly because it integrates pretty well with the Model/View design, and uses the Qt powerful signals and slots. Goya widgets will emit signals when something have happened to them, so you will be able to connect those signals to your app slots, and do fancy stuff without complex stuff.
    ==A Simple Example==
    ==A Simple Example==
    This example consists on a single window that will contain a list view. There will be pushbuttons only in the odd rows.
    <code cppqt>
    <code cppqt>
    // Basic Goya includes
    // Basic Goya includes
    Line 33: Line 35:
    #include <kicon.h>
    #include <kicon.h>


    // We define the model "MyModel" as a QStringListModel. In this very simple
    // example, the class will only return strings, and the necessary widgets.
    class MyModel
        : public QStringListModel
    {
        Q_OBJECT
    public:
        MyModel(QObject *parent = 0)
            : QStringListModel(parent)
        {
            // We create a Goya pushbutton, this pushbutton will be shared by all
            // rows using it, so the memory impact for 1000 rows is the same as for
            // 1 row. Since all our rows will show the same information (that
            // meaning the pushbutton will show always "More information") we
            // initialize the values here, and all rows will reuse them. In a
            // slightly more complex example we can later see how to handle this
            // when rows want for instance a different text for the pushbutton, or
            // a different icon.
            button = new Goya::PushButton(0);
            button->setText("More Information");
            button->setIcon(KIcon("help-about"));
            button->setIconSize(QSize(16, 16));
            // Goya is able to "eat events". This means that the events that you
            // specify here won't be forwarded to the view. This is pretty helpful
            // because when you click on a button that is in a non-selected row
            // and the MouseButtonPress eat is enabled, the unselected row won't be
            // selected, because the button receives that event, and "eats" it.
            button->setEatEvents(QEvent::MouseButtonPress);
            button->setEatEvents(QEvent::MouseButtonRelease);
            button->setEatEvents(QEvent::MouseButtonDblClick);
            // We would like to connect to the clicked signal of the pushbutton.
            connect(button, SIGNAL(clicked(QModelIndex,const Goya::PushButton*)),
                    this, SLOT(slotClicked(QModelIndex)));
        }
        virtual ~MyModel()
        {
            delete button;
        }
        virtual QVariant data(const QModelIndex &index, int role) const
        {
            // Goya when asking for widgets asks with role WidgetRole. We teach
            // our model on what to do on this case. In this particular model, we
            // will return an empty widget list for odd rows, and a single widget
            // (our pushbutton) for even rows.
            // If the role that we were asked for is not the WidgetRole, we just
            // expect QStringListModel to do the right thing.
            if (role == Goya::WidgetRole)
            {
                if (index.row() % 2)
                    return GOYA_EMPTY_WIDGET_LIST;
                return GOYA_WIDGET_LIST(button);
            }
            return QStringListModel::data(index, role);
        }
    private:
        Goya::PushButton *button;


    private Q_SLOTS:
        // This slot will be triggered when our pushbutton has been clicked. Note
        // that the signal has an index and even a Goya::PushButton* parameters.
        // In this case only with the index we are OK. On the messagebox we notify
        // the user which row button was clicked.
        void slotClicked(const QModelIndex &index)
        {
            KMessageBox::information(0, "More information clicked on row " +
                                    QString::number(index.row() + 1),
                                    "Button clicked");
        }
    };
    </code>
    </code>

    Revision as of 15:50, 13 February 2008

    Introduction to the Goya Framework usage
    Tutorial Series   Goya Framework
    Previous   C++, Qt, Model/View Qt Framework, KDE4 development environment
    What's Next   n/a
    Further Reading   n/a

    Abstract

    We are developing some component of our application using Model/View (check prerequisites). At some point on our development, we discover that we actually want to add widgets to our delegate, but the Model/View framework does not provide a powerful and integrated way of doing so. Here is where Goya comes to help out for this task.

    We could say Goya is a layer between the view and your delegate that draws widgets with the needed options and that seem to behave as if they were real widgets, but they are fake widgets after all.

    Goya is so nice mainly because it integrates pretty well with the Model/View design, and uses the Qt powerful signals and slots. Goya widgets will emit signals when something have happened to them, so you will be able to connect those signals to your app slots, and do fancy stuff without complex stuff.

    A Simple Example

    This example consists on a single window that will contain a list view. There will be pushbuttons only in the odd rows.

    // Basic Goya includes

    1. include <goya/goya.h>
    2. include <goya/pushbutton.h>

    // Basic Qt includes

    1. include <QPainter>
    2. include <QBoxLayout>
    3. include <QListView>
    4. include <QStringListModel>

    // Basic KDE includes

    1. include <kapplication.h>
    2. include <kaboutdata.h>
    3. include <kmessagebox.h>
    4. include <kcmdlineargs.h>
    5. include <klocalizedstring.h>
    6. include <kicon.h>

    // We define the model "MyModel" as a QStringListModel. In this very simple // example, the class will only return strings, and the necessary widgets. class MyModel

       : public QStringListModel
    

    {

       Q_OBJECT
    

    public:

       MyModel(QObject *parent = 0)
           : QStringListModel(parent)
       {
           // We create a Goya pushbutton, this pushbutton will be shared by all
           // rows using it, so the memory impact for 1000 rows is the same as for
           // 1 row. Since all our rows will show the same information (that
           // meaning the pushbutton will show always "More information") we
           // initialize the values here, and all rows will reuse them. In a
           // slightly more complex example we can later see how to handle this
           // when rows want for instance a different text for the pushbutton, or
           // a different icon.
           button = new Goya::PushButton(0);
    
           button->setText("More Information");
           button->setIcon(KIcon("help-about"));
           button->setIconSize(QSize(16, 16));
    
           // Goya is able to "eat events". This means that the events that you
           // specify here won't be forwarded to the view. This is pretty helpful
           // because when you click on a button that is in a non-selected row
           // and the MouseButtonPress eat is enabled, the unselected row won't be
           // selected, because the button receives that event, and "eats" it.
           button->setEatEvents(QEvent::MouseButtonPress);
           button->setEatEvents(QEvent::MouseButtonRelease);
           button->setEatEvents(QEvent::MouseButtonDblClick);
    
           // We would like to connect to the clicked signal of the pushbutton.
           connect(button, SIGNAL(clicked(QModelIndex,const Goya::PushButton*)),
                   this, SLOT(slotClicked(QModelIndex)));
       }
    
       virtual ~MyModel()
       {
           delete button;
       }
    
       virtual QVariant data(const QModelIndex &index, int role) const
       {
           // Goya when asking for widgets asks with role WidgetRole. We teach
           // our model on what to do on this case. In this particular model, we
           // will return an empty widget list for odd rows, and a single widget
           // (our pushbutton) for even rows.
           // If the role that we were asked for is not the WidgetRole, we just
           // expect QStringListModel to do the right thing.
           if (role == Goya::WidgetRole)
           {
               if (index.row() % 2)
                   return GOYA_EMPTY_WIDGET_LIST;
    
               return GOYA_WIDGET_LIST(button);
           }
    
           return QStringListModel::data(index, role);
       }
    

    private:

       Goya::PushButton *button;
    

    private Q_SLOTS:

       // This slot will be triggered when our pushbutton has been clicked. Note
       // that the signal has an index and even a Goya::PushButton* parameters.
       // In this case only with the index we are OK. On the messagebox we notify
       // the user which row button was clicked.
       void slotClicked(const QModelIndex &index)
       {
           KMessageBox::information(0, "More information clicked on row " +
                                    QString::number(index.row() + 1),
                                    "Button clicked");
       }
    

    };