~ubuntu-branches/ubuntu/utopic/qmenumodel/utopic-proposed

« back to all changes in this revision

Viewing changes to libqmenumodel/src/qmenumodel.h

  • Committer: Package Import Robot
  • Author(s): Ubuntu daily release, Nick Dedekind, Ubuntu daily release
  • Date: 2013-08-27 14:08:51 UTC
  • mfrom: (1.1.5)
  • Revision ID: package-import@ubuntu.com-20130827140851-cw3whouyblxq2stj
Tags: 0.2.7+13.10.20130827.3-0ubuntu1
[ Nick Dedekind ]
* UnityMenuModel::changeState now uses current state parameter type as
  a base for parameter GVariant conversion.
* Adds qt event spawning to direct glib main loop callbacks. (LP:
  #1183065, #1206991)

[ Ubuntu daily release ]
* Automatic snapshot from revision 78

Show diffs side-by-side

added added

removed removed

Lines of Context:
52
52
Q_SIGNALS:
53
53
    void countChanged();
54
54
 
55
 
public Q_SLOTS:
56
 
    void onItemsChanged(MenuNode *node, int position, int removed, int added);
57
 
 
58
55
protected:
59
56
    QMenuModel(GMenuModel *other=0, QObject *parent=0);
60
57
    void setMenuModel(GMenuModel *model);
61
58
    GMenuModel *menuModel() const;
62
59
 
 
60
    virtual bool event(QEvent* e);
 
61
 
63
62
private:
64
63
    MenuNode *m_root;
65
64