aboutsummaryrefslogtreecommitdiff
path: root/module/appmenu.cc
blob: 393f8780bb560abc5cc94d40cca54e99b1b4fc5f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
/*
 * Copyright 2014 Javier S. Pedro <maemo@javispedro.com>
 *
 * This file is part of TopMenu.
 *
 * TopMenu 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, either version 3 of the License, or
 * (at your option) any later version.
 *
 * TopMenu 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 TopMenu.  If not, see <http://www.gnu.org/licenses/>.
 */

#include <gtk/gtk.h>
#include <QtCore/QCoreApplication>
#include <QtCore/QDebug>
#include <QtGui/QMenuBar>

#include "appmenu.h"

AppMenu::AppMenu(QObject *parent)
    : MenuProxy(parent), m_menu(0)

{
}

AppMenu::~AppMenu()
{
	if (m_menu) {
		gtk_widget_destroy(GTK_WIDGET(m_menu));
		g_object_unref(m_menu);
	}
}

GtkMenu * AppMenu::getGtkMenu()
{
	if (!m_menu) {
		m_menu = GTK_MENU(gtk_menu_new());
		g_object_ref_sink(m_menu);
		setTargetMenu(GTK_MENU_SHELL(m_menu));
		addDefaultItems();
	}
	return m_menu;
}

GtkMenuItem * AppMenu::addAction(QAction* action)
{
	QAction::MenuRole role = detectRole(action);
	if (role == QAction::NoRole)
		return 0; // Item should not appear in appmenu

	// If we just inserted a custom quit item, remove the default one.
	if (role == QAction::QuitRole) {
		removeAction(m_def_quit);
	}

	uint order = orderForRole(role);
	QMap<uint, QAction*>::iterator it = m_actions.insert(order, action);

	// Get the previous element
	QAction *before = 0;
	if (it != m_actions.begin()) {
		--it;
		before = it.value();
	}

	return MenuProxy::addAction(action, before, 0);
}

GtkMenuItem * AppMenu::addAction(QAction* action, QAction* before, QMenu* parent)
{
	if (parent) {
		return MenuProxy::addAction(action, before, parent);
	} else {
		// Never add an action to the root menu here.
		return 0;
	}
}

void AppMenu::removeAction(QAction *action)
{
	if (getItemForAction(action)) {
		MenuProxy::removeAction(action);
		m_actions.remove(orderForRole(action->menuRole()), action);
	}
}

void AppMenu::updateAction(QAction *action)
{
	GtkMenuItem *item = getItemForAction(action);

	if (item) {
		MenuProxy::updateAction(action);
	} else {
		QAction::MenuRole role = detectRole(action);
		if (role != QAction::NoRole) {
			// The item now has a role!
			addAction(action);
		}
	}
}

void AppMenu::addDefaultItems()
{
	QAction *separator = new QAction(this);
	separator->setSeparator(true);
	m_actions.insert(15, separator);
	MenuProxy::addAction(separator, 0, 0);

	m_def_quit = new QAction(QIcon::fromTheme("application-exit"),
	                         QMenuBar::tr("Quit"), this);
	m_actions.insert(11, m_def_quit);
	MenuProxy::addAction(m_def_quit, 0, 0);

	connect(m_def_quit, SIGNAL(triggered()),
	        QCoreApplication::instance(), SLOT(quit()));
}

uint AppMenu::orderForRole(QAction::MenuRole role)
{
	switch (role) {
	case QAction::AboutRole:
		return 50;
	case QAction::AboutQtRole:
		return 40;
	case QAction::PreferencesRole:
		return 30;
	case QAction::ApplicationSpecificRole:
		return 20;
	case QAction::QuitRole:
		return 10;
	default:
		return 0;
	}
}

QAction::MenuRole AppMenu::detectRole(QAction *action)
{
	QAction::MenuRole role = action->menuRole();

	if (action->isSeparator()) return QAction::NoRole;

	if (role == QAction::TextHeuristicRole) {
		QString t = action->text().toLower().remove('&');

		QString aboutString = QMenuBar::tr("About").toLower();
        if (t.startsWith(aboutString) || t.endsWith(aboutString)) {
            if (t.indexOf(QRegExp(QString::fromLatin1("qt$"), Qt::CaseInsensitive)) == -1) {
				return QAction::AboutRole;
            } else {
				return QAction::AboutQtRole;
            }
        } else if (t.startsWith(QMenuBar::tr("Config").toLower())
                   || t.startsWith(QMenuBar::tr("Preference").toLower())
                   || t.startsWith(QMenuBar::tr("Options").toLower())
                   || t.startsWith(QMenuBar::tr("Setting").toLower())
                   || t.startsWith(QMenuBar::tr("Setup").toLower())) {
			return QAction::PreferencesRole;
        } else if (t.startsWith(QMenuBar::tr("Quit").toLower())
                   || t.startsWith(QMenuBar::tr("Exit").toLower())) {
			return QAction::QuitRole;
        }

		return QAction::NoRole;
	} else {
		return role;
	}
}