~oif-team/ubuntu/natty/qt4-x11/xi2.1

« back to all changes in this revision

Viewing changes to tools/qtconfig/previewwidgetbase.h

  • Committer: Bazaar Package Importer
  • Author(s): Adam Conrad
  • Date: 2005-08-24 04:09:09 UTC
  • Revision ID: james.westby@ubuntu.com-20050824040909-xmxe9jfr4a0w5671
Tags: upstream-4.0.0
ImportĀ upstreamĀ versionĀ 4.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef PREVIEWWIDGETBASE_H
 
2
#define PREVIEWWIDGETBASE_H
 
3
 
 
4
#include <qvariant.h>
 
5
#include "ui_previewwidgetbase.h"
 
6
 
 
7
class PreviewWidgetBase : public QWidget, public Ui::PreviewWidgetBase
 
8
{
 
9
    Q_OBJECT
 
10
 
 
11
public:
 
12
    PreviewWidgetBase(QWidget* parent = 0, const char* name = 0, Qt::WFlags fl = 0);
 
13
    ~PreviewWidgetBase();
 
14
 
 
15
protected slots:
 
16
    virtual void languageChange();
 
17
 
 
18
    virtual void init();
 
19
    virtual void destroy();
 
20
 
 
21
 
 
22
};
 
23
 
 
24
#endif // PREVIEWWIDGETBASE_H