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.
33 lines
440 B
33 lines
440 B
15 years ago
|
// $Id$
|
||
|
|
||
|
#ifndef KLOCALETEST_H
|
||
|
#define KLOCALETEST_H
|
||
|
|
||
14 years ago
|
#include <tqwidget.h>
|
||
15 years ago
|
|
||
14 years ago
|
class TQLabel;
|
||
15 years ago
|
|
||
|
/** test: a small test program for KLocale
|
||
|
*/
|
||
14 years ago
|
class Test : public TQWidget
|
||
15 years ago
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
/**@name methods */
|
||
|
//@{
|
||
|
/** Constructor
|
||
|
*/
|
||
14 years ago
|
Test( TQWidget *parent=0, const char *name=0 );
|
||
15 years ago
|
/** Destructor
|
||
|
*/
|
||
|
~Test();
|
||
|
|
||
|
private:
|
||
14 years ago
|
TQString showLocale(TQString cat);
|
||
15 years ago
|
void createFields();
|
||
|
|
||
14 years ago
|
TQLabel *label;
|
||
15 years ago
|
};
|
||
|
#endif // TEST_H
|