-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfenprincipale.h
66 lines (53 loc) · 1.43 KB
/
fenprincipale.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
#ifndef FENPRINCIPALE_H
#define FENPRINCIPALE_H
#include<QtGui>
#include<QtWebKit>
#include<QtWidgets>
#include<QtWebKitWidgets/QtWebKitWidgets>
#include <QMainWindow>
class FenPrincipale : public QMainWindow
{
Q_OBJECT
public:
explicit FenPrincipale(QWidget *parent = 0);
private:
void creerActions();
void creerMenus();
void creerBarresOutils();
void creerBarreEtat();
QWidget *creerOngletPageWeb(QString url=" ");
QWebView *pageActuelle();
signals:
private slots:
void precedente();
void suivante();
void stop();
void actualiser();
void acceuil();
void aPropos();
void nouvelOnglet();
void fermerOnglet();
void changementOnglet(int index);
void chargerPage();
void changementTitre(const QString & titreComplet);
void changementUrl(const QUrl & url);
void chargementDebut();
void chargementEnCours(int pourcentage);
void chargementTermine(bool ok);
private:
QTabWidget *onglets;
QAction *actionNouvelOnglet;
QAction *actionFermerOnglet;
QAction *actionQuitter;
QAction *actionAPropos;
QAction *actionAProposQt;
QAction *actionPrecedente;
QAction *actionSuivante;
QAction *actionStop;
QAction *actionActualiser;
QAction *actionAccueil;
QAction *actionGo;
QLineEdit *champAdresse;
QProgressBar *progression;
};
#endif // FENPRINCIPALE_H