#ifndef KRBOOKMARK_H #define KRBOOKMARK_H #include #include #include class KActionCollection; class KrBookmark: public KAction { Q_OBJECT TQ_OBJECT public: KrBookmark(TQString name, KURL url, KActionCollection *parent, TQString icon = "", TQString actionName = TQString() ); KrBookmark(TQString name, TQString icon = ""); // creates a folder // text() and setText() to change the name of the bookmark // icon() and setIcon() to change icons (by name) inline const KURL& url() const { return _url; } inline void setURL(const KURL& url) { _url = url; } inline bool isFolder() const { return _folder; } inline bool isSeparator() const { return _separator; } TQPtrList& tqchildren() { return _tqchildren; } static KrBookmark* getExistingBookmark(TQString actionName, KActionCollection *collection); // ----- special bookmarks static KrBookmark* devices(KActionCollection *collection); static KrBookmark* virt(KActionCollection *collection); static KrBookmark* lan(KActionCollection *collection); static KrBookmark* separator(); signals: void activated(const KURL& url); protected slots: void activatedProxy(); private: KURL _url; TQString _icon; bool _folder; bool _separator; TQPtrList _tqchildren; }; #endif // KRBOOKMARK_H