summaryrefslogtreecommitdiffstats
path: root/tdecore/tests/klocaletest.h
blob: 83f4f5cef4cfa865423b95fdffcdcf8b7c4ce914 (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
// $Id$

#ifndef KLOCALETEST_H
#define KLOCALETEST_H

#include <tqwidget.h>

class TQLabel;

/** test: a small test program for KLocale
    */
class Test : public TQWidget
{
  Q_OBJECT
  
public:
  /**@name methods */
  //@{
  /** Constructor  
	*/
  Test( TQWidget *parent=0, const char *name=0 );
  /** Destructor
	*/
  ~Test();

private:
  TQString showLocale(TQString cat);
  void createFields();

  TQLabel *label;
};
#endif // TEST_H