~ubuntu-branches/ubuntu/dapper/psi/dapper

« back to all changes in this revision

Viewing changes to src/options/opt_chat.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_CHAT_H
 
2
#define OPT_CHAT_H
 
3
 
 
4
#include "optionstab.h"
 
5
 
 
6
class QWidget;
 
7
struct Options;
 
8
class QButtonGroup;
 
9
 
 
10
class OptionsTabChat : public OptionsTab
 
11
{
 
12
        Q_OBJECT
 
13
public:
 
14
        OptionsTabChat(QObject *parent);
 
15
        ~OptionsTabChat();
 
16
 
 
17
        QWidget *widget();
 
18
        void applyOptions(Options *opt);
 
19
        void restoreOptions(const Options *opt);
 
20
 
 
21
private:
 
22
        QWidget *w;
 
23
        QButtonGroup *bg_defAct, *bg_delChats;
 
24
};
 
25
 
 
26
#endif