/*
* Copyright 2013 Canonical Ltd.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation; version 3.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see .
*
* Authors:
* Nicholas Dedekind
#include
typedef struct _GtkMenuTrackerItem GtkMenuTrackerItem;
/* Event for a ayatanamenumodel clear */
class AyatanaMenuModelClearEvent : public QEvent
{
public:
static const QEvent::Type eventType;
AyatanaMenuModelClearEvent(bool reset);
bool reset;
};
/* Event for a row add for ayatanamenumodel */
class AyatanaMenuModelAddRowEvent : public QEvent
{
public:
static const QEvent::Type eventType;
AyatanaMenuModelAddRowEvent(GPtrArray *_items, int position);
~AyatanaMenuModelAddRowEvent();
GPtrArray *items;
int position;
};
/* Event for a row remove for ayatanamenumodel */
class AyatanaMenuModelRemoveRowEvent : public QEvent
{
public:
static const QEvent::Type eventType;
AyatanaMenuModelRemoveRowEvent(int position, int nItems);
int position;
int nItems;
};
/* Event for a row data change for ayatanamenumodel */
class AyatanaMenuModelDataChangeEvent : public QEvent
{
public:
static const QEvent::Type eventType;
AyatanaMenuModelDataChangeEvent(int position);
int position;
};
#endif //AYATANAMENUMODELEVENTS_H