/* This file is part of the KDE project Copyright (C) 2000 Carsten Pfeiffer #include #include "konq_sidebartreeitem.h" class QDropEvent; class QPainter; class KonqSidebarHistorySettings; class KonqSidebarHistoryItem : public KonqSidebarTreeItem { public: KonqSidebarHistoryItem( const KonqHistoryEntry *entry, KonqSidebarTreeItem *parentItem, KonqSidebarTreeTopLevelItem *topLevelItem ); ~KonqSidebarHistoryItem(); virtual void rightButtonPressed(); virtual void itemSelected(); // The URL to open when this link is clicked virtual KURL externalURL() const { return m_entry->url; } const KURL& url() const { return m_entry->url; } // a faster one virtual TQString toolTipText() const; TQString host() const { return m_entry->url.host(); } TQString path() const { return m_entry->url.path(); } const TQDateTime& lastVisited() const { return m_entry->lastVisited; } void update( const KonqHistoryEntry *entry ); const KonqHistoryEntry *entry() const { return m_entry; } virtual TQDragObject * dragObject( TQWidget * parent, bool move = false ); virtual TQString key( int column, bool ascending ) const; static void setSettings( KonqSidebarHistorySettings *s ) { s_settings = s; } virtual void paintCell( TQPainter *, const TQColorGroup & cg, int column, int width, int alignment ); private: const KonqHistoryEntry *m_entry; static KonqSidebarHistorySettings *s_settings; }; class KonqSidebarHistoryGroupItem : public KonqSidebarTreeItem { public: KonqSidebarHistoryGroupItem( const KURL& url, KonqSidebarTreeTopLevelItem * ); /** * removes itself and all its children from the history (not just the view) */ void remove(); KonqSidebarHistoryItem * findChild( const KonqHistoryEntry *entry ) const; virtual void rightButtonPressed(); virtual void setOpen( bool open ); virtual TQString key( int column, bool ascending ) const; void itemUpdated( KonqSidebarHistoryItem *item ); bool hasFavIcon() const { return m_hasFavIcon; } void setFavIcon( const TQPixmap& pix ); virtual TQDragObject * dragObject( TQWidget *, bool ); virtual void itemSelected(); // we don't support the following of KonqSidebarTreeItem bool acceptsDrops( const TQStrList& ) { return false; } virtual void drop( TQDropEvent * ) {} virtual KURL externalURL() const { return KURL(); } private: bool m_hasFavIcon; const KURL m_url; TQDateTime m_lastVisited; }; #endif // HISTORY_ITEM_H