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.
24 lines
397 B
24 lines
397 B
#ifndef COMMON_MAIN_H
|
|
#define COMMON_MAIN_H
|
|
|
|
#include "base/main.h"
|
|
|
|
#include "lib/libksirtet_export.h"
|
|
|
|
class LIBKSIRTET_EXPORT MainWindow : public BaseMainWindow
|
|
{
|
|
Q_OBJECT
|
|
TQ_OBJECT
|
|
public:
|
|
MainWindow() {}
|
|
|
|
protected:
|
|
void init();
|
|
void addConfig(KConfigDialog *);
|
|
void addKeys(KKeyDialog &);
|
|
void saveKeys();
|
|
virtual void focusInEvent(TQFocusEvent *e);
|
|
};
|
|
|
|
#endif
|