blob: ccd59a8a6f6fc1ba2da951c9e96603e509230f2f (
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
/* This file is part of the KDE project
Copyright (C) 2001 Simon Hausmann <hausmann@kde.org>
This program is free software; you can redistribute it and/or
modify it under the terms of the Artistic License.
*/
#ifndef __topic_h__
#define __topic_h__
#include <kactivelabel.h>
#include <tqtextedit.h>
#include <tqlineedit.h>
#include <tqpopupmenu.h>
#include <tqguardedptr.h>
class KSircTopicEditor;
class KSircTopic : public KActiveLabel
{
Q_OBJECT
TQ_OBJECT
public:
KSircTopic( TQWidget *parent, const char *name = 0 );
public slots:
virtual void setText( const TQString &);
signals:
void topicChange( const TQString &newTopic );
protected:
virtual void contentsMouseDoubleClickEvent( TQMouseEvent * );
virtual void contentsMouseReleaseEvent( TQMouseEvent * );
virtual void fontChange(TQFont &);
private slots:
void setNewTopic();
void slotEditResized();
void doResize();
private:
TQGuardedPtr<KSircTopicEditor> m_editor;
bool m_doEdit;
int m_height;
TQString m_text;
};
class KSircTopicEditor : public TQTextEdit
{
Q_OBJECT
TQ_OBJECT
public:
KSircTopicEditor( TQWidget *parent, const char *name = 0 );
signals:
void resized();
public slots:
virtual void slotMaybeResize();
protected:
virtual void keyPressEvent( TQKeyEvent *ev );
virtual void focusOutEvent( TQFocusEvent * );
virtual TQPopupMenu *createPopupMenu( const TQPoint &pos );
private:
TQGuardedPtr<TQPopupMenu> m_popup;
};
#endif
|