~ubuntu-branches/ubuntu/oneiric/psi/oneiric

« back to all changes in this revision

Viewing changes to src/options/opt_events.h

  • Committer: Bazaar Package Importer
  • Author(s): Jan Niehusmann
  • Date: 2005-01-10 17:41:43 UTC
  • mfrom: (1.2.1 upstream) (2.1.2 hoary)
  • Revision ID: james.westby@ubuntu.com-20050110174143-ltocv5zapl6blf5d
Tags: 0.9.3-1
* New upstream release
* Cleaned up debian/rules (some things are done by upstream Makefiles now)
* Fixed some lintian warnings:
  - removed executable bit from some .png files
  - moved psi.desktop to /usr/share/applications
* Updated menu files

Show diffs side-by-side

added added

removed removed

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