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
356 B
23 lines
356 B
#ifndef SESSIONACTION_H |
|
#define SESSIONACTION_H |
|
|
|
#include <kaction.h> |
|
|
|
class NewSessionAction : public KAction |
|
{ |
|
Q_OBJECT |
|
|
|
public: |
|
NewSessionAction(const QObject *recvr = 0, const char *slot = 0, QObject *parent = 0); |
|
|
|
int plug( QWidget *w, int index = -1 ); |
|
|
|
void setPopup( QPopupMenu *popup ); |
|
|
|
protected: |
|
|
|
QPopupMenu * m_popup; |
|
|
|
}; |
|
|
|
#endif
|
|
|