summaryrefslogtreecommitdiffstats
path: root/kmobile/pref.h
blob: 814303353f6601554501520ed15dd46a9a0c7b47 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/*
 * Copyright (C) 2003 Helge Deller <deller@kde.org>
 */

#ifndef _KMOBILEPREF_H_
#define _KMOBILEPREF_H_

#include <kdialogbase.h>
#include <tqframe.h>

class KMobilePrefPageOne;
class KMobilePrefPageTwo;

class KMobilePreferences : public KDialogBase
{
    Q_OBJECT
  
public:
    KMobilePreferences();

private:
    KMobilePrefPageOne *m_pageOne;
    KMobilePrefPageTwo *m_pageTwo;
};

class KMobilePrefPageOne : public TQFrame
{
    Q_OBJECT
  
public:
    KMobilePrefPageOne(TQWidget *parent = 0);
};

class KMobilePrefPageTwo : public TQFrame
{
    Q_OBJECT
  
public:
    KMobilePrefPageTwo(TQWidget *parent = 0);
};

#endif // _KMOBILEPREF_H_