summaryrefslogtreecommitdiff
path: root/CliParser.h
blob: 92276c0cf86744de10bc26c19149f73673110d8f (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
/** \file CliParser.h
\brief To group into one class, the CLI parsing
\author alpha_one_x86
\version 0.3
\date 2010
\licence GPL3, see the file COPYING */

#ifndef CLIPARSER_H
#define CLIPARSER_H

#include <QObject>
#include <QMessageBox>
#include <QCoreApplication>

#include "Environment.h"

/** \brief class to parse all command line options */
class CliParser : public QObject
{
	Q_OBJECT
public:
	explicit CliParser(QObject *parent = 0);
public slots:
	/** \brief method to parse the ultracopier arguments
	  \param ultracopierArguments the argument list
	  \param external true if the arguments come from other instance of ultracopier
	*/
	void cli(const QStringList &ultracopierArguments,const bool &external);
signals:
	/** new copy without destination have been pased by the CLI */
	void newCopy(QStringList sources);
	/** new copy with destination have been pased by the CLI */
	void newCopy(QStringList sources,QString destination);
	/** new move without destination have been pased by the CLI */
	void newMove(QStringList sources);
	/** new move with destination have been pased by the CLI */
	void newMove(QStringList sources,QString destination);
};

#endif // CLIPARSER_H