|
|
|
/* This file is part of the KDE project
|
|
|
|
Copyright (C) 2003 Peter Simonsson <psn@linux.se>,
|
|
|
|
theKompany.com & Dave Marotti
|
|
|
|
|
|
|
|
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., 51 Franklin Street, Fifth Floor,
|
|
|
|
Boston, MA 02110-1301, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef KIVIOSTENCILSETACTION_H
|
|
|
|
#define KIVIOSTENCILSETACTION_H
|
|
|
|
|
|
|
|
|
|
|
|
#include <tdeaction.h>
|
|
|
|
|
|
|
|
#include <tqptrlist.h>
|
|
|
|
#include <tqvaluelist.h>
|
|
|
|
#include <tqstringlist.h>
|
|
|
|
|
|
|
|
class TDEPopupMenu;
|
|
|
|
class TQPixmap;
|
|
|
|
|
|
|
|
class KivioStencilSetAction : public TDEAction
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
KivioStencilSetAction(const TQString &text, const TQString &pix,
|
|
|
|
TDEActionCollection *parent, const char *name);
|
|
|
|
|
|
|
|
virtual ~KivioStencilSetAction();
|
|
|
|
|
|
|
|
TDEPopupMenu* popupMenu() const;
|
|
|
|
void popup( const TQPoint& global );
|
|
|
|
|
|
|
|
virtual int plug( TQWidget* widget, int index = -1 );
|
|
|
|
|
|
|
|
public slots:
|
|
|
|
void updateMenu();
|
|
|
|
|
|
|
|
protected slots:
|
|
|
|
void slotActivated(int);
|
|
|
|
|
|
|
|
signals:
|
|
|
|
void activated( const TQString& );
|
|
|
|
void showDialog();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
TQPixmap dirtPixmap( const TQString& dir );
|
|
|
|
void loadCollections( const TQString& rootDirStr );
|
|
|
|
void loadSet( TDEPopupMenu* menu, const TQString& rootDirStr );
|
|
|
|
void clearCollectionMenuList();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
TDEPopupMenu* m_popup;
|
|
|
|
uint m_ssId;
|
|
|
|
TQPtrList<TQString> m_pathList;
|
|
|
|
TQStringList m_collectionIdList;
|
|
|
|
TQValueList<TDEPopupMenu*> m_collectionMenuList;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|