You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
656 B
43 lines
656 B
/*
|
|
* 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
|
|
{
|
|
TQ_OBJECT
|
|
|
|
public:
|
|
KMobilePreferences();
|
|
|
|
private:
|
|
KMobilePrefPageOne *m_pageOne;
|
|
KMobilePrefPageTwo *m_pageTwo;
|
|
};
|
|
|
|
class KMobilePrefPageOne : public TQFrame
|
|
{
|
|
TQ_OBJECT
|
|
|
|
public:
|
|
KMobilePrefPageOne(TQWidget *parent = 0);
|
|
};
|
|
|
|
class KMobilePrefPageTwo : public TQFrame
|
|
{
|
|
TQ_OBJECT
|
|
|
|
public:
|
|
KMobilePrefPageTwo(TQWidget *parent = 0);
|
|
};
|
|
|
|
#endif // _KMOBILEPREF_H_
|