~ubuntu-branches/ubuntu/wily/psi/wily

« back to all changes in this revision

Viewing changes to src/options/opt_tree.h

  • Committer: Bazaar Package Importer
  • Author(s): Jan Niehusmann
  • Date: 2008-08-28 18:46:52 UTC
  • mfrom: (1.2.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20080828184652-iiik12dl91nq7cdi
Tags: 0.12-2
Uploading to unstable (Closes: Bug#494352)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef OPT_TREE_H
 
2
#define OPT_TREE_H
 
3
 
 
4
#include "optionstab.h"
 
5
 
 
6
class QWidget;
 
7
 
 
8
class OptionsTabTree : public OptionsTab
 
9
{
 
10
        Q_OBJECT
 
11
public:
 
12
        OptionsTabTree(QObject *parent);
 
13
        ~OptionsTabTree();
 
14
 
 
15
        QWidget *widget();
 
16
        
 
17
        bool stretchable() const {return true;};
 
18
 
 
19
private:
 
20
        QWidget *w;
 
21
};
 
22
 
 
23
#endif