dolphin/lib/konq/knewmenu.h
Reza Arbab 563ed54e79 Satisfy picky compilers.
svn path=/trunk/kdebase/libkonq/; revision=137870
2002-02-21 16:29:22 +00:00

159 lines
4.3 KiB
C++

/* This file is part of the KDE project
Copyright (C) 1998-2000 David Faure <faure@kde.org>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library 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
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA.
*/
#ifndef __knewmenu_h
#define __knewmenu_h
#include <qintdict.h>
#include <qstringlist.h>
#include <kaction.h>
namespace KIO { class Job; }
class KDirWatch;
/**
* The 'New' submenu, both for the File menu and the RMB popup menu.
* (The same instance can be used by both).
* Fills it with 'Folder' and one item per Template.
* For this you need to connect aboutToShow() of the File menu with slotCheckUpToDate()
* and to call slotCheckUpToDate() before showing the RMB popupmenu.
*
* KNewMenu automatically updates the list of templates if templates are
* added/updated/deleted.
*
* @author David Faure <faure@kde.org>
* Ideas and code for the new template handling mechanism ('link' desktop files)
* from Christoph Pickart <pickart@iam.uni-bonn.de>
*/
class KNewMenu : public KActionMenu
{
Q_OBJECT
public:
/**
* Constructor
*/
KNewMenu( KActionCollection * _collec, const char *name=0L );
virtual ~KNewMenu();
/**
* Set the files the popup is shown for
* Call this before showing up the menu
*/
void setPopupFiles(KURL::List & _files) {
popupFiles = _files;
}
void setPopupFiles(const KURL & _file) {
popupFiles.clear();
popupFiles.append( _file );
}
public slots:
/**
* Checks if updating the list is necessary
* IMPORTANT : Call this in the slot for aboutToShow.
*/
void slotCheckUpToDate( );
protected slots:
/**
* Called when New->* is clicked
*/
void slotNewFile();
/**
* Fills the templates list.
*/
void slotFillTemplates();
void slotResult( KIO::Job * );
private:
/**
* Fills the menu from the templates list.
*/
void fillMenu();
/**
* Opens the desktop files and completes the Entry list
* Input: the entry list. Output: the entry list ;-)
*/
void parseFiles();
/**
* For entryType
* LINKTOTEMPLATE: a desktop file that points to a file or dir to copy
* TEMPLATE: a real file to copy as is (the KDE-1.x solution)
* SEPARATOR: to put a separator in the menu
* 0 means: not parsed, i.e. we don't know
*/
enum { LINKTOTEMPLATE = 1, TEMPLATE, SEPARATOR };
struct Entry {
QString text;
QString filePath; // empty for SEPARATOR
QString templatePath; // same as filePath for TEMPLATE
QString icon;
int entryType;
QString comment;
};
// NOTE: only filePath is known before we call parseFiles
/**
* List of all template files. It is important that they are in
* the same order as the 'New' menu.
*/
static QValueList<Entry> * s_templatesList;
KActionCollection * m_actionCollection;
/**
* Is increased when templatesList has been updated and
* menu needs to be re-filled. Menus have their own version and compare it
* to templatesVersion before showing up
*/
static int s_templatesVersion;
/**
* Set back to false each time new templates are found,
* and to true on the first call to parseFiles
*/
static bool s_filesParsed;
int menuItemsVersion;
/**
* When the user pressed the right mouse button over an URL a popup menu
* is displayed. The URL belonging to this popup menu is stored here.
*/
KURL::List popupFiles;
/**
* True when a desktop file with Type=URL is being copied
*/
bool m_isURLDesktopFile;
QString m_destURL;
static KDirWatch * s_pDirWatch;
};
#endif