summaryrefslogtreecommitdiffstats
path: root/knights/console.h
blob: 2d9b814a09adde37db2ed7367c098bed5364ed25 (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
/***************************************************************************
                          console.h  -  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.                                   *
 *                                                                         *
 ***************************************************************************/

#ifndef CONSOLE_H
#define CONSOLE_H

/* TQt */
#include <tqstringlist.h>
#include <tqvbox.h>
#include <tqlayout.h>
/* Local */
#include "definitions.h"
#include "resource.h"
#include "command.h"

/**
  *@author Troy Corbin Jr.
  */

class KLineEdit;
class KnightsTextView;

class Console : public TQVBox
{
	Q_OBJECT
  TQ_OBJECT

	public:

		enum Direction
		{
			Up					= 1,
			Down				= 0
		};

														Console(TQWidget *tqparent=0, const char *name=0, resource *Rsrc=0);
														~Console();
		void										buildAccel( void );

	public slots:
		void										recvCMD( const Command& );
		void										getText( const TQString& );
		void										historyBackward( void );
		void										historyForward( void );
		void										pageUp( void );
		void										pageDown( void );
		void										getFocus( void );
		void										getFocus( const TQChar& );
		void										setBG( void );
		void										replyPrivate( void );
		void										replyChannel( void );
		void										kibitz( void );
		void										whisper( void );

	signals:
		void										sendCMD( const Command& );

	private:
		TQString									insertTags(TQString);

		resource								*myResource;
		int											margin;
		bool										SelfMoving;

		KnightsTextView					*myTextView;
		KLineEdit								*myLineEdit;

		TQStringList							history;
		TQStringList::Iterator		historyIT;
		TQString									lastPrivateSource;
		TQString									lastChannelSource;
};

#endif