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.
tdevelop/parts/tipofday/tipofday_part.h

35 lines
418 B

/*
* Copyright (C) 2001 Matthias H<>zer-Klpfel <mhk@caldera.de>
*/
#ifndef __KDEVPART_TIPOFDAY_H__
#define __KDEVPART_TIPOFDAY_H__
#include <kdevplugin.h>
class TipOfDayPart : public KDevPlugin
{
TQ_OBJECT
public:
TipOfDayPart(TQObject *parent, const char *name, const TQStringList &);
public slots:
void showTip();
void showOnStart();
private:
TQString getFilename();
};
#endif