Diffstat (limited to 'libopie/big-screen/osplitter.h') (more/less context) (ignore whitespace changes)
-rw-r--r-- | libopie/big-screen/osplitter.h | 102 |
1 files changed, 102 insertions, 0 deletions
diff --git a/libopie/big-screen/osplitter.h b/libopie/big-screen/osplitter.h new file mode 100644 index 0000000..05849af --- a/dev/null +++ b/libopie/big-screen/osplitter.h @@ -0,0 +1,102 @@ +/* + =. This file is part of the OPIE Project + .=l. Copyright (c) 2002 hOlgAr <zecke@handhelds.org> + .>+-= + _;:, .> :=|. This library is free software; you can +.> <`_, > . <= redistribute it and/or modify it under +:`=1 )Y*s>-.-- : the terms of the GNU Library General Public +.="- .-=="i, .._ License as published by the Free Software + - . .-<_> .<> Foundation; either version 2 of the License, + ._= =} : or (at your option) any later version. + .%`+i> _;_. + .i_,=:_. -<s. 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., 59 Temple Place - Suite 330, + Boston, MA 02111-1307, USA. + +*/ + +#ifndef OPIE_SPLITTER_H +#define OPIE_SPLITTER_H + +#include <qstring.h> + +#include <qwidget.h> +#include <qvaluelist.h> + + +/* forward declarations */ +class OTabWidget; +class QHBox; +struct OSplitterContainer; +template class QValueList<OSplitterContainer>; + + +/** + * + * If you've widgets that could be placed side by side but you think + * on small resolutions is not enough place but it would really make sense + * on bigger resolutions this class will help you. + * You can add as many widgets you want to it. Set a poliy on which width/height it + * should switch the layout. + * You can either say to place widgets vertical or horizontal. + * This class uses QHBox, QVBox and QTAbWidget internally. + * OSplitter takes ownership of the widgets + * + * @since 1.2 + * + * @short a small dynamically changing its layout to store two or more widgets side by side + * @version 0.1 + * @author zecke + */ +class OSplitter : public QWidget{ + Q_OBJECT +public: + typedef QValueList<OSplitterContainer> ContainerList; + OSplitter( Qt::Orientation = Horizontal, QWidget *parent = 0, + const char* name = 0, WFlags fl = 0 ); + ~OSplitter(); + + void setSizeChange( int width_height ); + + void addWidget( QWidget* wid, const QString& icon, const QString& label ); + void removeWidget( QWidget* ); + + void setCurrentWidget( QWidget* ); + void setCurrentWidget( const QString& label ); + QWidget* currentWidget(); + + QSize sizeHint()const; + +protected: + void resizeEvent( QResizeEvent* ); + +private: + void relayout(); + void addToTab( const OSplitterContainer& ); + void addToBox( const OSplitterContainer& ); + void removeFromTab( QWidget* ); + void removeFromBox( QWidget* ); + QHBox *m_hbox; + OTabWidget *m_tabWidget; + Orientation m_orient; + int m_size_policy; + + ContainerList m_container; + + struct Private; + Private *d; +}; + + +#endif |