You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
214 lines
5.8 KiB
214 lines
5.8 KiB
/*
|
|
This file is part of the KDE KOffice project.
|
|
|
|
Copyright (C) 2003 Cornelius Schumacher <schumacher@kde.org>
|
|
Copyright (C) 2005 Fredrik Edemar <f_edemar@linux.se>
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU General Public
|
|
License as published by the Free Software Foundation; either
|
|
version 2 of the License, or (at your option) any later version.
|
|
|
|
This program 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
|
|
General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; see the file COPYING. If not, write to
|
|
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
* Boston, MA 02110-1301, USA.
|
|
*/
|
|
#ifndef KOFFICE_ICONSIDEPANEBASE_H
|
|
#define KOFFICE_ICONSIDEPANEBASE_H
|
|
|
|
#include <kactioncollection.h>
|
|
#include <klistbox.h>
|
|
|
|
#include <qbuttongroup.h>
|
|
#include <qlayout.h>
|
|
#include <qtooltip.h>
|
|
#include <qvbox.h>
|
|
#include <qwidgetstack.h>
|
|
|
|
#include "koshellsettings.h"
|
|
|
|
|
|
class Navigator;
|
|
class IconSidePane;
|
|
|
|
enum IconViewMode { LargeIcons = 48, NormalIcons = 32, SmallIcons = 22, ShowText = 3, ShowIcons = 5 };
|
|
|
|
/**
|
|
A @see QListBoxPixmap Square Box with an optional icon and a text
|
|
underneath.
|
|
*/
|
|
class EntryItem : public QListBoxItem
|
|
{
|
|
public:
|
|
EntryItem( Navigator *, int _id, const QString &_text, const QString & _pix );
|
|
~EntryItem();
|
|
|
|
|
|
const QPixmap *pixmap() const { return &mPixmap; }
|
|
|
|
int id() { return mId; }
|
|
|
|
void setNewText( const QString &_text );
|
|
|
|
void setHover( bool );
|
|
void setPaintActive( bool );
|
|
bool paintActive() const { return mPaintActive; }
|
|
|
|
/**
|
|
returns the width of this item.
|
|
*/
|
|
virtual int width( const QListBox * ) const;
|
|
/**
|
|
returns the height of this item.
|
|
*/
|
|
virtual int height( const QListBox * ) const;
|
|
|
|
protected:
|
|
void reloadPixmap();
|
|
|
|
virtual void paint( QPainter *p );
|
|
|
|
private:
|
|
QPixmap mPixmap;
|
|
QString mPixmapName;
|
|
int const mId;
|
|
Navigator* navigator() const;
|
|
bool mHasHover;
|
|
bool mPaintActive;
|
|
};
|
|
|
|
/**
|
|
* Tooltip that changes text depending on the item it is above.
|
|
* Compliments of "Practical Qt" by Dalheimer, Petersen et al.
|
|
*/
|
|
class EntryItemToolTip : public QToolTip
|
|
{
|
|
public:
|
|
EntryItemToolTip( QListBox* parent )
|
|
: QToolTip( parent->viewport() ), mListBox( parent )
|
|
{}
|
|
protected:
|
|
void maybeTip( const QPoint& p ) {
|
|
// We only show tooltips when there are no texts shown
|
|
if ( KoShellSettings::sidePaneShowText() ) return;
|
|
if ( !mListBox ) return;
|
|
QListBoxItem* item = mListBox->itemAt( p );
|
|
if ( !item ) return;
|
|
const QRect itemRect = mListBox->itemRect( item );
|
|
if ( !itemRect.isValid() ) return;
|
|
|
|
const EntryItem *entryItem = static_cast<EntryItem*>( item );
|
|
QString tipStr = entryItem->text();
|
|
tip( itemRect, tipStr );
|
|
}
|
|
private:
|
|
QListBox* mListBox;
|
|
};
|
|
|
|
/**
|
|
Navigation pane showing all parts relevant to the user
|
|
*/
|
|
class Navigator : public KListBox
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
Navigator(bool _selectable, KPopupMenu*, IconSidePane *, QWidget *parent = 0, const char *name = 0 );
|
|
|
|
int insertItem(const QString &_text, const QString &_pix);
|
|
|
|
QSize sizeHint() const;
|
|
IconViewMode viewMode();
|
|
bool showText();
|
|
bool showIcons();
|
|
void calculateMinWidth();
|
|
bool leftMouseButtonPressed(){return mLeftMouseButtonPressed;}
|
|
int minWidth() { return mMinWidth; }
|
|
void resetWidth() { mMinWidth = 0; }
|
|
|
|
signals:
|
|
void itemSelected( int );
|
|
void updateAllWidgets();
|
|
|
|
protected:
|
|
void resizeEvent( QResizeEvent * );
|
|
void enterEvent( QEvent* );
|
|
void mouseReleaseEvent(QMouseEvent *e);
|
|
void mousePressEvent(QMouseEvent *e);
|
|
|
|
void setHoverItem( QListBoxItem*, bool );
|
|
void setPaintActiveItem( QListBoxItem*, bool );
|
|
|
|
protected slots:
|
|
void slotExecuted( QListBoxItem * );
|
|
void slotMouseOn( QListBoxItem *item );
|
|
void slotMouseOff();
|
|
void slotShowRMBMenu( QListBoxItem *, const QPoint& );
|
|
|
|
private:
|
|
IconSidePane *mSidePane;
|
|
int mMinWidth;
|
|
QListBoxItem *executedItem;
|
|
bool mLeftMouseButtonPressed;
|
|
KPopupMenu *mPopupMenu;
|
|
bool mSelectable;
|
|
QListBoxItem* mMouseOn;
|
|
};
|
|
|
|
class IconSidePane :public QVBox
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
IconSidePane( QWidget *parent, const char *name = 0 );
|
|
~IconSidePane();
|
|
|
|
void setActionCollection( KActionCollection *actionCollection );
|
|
KActionCollection *actionCollection() const;
|
|
|
|
int insertItem(const QString & _pix, const QString &_text);
|
|
int insertItem(int _grp, const QString & _pix, const QString &_text);
|
|
int insertGroup(const QString &_text, bool _selectable, QObject *_obj = 0L, const char *_slot = 0L);
|
|
void renameItem( int _grp, int _id, const QString & _text );
|
|
void removeItem( int _grp, int _id );
|
|
void selectGroup(int);
|
|
Navigator *group(int);
|
|
|
|
IconViewMode sizeIntToEnum(int size) const;
|
|
IconViewMode viewMode() { return mViewMode; }
|
|
void setViewMode(int choice){mViewMode = sizeIntToEnum(choice);}
|
|
bool showText() { return mShowText; }
|
|
void toogleText(){mShowText=!mShowText;}
|
|
bool showIcons() { return mShowIcons; }
|
|
void toogleIcons(){mShowIcons=!mShowIcons;}
|
|
QButtonGroup *buttonGroup() { return m_buttongroup; }
|
|
int minWidth();
|
|
void resetWidth();
|
|
|
|
public slots:
|
|
void itemSelected(int);
|
|
void updateAllWidgets();
|
|
|
|
private slots:
|
|
void buttonClicked();
|
|
|
|
private:
|
|
QWidgetStack *mWidgetstack;
|
|
QValueList<int> mWidgetStackIds;
|
|
Navigator *mCurrentNavigator;
|
|
QButtonGroup *m_buttongroup;
|
|
KActionCollection *mActionCollection;
|
|
KPopupMenu *mPopupMenu;
|
|
|
|
IconViewMode mViewMode;
|
|
bool mShowIcons;
|
|
bool mShowText;
|
|
};
|
|
|
|
|
|
#endif
|