mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
41 lines
1012 B
C++
41 lines
1012 B
C++
/****************************************************************************
|
|
** $Id: qtgrid.h,v 1.1 1998/09/25 18:01:39 ramiro%netscape.com Exp $
|
|
**
|
|
** Copyright (C) 1992-1998 Troll Tech AS. All rights reserved.
|
|
**
|
|
** This file is part of an example program for Qt. This example
|
|
** program may be used, distributed and modified without limitation.
|
|
**
|
|
*****************************************************************************/
|
|
|
|
#ifndef QGRID_H
|
|
#define QGRID_H
|
|
|
|
#ifndef QT_H
|
|
#include "qwidget.h"
|
|
#endif // QT_H
|
|
|
|
class QGridLayout;
|
|
|
|
class QtGrid : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
enum Direction { Horizontal, Vertical };
|
|
QtGrid( int n, QWidget *parent=0, const char *name=0, WFlags f=0 );
|
|
QtGrid( int n, Direction, QWidget *parent=0, const char *name=0, WFlags f=0 );
|
|
bool event( QEvent * );
|
|
|
|
void skip();
|
|
protected:
|
|
virtual void childEvent( QChildEvent * );
|
|
private:
|
|
QGridLayout *lay;
|
|
int row;
|
|
int col;
|
|
int nRows, nCols;
|
|
Direction dir;
|
|
};
|
|
|
|
#endif //QGRID_H
|