blob: 58a3a57f41fdc165a288f056bcf6582745c2e439 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
// (C) 2005 Max Howell ([email protected])
// See COPYING file for licensing information
#ifndef CODEINE_TOOLBAR_H
#define CODEINE_TOOLBAR_H
#include <ktoolbar.h>
class MouseOverToolBar : public KToolBar
{
virtual bool eventFilter( TQObject*, TQEvent* );
public:
MouseOverToolBar( TQWidget *parent );
};
#endif
|