pagewidget.h 1.36 KB
Newer Older
1 2
/******************************************************************************
 *
3
 * 
4
 *
5
 * Copyright (C) 1997-2001 by Dimitri van Heesch.
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
 *
 * Permission to use, copy, modify, and distribute this software and its
 * documentation under the terms of the GNU General Public License is hereby 
 * granted. No representations are made about the suitability of this software 
 * for any purpose. It is provided "as is" without express or implied warranty.
 * See the GNU General Public License for more details.
 *
 */

#ifndef _PAGEWIDGET_H
#define _PAGEWIDGET_H

#include <qscrollview.h>

class QTabWidget;
class QVBoxLayout;

class FrameLayout : public QFrame
{
  Q_OBJECT

  public:
    FrameLayout(QWidget *parent=0, const char *name=0, WFlags g=0);
   ~FrameLayout();
    void addStretch(int s=0);
    void addWidget(QWidget *w);

  private:
    QVBoxLayout *lay;
};

class PageWidget : public QScrollView 
{
  Q_OBJECT

  public:
    PageWidget( QTabWidget *parent, const char *name );
    ~PageWidget() {};
    //void frameChanged() 
    //{ 
    //  if (!layout()) return; 
    //  layout()->setMargin(frameWidth()); 
    //}
    void addStretch(int stretch=0);
    void addWidget(QWidget *w);
    QWidget *getLayout() const;

  protected:
    void resizeEvent(QResizeEvent *e);
    void paintEvent(QPaintEvent *e);

  private:
    FrameLayout *lay;
    QTabWidget *m_parent;

};

#endif