| 1 | /* smplayer, GUI front-end for mplayer.
|
|---|
| 2 | Copyright (C) 2006-2012 Ricardo Villalba <rvm@users.sourceforge.net>
|
|---|
| 3 |
|
|---|
| 4 | This program is free software; you can redistribute it and/or modify
|
|---|
| 5 | it under the terms of the GNU General Public License as published by
|
|---|
| 6 | the Free Software Foundation; either version 2 of the License, or
|
|---|
| 7 | (at your option) any later version.
|
|---|
| 8 |
|
|---|
| 9 | This program is distributed in the hope that it will be useful,
|
|---|
| 10 | but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|---|
| 11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|---|
| 12 | GNU General Public License for more details.
|
|---|
| 13 |
|
|---|
| 14 | You should have received a copy of the GNU General Public License
|
|---|
| 15 | along with this program; if not, write to the Free Software
|
|---|
| 16 | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|---|
| 17 | */
|
|---|
| 18 |
|
|---|
| 19 | #include "editabletoolbar.h"
|
|---|
| 20 | #include "toolbareditor.h"
|
|---|
| 21 | #include <QAction>
|
|---|
| 22 |
|
|---|
| 23 | EditableToolbar::EditableToolbar(QWidget * parent) : QToolBar(parent)
|
|---|
| 24 | {
|
|---|
| 25 | widget = parent;
|
|---|
| 26 | }
|
|---|
| 27 |
|
|---|
| 28 | EditableToolbar::~EditableToolbar() {
|
|---|
| 29 | }
|
|---|
| 30 |
|
|---|
| 31 | QList<QAction *> EditableToolbar::allActions() {
|
|---|
| 32 | if (!all_actions.isEmpty()) return all_actions;
|
|---|
| 33 |
|
|---|
| 34 | QList<QAction *> actions;
|
|---|
| 35 | if (widget) {
|
|---|
| 36 | actions = widget->findChildren<QAction *>();
|
|---|
| 37 | }
|
|---|
| 38 | return actions;
|
|---|
| 39 | }
|
|---|
| 40 |
|
|---|
| 41 | void EditableToolbar::setActionsFromStringList(QStringList action_names) {
|
|---|
| 42 | clear();
|
|---|
| 43 | ToolbarEditor::load(this, action_names, allActions());
|
|---|
| 44 | }
|
|---|
| 45 |
|
|---|
| 46 | QStringList EditableToolbar::actionsToStringList() {
|
|---|
| 47 | return ToolbarEditor::save(this);
|
|---|
| 48 | }
|
|---|
| 49 |
|
|---|
| 50 | void EditableToolbar::edit() {
|
|---|
| 51 | qDebug("EditableToolbar::edit");
|
|---|
| 52 |
|
|---|
| 53 | ToolbarEditor e(widget);
|
|---|
| 54 | e.setAllActions(allActions());
|
|---|
| 55 | e.setActiveActions(this->actions());
|
|---|
| 56 | e.setDefaultActions(defaultActions());
|
|---|
| 57 |
|
|---|
| 58 | if (e.exec() == QDialog::Accepted) {
|
|---|
| 59 | QStringList r = e.activeActionsToStringList();
|
|---|
| 60 | qDebug("EditableToolbar::edit: list: %s", r.join(",").toUtf8().constData());
|
|---|
| 61 | setActionsFromStringList(r);
|
|---|
| 62 | }
|
|---|
| 63 | }
|
|---|
| 64 |
|
|---|
| 65 | #include "moc_editabletoolbar.cpp"
|
|---|
| 66 |
|
|---|