-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathNoteTypeSignalAction.h
43 lines (36 loc) · 1.35 KB
/
NoteTypeSignalAction.h
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
#ifndef NOTETYPESIGNALACTION_H
#define NOTETYPESIGNALACTION_H
#include <QAction>
#include "NoteFactory.h"
#include "ExportStrategy.h"
/*!
* \brief The NoteTypeSignalAction class Cette class herite de QAction qui permet d'envoie un signal qui signifie le type de note associe a cette action.
* Ceci permet d'utilise un seul Slot pour gerer un ensembles des actions (ex. NewArticleAction, NewDocumentActions etc...).
* Ici, nous avons utilise un \link<QSignalMapper> pour rediriger la signal.
*/
class NoteTypeSignalAction : public QAction
{
Q_OBJECT
NoteType nType;
public:
explicit NoteTypeSignalAction(NoteType type, const QString& label, QObject *parent);
signals:
void triggeredWithId(const int id);
public slots:
};
/*!
* \brief The ExportTypeSignalAction class Cette class herite de QAction qui permet d'envoie un signal qui signifie le type de export associe a cette action.
* Ceci permet d'utilise un seul Slot pour gerer un ensembles des actions (ex. ExportHtml, ExportTex etc...).
* Ici, nous avons utilise un \link<QSignalMapper> pour rediriger la signal.
*/
class ExportTypeSignalAction : public QAction
{
Q_OBJECT
ExportType nType;
public:
explicit ExportTypeSignalAction(ExportType type, const QString& label, QObject *parent);
signals:
void triggeredWithId(const int id);
public slots:
};
#endif // NOTETYPESIGNALACTION_H