Vesna
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
StatePrintListOfCommandSegments.h
Go to the documentation of this file.
1 #ifndef STATEPRINTLISTOFCOMMANDSEGMENTS_H
2 #define STATEPRINTLISTOFCOMMANDSEGMENTS_H
3 
4 // QT INCLUDES
5 #include <QScopedPointer>
6 
7 // BASE INCLUDES
9 
11 {
12  Q_OBJECT
13 public:
16 
17  virtual StatePrintListOfCommandSegments *Clone( StorageList &inputStream );
18 
19  virtual void OnEnter();
20  virtual void OnPanelActionButtonClicked();
21 
22 private slots:
23  void OnItemRowChanged( int index );
24  void OnLineEditTextChanged( QString text );
25  void OnLineEditReturnPressed();
26 
27 private:
29 
30  class DataClass;
31  QScopedPointer<DataClass> d;
32 
34 };
35 
36 #endif // STATEPRINTLISTOFCOMMANDSEGMENTS_H
StatePrintListOfCommandSegments(ApplicationStateManager *stateManager)
Definition: StatePrintListOfCommandSegments.cpp:139
Definition: ApplicationStateManager.h:43
Definition: ApplicationState.h:33
virtual StatePrintListOfCommandSegments * Clone(StorageList &inputStream)
Definition: StatePrintListOfCommandSegments.cpp:153
virtual ~StatePrintListOfCommandSegments()
Definition: StatePrintListOfCommandSegments.cpp:149
virtual void OnPanelActionButtonClicked()
Definition: StatePrintListOfCommandSegments.cpp:175
virtual void OnEnter()
Definition: StatePrintListOfCommandSegments.cpp:160
Definition: StatePrintListOfCommandSegments.h:10