kbookmarkbar.h
00001 /* This file is part of the KDE project 00002 Copyright (C) 1999 Kurt Granroth <granroth@kde.org> 00003 00004 This library is free software; you can redistribute it and/or 00005 modify it under the terms of the GNU Library General Public 00006 License as published by the Free Software Foundation; either 00007 version 2 of the License, or (at your option) any later version. 00008 00009 This library is distributed in the hope that it will be useful, 00010 but WITHOUT ANY WARRANTY; without even the implied warranty of 00011 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00012 Library General Public License for more details. 00013 00014 You should have received a copy of the GNU Library General Public License 00015 along with this library; see the file COPYING.LIB. If not, write to 00016 the Free Software Foundation, Inc., 59 Temple Place - Suite 330, 00017 Boston, MA 02111-1307, USA. 00018 */ 00019 #ifndef KBOOKMARKBAR_H 00020 #define KBOOKMARKBAR_H 00021 00022 #include <qobject.h> 00023 #include <qguardedptr.h> 00024 #include <qptrlist.h> 00025 #include <kbookmark.h> 00026 00027 class KToolBar; 00028 class KBookmarkMenu; 00029 class KBookmarkOwner; 00030 class KActionCollection; 00031 class KAction; 00032 00038 class KBookmarkBar : public QObject 00039 { 00040 Q_OBJECT 00041 public: 00050 KBookmarkBar( KBookmarkManager* mgr, 00051 KBookmarkOwner *owner, KToolBar *toolBar, 00052 KActionCollection *, 00053 QObject *parent = 0L, const char *name = 0L); 00054 00055 virtual ~KBookmarkBar(); 00056 00057 public slots: 00058 void slotBookmarksChanged( const QString & ); 00059 void slotBookmarkSelected(); 00060 void clear(); 00061 00062 protected: 00063 void fillBookmarkBar( KBookmarkGroup & parent ); 00064 00065 private: 00066 KBookmarkOwner *m_pOwner; 00067 QGuardedPtr<KToolBar> m_toolBar; 00068 KActionCollection *m_actionCollection; 00069 KBookmarkManager *m_pManager; 00070 QPtrList<KBookmarkMenu> m_lstSubMenus; 00071 }; 00072 00073 #endif // KBOOKMARKBAR_H