~ubuntu-branches/ubuntu/breezy/psi/breezy

« back to all changes in this revision

Viewing changes to src/options/opt_application.h

  • Committer: Bazaar Package Importer
  • Author(s): Jan Niehusmann
  • Date: 2004-06-15 00:10:41 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20040615001041-enywb6pcpe4sjsw6
Tags: 0.9.2-1
* New upstream release
* Set KDEDIR for ./configure so kde specific files get installed
* Don't install libpsiwidgets.so. It got installed in /usr/share
  where it doesn't belong. May be included (at a better location)
  later.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef OPT_APPLICATION_H
 
2
#define OPT_APPLICATION_H
 
3
 
 
4
#include "optionstab.h"
 
5
 
 
6
class QWidget;
 
7
struct Options;
 
8
class QButtonGroup;
 
9
 
 
10
class OptionsTabApplication : public OptionsTab
 
11
{
 
12
        Q_OBJECT
 
13
public:
 
14
        OptionsTabApplication(QObject *parent);
 
15
        ~OptionsTabApplication();
 
16
 
 
17
        QWidget *widget();
 
18
        void applyOptions(Options *opt);
 
19
        void restoreOptions(const Options *opt);
 
20
 
 
21
private slots:
 
22
        void selectBrowser(int);
 
23
 
 
24
private:
 
25
        QWidget *w;
 
26
};
 
27
 
 
28
#endif