~ubuntu-branches/ubuntu/edgy/gwenview/edgy

« back to all changes in this revision

Viewing changes to src/gvexternaltoolcontext.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Riddell
  • Date: 2005-12-06 17:59:19 UTC
  • mfrom: (1.1.3 upstream) (2.1.1 sarge)
  • Revision ID: james.westby@ubuntu.com-20051206175919-8yv9nfmw0pws6p52
Tags: 1.3.1-0ubuntu1
* Sync with Debian
* Edit kde.mk for .pot generation

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
// vim: set tabstop=4 shiftwidth=4 noexpandtab
2
 
/*
3
 
Gwenview - A simple image viewer for KDE
4
 
Copyright 2000-2004 Aur�lien G�teau
5
 
 
6
 
 This program is free software; you can redistribute it and/or
7
 
 modify it under the terms of the GNU General Public License
8
 
 as published by the Free Software Foundation; either version 2
9
 
 of the License, or (at your option) any later version.
10
 
 
11
 
 This program is distributed in the hope that it will be useful,
12
 
 but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
 
 GNU General Public License for more details.
15
 
 
16
 
 You should have received a copy of the GNU General Public License
17
 
 along with this program; if not, write to the Free Software
18
 
 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
19
 
 
20
 
*/
21
 
// KDE
22
 
#include <kaction.h>
23
 
#include <kapplication.h>
24
 
#include <kiconloader.h>
25
 
#include <klocale.h>
26
 
#include <kpopupmenu.h>
27
 
#include <kservice.h>
28
 
 
29
 
// Local
30
 
#include "gvexternaltoolaction.h"
31
 
#include "gvexternaltooldialog.h"
32
 
 
33
 
#include "gvexternaltoolcontext.moc"
34
 
 
35
 
GVExternalToolContext::GVExternalToolContext(
36
 
        QObject* parent,
37
 
        QPtrList<KService> services,
38
 
        KURL::List urls)
39
 
: QObject(parent)
40
 
, mServices(services)
41
 
, mURLs(urls)
42
 
{}
43
 
 
44
 
 
45
 
void GVExternalToolContext::showExternalToolDialog() {
46
 
        GVExternalToolDialog* dialog=new GVExternalToolDialog(kapp->mainWidget());
47
 
        dialog->show();
48
 
}
49
 
 
50
 
 
51
 
QPopupMenu* GVExternalToolContext::popupMenu() {
52
 
        QPopupMenu* menu=new QPopupMenu();
53
 
        QPtrListIterator<KService> it(mServices);
54
 
        for (;it.current(); ++it) {
55
 
                GVExternalToolAction* action=
56
 
                        new GVExternalToolAction(this, it.current(), mURLs);
57
 
                action->plug(menu);
58
 
        }
59
 
 
60
 
        menu->insertSeparator();
61
 
        menu->insertItem(
62
 
                SmallIcon("configure"),
63
 
                i18n("Configure External Tools..."), 
64
 
                this, SLOT(showExternalToolDialog()) );
65
 
        
66
 
        return menu;
67
 
}