summaryrefslogtreecommitdiffstats
path: root/knights/console.cpp
blob: 33bbbd528cb831dc857559b70dcc1a49ed771a44 (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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
/***************************************************************************
                          console.cpp  -  description
                             -------------------
    begin                : Sun May 27 2001
    copyright            : (C) 2003 by Troy Corbin Jr.
    email                : tcorbin@users.sourceforge.net
 ***************************************************************************/

/***************************************************************************
 *                                                                         *
 *   This program is free software; you can redistribute it and/or modify  *
 *   it under the terms of the GNU General Public License as published by  *
 *   the Free Software Foundation; either version 2 of the License, or     *
 *   (at your option) any later version.                                   *
 *                                                                         *
 ***************************************************************************/

#include "console.moc"
#include "knightstextview.h"
#include "accel.h"
#include "tabmanager.h"

/* KDE */
#include <klineedit.h>
#include <kiconloader.h>
#include <qregexp.h>
#include <qstyle.h>

Console::Console(QWidget *parent,
                 const char *name,
                 resource *Rsrc ) : QVBox(parent,name)
{
  myResource = Rsrc;
  SelfMoving = FALSE;
  QStyle& Style = QApplication::style();

  margin = Style.defaultFrameWidth();
  myTextView = new KnightsTextView( this, myResource );
  myLineEdit = new KLineEdit( this, "console_edit" );
	/* Configure misc */
	setBG();
	myTextView->setStaticBackground( FALSE );

	connect( myLineEdit, SIGNAL( returnPressed( const QString& ) ), this, SLOT( getText( const QString& ) ) );
	connect( myResource->myAccel, SIGNAL( history_prev() ), this, SLOT( historyBackward() ) );
	connect( myResource->myAccel, SIGNAL( history_next() ), this, SLOT( historyForward() ) );
	connect( myResource->myAccel, SIGNAL( page_up() ), this, SLOT( pageUp() ) );
	connect( myResource->myAccel, SIGNAL( page_down() ), this, SLOT( pageDown() ) );
	connect( myResource->myAccel, SIGNAL( kibitz() ), this, SLOT( kibitz() ) );
	connect( myResource->myAccel, SIGNAL( whisper() ), this, SLOT( whisper() ) );
	connect( myResource->myAccel, SIGNAL( reply_tell() ), this, SLOT( replyPrivate() ) );
	connect( myResource->myAccel, SIGNAL( reply_channel() ), this, SLOT( replyChannel() ) );
	connect( myResource->myAccel, SIGNAL( focus() ), this, SLOT( getFocus() ) );
	connect( myResource->myAccel, SIGNAL( focus( const QChar& ) ), this, SLOT( getFocus( const QChar& ) ) );

	myTextView->show();
	myLineEdit->show();
	show();
}
Console::~Console()
{
	delete myLineEdit;
	delete myTextView;
}
///////////////////////////////////////
//
//	Console::pageDown
//
///////////////////////////////////////
void Console::pageDown( void )
{
	myTextView->pageMove( Qt::Key_PageDown );
}
///////////////////////////////////////
//
//	Console::pageUp
//
///////////////////////////////////////
void Console::pageUp( void )
{
	myTextView->pageMove();
}
///////////////////////////////////////
//
//	Console::recvCMD
//
///////////////////////////////////////
void Console::recvCMD( const Command& command )
{
	QString modText; /* this will hold the text to append after it has been modified with anchors */

	switch(((Command)command).getCommand())
	{
		case CMD_Append_To_Console:
			if( myTextView->contentsY() >= ( myTextView->contentsHeight() - myTextView->visibleHeight() - 12 ) )
			{
				modText = insertTags(((Command)command).getData());
				myTextView->append(modText);
				myTextView->scrollToBottom();
			}
			else
			{
				modText = insertTags(((Command)command).getData());
				myTextView->append(modText);
			}
			break;
		case CMD_Set_Input:
			myLineEdit->setText( ((Command)command).getData() );
			if( !myLineEdit->hasFocus() )
				getFocus();
			break;
		case CMD_Set_Src_Tell:
			lastPrivateSource = ((Command)command).getData();
			break;
		case CMD_Set_Src_Channel:
			lastChannelSource = ((Command)command).getData();
			break;
		default:
			break;
	}
}
///////////////////////////////////////
//
//	Console::getText
//
///////////////////////////////////////
void Console::getText( const QString &text )
{
	/* Append this text into our history */
	history.append( text );
	if( history.count() > 100 )
		history.remove( history.begin() );
	historyIT = history.end();
	emit sendCMD( Command( 0, CMD_Send_To_ICS, text ) );
	myLineEdit->clear();
}
///////////////////////////////////////
//
//	Console::historyBack
//
///////////////////////////////////////
void Console::historyBackward( void )
{
	if( history.count() && ( historyIT != history.begin() ) )
	{
		historyIT--;
		myLineEdit->setText( (*historyIT) );
	}
	if( !myLineEdit->hasFocus() )
		getFocus();
}
///////////////////////////////////////
//
//	Console::historyForward
//
///////////////////////////////////////
void Console::historyForward( void )
{
	if( history.count() && ( historyIT != history.end() ) )
	{
		historyIT++;
		myLineEdit->setText( (*historyIT) );
	}
	if( !myLineEdit->hasFocus() )
		getFocus();
}
///////////////////////////////////////
//
//	Console::replyPrivate
//
///////////////////////////////////////
void Console::replyPrivate( void )
{
	myLineEdit->setText( QString( "tell %1 " ).arg( lastPrivateSource ) );
	if( !myLineEdit->hasFocus() )
		getFocus();
}
///////////////////////////////////////
//
//	Console::replyChannel
//
///////////////////////////////////////
void Console::replyChannel( void )
{
	myLineEdit->setText( QString( "tell %1 " ).arg( lastChannelSource ) );
	if( !myLineEdit->hasFocus() )
		getFocus();
}
///////////////////////////////////////
//
//	Console::kibitz
//
///////////////////////////////////////
void Console::kibitz( void )
{
	myLineEdit->setText( QString( "kibitz " ) );
	if( !myLineEdit->hasFocus() )
		getFocus();
}
///////////////////////////////////////
//
//	Console::whisper
//
///////////////////////////////////////
void Console::whisper( void )
{
	myLineEdit->setText( QString( "whisper " ) );
	if( !myLineEdit->hasFocus() )
		getFocus();
}
///////////////////////////////////////
//
//	Console::getFocus
//
///////////////////////////////////////
void Console::getFocus( void )
{
	if( myLineEdit->hasFocus() )
	{
		getText( myLineEdit->text() );
	}
	setActiveWindow();
	myResource->tabManager->showTab( this );
	myLineEdit->setFocus();
}
void Console::getFocus( const QChar &c )
{
	myLineEdit->setText( myLineEdit->text() + QString( c ) );
	if( !myLineEdit->hasFocus() )
		getFocus();
}
///////////////////////////////////////
//
//	Console::setBG
//
///////////////////////////////////////
void Console::setBG( void )
{
	myTextView->setPaper( QBrush( myResource->COLOR_Background ) );
}

///////////////////////////////////////
//
//	Console::insertTags(QString data)
//
///////////////////////////////////////
QString Console::insertTags(QString data)
{
	QRegExp hyperLinks("(http://(?:.)+(?:\\.(?:[^\\s\\r\\t<])+)+)");
	QRegExp mailLinks("\\b((?:\\w|\\d)+\\@(?:\\w|\\d)+(?:\\.(?:\\d|\\w)+)+)\\b");
	int pos = 0;

	pos = hyperLinks.search(data, 0);
	if(pos >= 0)
	{
		data.replace(hyperLinks, "<A HREF=\"" + hyperLinks.cap(0) + "\">" + hyperLinks.cap(0) + "</A>");
	}
	pos = mailLinks.search(data, 0);
	if(pos >= 0)
	{
		data.replace(mailLinks, "<A HREF=\"mailto:" + mailLinks.cap(0) + "\">" + mailLinks.cap(0) + "</A>");
	}
	return data;
}