blob: 33ea818701b4fc2f42cc787d2df071846a737cf5 (
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
|
//
// C++ Interface: UserActionPopupMenu
//
// Description:
//
//
// Author: Jonas Bähr, (C) 2004
//
// Copyright: See COPYING file that comes with this distribution
//
//
#ifndef USERACTIONPOPUPMENU_H
#define USERACTIONPOPUPMENU_H
#include <tdepopupmenu.h>
class KURL;
class UserActionPopupMenu : public TDEPopupMenu {
public:
UserActionPopupMenu( KURL currentURL, TQWidget *parent = 0 );
};
#endif // ifndef USERACTIONPOPUPMENU_H
|