File: mainwindow.h

package info (click to toggle)
ulcc 1.0.2-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 4,420 kB
  • sloc: cpp: 852; xml: 23; sh: 17; makefile: 6
file content (86 lines) | stat: -rw-r--r-- 1,909 bytes parent folder | download | duplicates (2)
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
#ifndef MAINWINDOW_H
#define MAINWINDOW_H

#include <QMainWindow>
#include <QToolBar>
#include <QSettings>
#include <QPushButton>
#include <QTranslator>

#include "ManagerDictionaries.h"

namespace Ui {
class MainWindow;
}

class MainWindow : public QMainWindow{
    Q_OBJECT

    public:
        explicit MainWindow(QWidget *parent = nullptr);
        ~MainWindow();

        void setColorPushButton(QPushButton *button, QString color);

    private:
        Ui::MainWindow *ui;

        void initToolBar();
        void refreshTranslate();
        void refreshDynamicPushButtonText();

        void modifyPosition();

        bool loadDictionary(QString dictionary);
        void refreshImage();
        void refreshScore();

        void startGame();

        QSettings *confSettings;

        DICTIONARY currentDictionary;

        QString selectDictionary;
        QString selectLanguageDictionary;

        int currentIndexDictionaryImage;
        int indexCorrectAnswer;

        int m_correct;
        int m_total;
        int m_wrong;

        bool waitAnswer;
        bool runGame;

        // for translate
        QTranslator translator;
        QTranslator qtTranslator;
        QMap<QWidget*,QMap<QString,QString>> listWidgetsRetranslateUi;
        QMap<QAction*,QMap<QString,QString>> listActionsRetranslateUi;
        QMap<QPushButton*,QString> listDynamicPushButtonText;


        QToolBar *toolBar;
        QAction *accDictionary;
        QAction *accLanguage;
        QAction *accHelp;
        QAction *accInfo;
        QAction *accExit;

    protected:
        void resizeEvent(QResizeEvent */*e*/);
        void showEvent(QShowEvent *event);

    private slots:
        void clickButton();
        void clickButtonNext();

        void clickButtonDictionary();
        void clickButtonLanguage();
        void clickButtonInfo();
        void clickButtonHelp();
};

#endif // MAINWINDOW_H