~ubuntu-branches/debian/squeeze/smplayer/squeeze

« back to all changes in this revision

Viewing changes to src/mytable.h

  • Committer: Bazaar Package Importer
  • Author(s): Breuil Cyril
  • Date: 2007-06-24 16:35:29 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20070624163529-hhckbmd24uicada7
Tags: 0.5.20-0ubuntu1
* New upstream release
* Change Maintainer Email

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
#ifndef _MYTABLE_H_
 
3
#define _MYTABLE_H_
 
4
 
 
5
#include <qtable.h>
 
6
#include <qsize.h>
 
7
 
 
8
class MyTable : public QTable
 
9
{
 
10
public:
 
11
        MyTable( QWidget * parent = 0, const char * name = 0 );
 
12
        MyTable( int numRows, int numCols, QWidget * parent = 0, const char * name = 0 );
 
13
 
 
14
        void setSizeHint( QSize s );
 
15
        virtual QSize sizeHint () const;
 
16
 
 
17
private:
 
18
        QSize size_hint;
 
19
};
 
20
 
 
21
 
 
22
#endif
 
23