BuildmLearn Toolkit  2.0.4
BuildmLearn Toolkit is an easy-to-use program that helps users make mobile apps without any knowledge of application development.
 All Classes Functions Enumerations Groups Pages
quizitem.h
1 /*
2  Copyright (c) 2012, BuildmLearn Contributors listed at http://buildmlearn.org/people/
3  All rights reserved.
4 
5  Redistribution and use in source and binary forms, with or without
6  modification, are permitted provided that the following conditions are met:
7 
8  * Redistributions of source code must retain the above copyright notice, this
9  list of conditions and the following disclaimer.
10 
11  * Redistributions in binary form must reproduce the above copyright notice,
12  this list of conditions and the following disclaimer in the documentation
13  and/or other materials provided with the distribution.
14 
15  * Neither the name of the BuildmLearn nor the names of its
16  contributors may be used to endorse or promote products derived from
17  this software without specific prior written permission.
18 
19  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
20  AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21  IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
22  DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
23  FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24  DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
25  SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
26  CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
27  OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28  OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 */
30 
31 #ifndef QUIZITEM_H
32 #define QUIZITEM_H
33 
34 #include <QWidget>
35 
36 #include "ui_quizitem.h"
37 
38 #include "templates/quiz/quizquestion.h"
39 
40 
41 namespace Ui {
42  class QuizItem;
43 }
44 
45 /// \brief Widget which represents single question in Quiz.
46 /// \ingroup template-quiz
47 class QuizItem : public QWidget {
48  Q_OBJECT
49 
50  public:
51  /// \brief Enum containing possible states for widget for the question.
52  enum State {
53  Unanswered,
54  AnsweredCorrectly,
55  AnsweredWrongly
56  };
57 
58  // Contructors and destructors.
59  explicit QuizItem(QWidget *parent = 0);
60  virtual ~QuizItem();
61 
62  /// \brief Sets new question for this widget.
63  /// \param question Question object.
64  /// \param question_number Number of the question.
65  void setQuestion(const QuizQuestion &question, int question_number, int total_questions);
66 
67  /// \brief Access to state of quiz question widget.
68  /// \return Returns the state of quiz question widget.
69  State state() const;
70 
71  public slots:
72  /// \brief Resets widget for the question to its original/default state.
73  void reset();
74 
75  signals:
76  /// \brief Emitted if users clicks "Next" or "Submit"
77  void questionSubmitted();
78 
79  private slots:
80  void onNextClicked();
81  void onSubmitClicked();
82 
83  private:
84  void setupButtons();
85  void createConnections();
86  void clearStylesheets();
87 
88  private:
89  State m_state;
90  Ui::QuizItem *m_ui;
91  QuizQuestion m_question;
92  QList<QRadioButton*> m_answerButtons;
93 };
94 
95 #endif // QUIZITEM_H
void reset()
Resets widget for the question to its original/default state.
Definition: quizitem.cpp:96
Widget which represents single question in Quiz.
Definition: quizitem.h:47
State state() const
Access to state of quiz question widget.
Definition: quizitem.cpp:92
void setQuestion(const QuizQuestion &question, int question_number, int total_questions)
Sets new question for this widget.
Definition: quizitem.cpp:74
State
Enum containing possible states for widget for the question.
Definition: quizitem.h:52
void questionSubmitted()
Emitted if users clicks "Next" or "Submit".
Container for one question.
Definition: quizquestion.h:41