summaryrefslogtreecommitdiffstats
path: root/kopete/libkopete/private/kopetecommand.h
blob: 5fc967a2cd1fd6d31867b13ecbc62e82a0d852aa (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

/*
    kopetecommand.h - Command

    Copyright (c) 2003      by Jason Keirstead       <jason@keirstead.org>
    Kopete    (c) 2002-2003 by the Kopete developers <kopete-devel@kde.org>

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

#ifndef __KOPETECOMMAND_H__
#define __KOPETECOMMAND_H__

#include <tqobject.h>
#include <tdeaction.h>
#include "kopetecommandhandler.h"

namespace Kopete
{

class ChatSession;

class Command : public TDEAction
{
	Q_OBJECT
  

	public:
		/**
		 * Creates a Kopete::Command object
		 *
		 * @param parent The plugin who owns this command
		 * @param command The command we want to handle, not including the '/'
		 * @param handlerSlot The slot used to handle the command. This slot must
		 *   accept two parameters, a TQString of arguments, and a Kopete::ChatSession
		 *   pointer to the Manager under which the command was sent.
		 * @param help An optional help string to be shown when the user uses
		 *   /help <i>command</i>
		 * @param type If this command is an alias, and what type
		 * @param formatString The formatString of the alias if any
		 * @param minArgs Minimum number of arguments
		 * @param maxArgs Maximum number of arguments
		 * @param cut The shortcut for the command
		 * @param pix The icon to use for the command
		 */
		 Command( TQObject *parent, const TQString &command, const char* handlerSlot,
		 	const TQString &help = TQString(), CommandHandler::CommandType type = CommandHandler::Normal, const TQString &formatString = TQString(),
			uint minArgs = 0, int maxArgs = -1, const TDEShortcut &cut = 0,
			const TQString &pix = TQString() );

		/**
		 * Process this command
		 */
		void processCommand( const TQString &args, ChatSession *manager, bool gui = false );

		/**
		 * Returns the command this object handles
		 */
		 const TQString &command() const { return m_command; };

		 /**
		  * Returns the help string for this command
		  */
		 const TQString &help() const { return m_help; };

		 /**
		  * Returns the type of the command
		  */
		 const CommandHandler::CommandType type() const { return m_type; };

	signals:
		/**
		 * Emitted whenever a command is handled by this object. When a command
		 * has been handled, all processing on it stops by the command handler
		 * (a command cannot be handled twice)
		 */
		void handleCommand( const TQString &args, Kopete::ChatSession *manager );

	private slots:
		/**
		 * Connected to our activated() signal
		 */
		void slotAction();

	private:
		void init( const TQString &command, const char* slot, const TQString &help,
			CommandHandler::CommandType type, const TQString &formatString,
			uint minArgs, int maxArgs );

		void printError( const TQString &error, ChatSession *manager, bool gui = false ) const;

		TQString m_command;
		TQString m_help;
		TQString m_formatString;
		uint m_minArgs;
		int m_maxArgs;
		bool m_processing;
		CommandHandler::CommandType m_type;
};

}

#endif