Vesna
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
MenuCategoryHelpBusinessLogic.h
Go to the documentation of this file.
1 #ifndef MENUCATEGORYHELPBUSINESSLOGIC_H
2 #define MENUCATEGORYHELPBUSINESSLOGIC_H
3 
5 
6 class StateMenu;
8 {
9 public:
10  MenuCategoryHelpBusinessLogic(MenuManager *menuManager, BusinessLogicManager *persistentBusinessLogicManager);
12 
17  void static HelpMenuCommand( StateMenu *stateMenu );
18 
23  void static DriverBugReportMenuCommand( StateMenu *stateMenu );
24 
25  void static InternalBugReportMenuCommand( StateMenu *stateMenu );
26 
32 
37  void static SendMessageToDispatchingMenuCommand( StateMenu *stateMenu );
38 
39 private:
40  virtual QString GetMenuCategoryCaption();
41 
43 
44  class DataClass;
45  QSharedPointer<DataClass> d;
46 
48 };
49 
50 #endif // MENUCATEGORYHELPBUSINESSLOGIC_H
Definition: SimpleListMenuCategoryBusinessLogic.h:9
static void DriverBugReportMenuCommand(StateMenu *stateMenu)
DriverBugReportMenuCommand function for menu command that allows the driver to send a bug report to d...
Definition: MenuCategoryHelpBusinessLogic.cpp:45
static void SendMessageToDispatchingMenuCommand(StateMenu *stateMenu)
SendMessageToDispatchingMenuCommand function for menu command that allows the driver to send a messag...
Definition: MenuCategoryHelpBusinessLogic.cpp:60
virtual ~MenuCategoryHelpBusinessLogic()
Definition: MenuCategoryHelpBusinessLogic.cpp:35
Definition: MenuCategoryHelpBusinessLogic.h:7
static void InternalBugReportMenuCommand(StateMenu *stateMenu)
Definition: MenuCategoryHelpBusinessLogic.cpp:50
static void HelpMenuCommand(StateMenu *stateMenu)
HelpMenuCommand function for menu command that shows the help window.
Definition: MenuCategoryHelpBusinessLogic.cpp:40
Definition: MenuManager.h:14
Definition: BusinessLogicManager.h:7
Definition: MenuCategoryHelpBusinessLogic.cpp:14
static void SendEmergencyMessageToDispatchingMenuCommand(StateMenu *stateMenu)
SendEmergencyMessageToDispatchingMenuCommand function for menu command that allows the driver to send...
Definition: MenuCategoryHelpBusinessLogic.cpp:55
Definition: StateMenu.h:8
MenuCategoryHelpBusinessLogic(MenuManager *menuManager, BusinessLogicManager *persistentBusinessLogicManager)
Definition: MenuCategoryHelpBusinessLogic.cpp:29