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.
23 lines
409 B
23 lines
409 B
/****************************************************************
|
|
**
|
|
** Definition of ArrowPad class, translation tutorial 2
|
|
**
|
|
****************************************************************/
|
|
|
|
#ifndef ARROWPAD_H
|
|
#define ARROWPAD_H
|
|
|
|
#include <ntqgrid.h>
|
|
|
|
class ArrowPad : public TQGrid
|
|
{
|
|
TQ_OBJECT
|
|
public:
|
|
ArrowPad( TQWidget *parent = 0, const char *name = 0 );
|
|
|
|
private:
|
|
void skip();
|
|
};
|
|
|
|
#endif
|