Translated all comments found in header files (*.h) from French to English.

git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@1960 bfdf4180-ca20-0410-9c96-a3a8aa849046
This commit is contained in:
xavier
2012-11-09 21:09:24 +00:00
parent 75c37aa029
commit 160ccec733
117 changed files with 1710 additions and 1770 deletions

View File

@@ -20,13 +20,14 @@
#include <QtGui>
#include "elementspanel.h"
/**
Cette classe est un widget qui contient le panel d'elements surplombe d'une
barre d'outils avec differentes actions pour gerer les elements.
This class embeds an elements panel under a toolbar providing various actions
to manage elements.
@see ElementsPanel
*/
class ElementsPanelWidget : public QWidget {
Q_OBJECT
// constructeurs, destructeur
// constructors, destructor
public:
ElementsPanelWidget(QWidget * = 0);
virtual ~ElementsPanelWidget();
@@ -34,7 +35,7 @@ class ElementsPanelWidget : public QWidget {
private:
ElementsPanelWidget(const ElementsPanelWidget &);
// attributs
// attributes
private:
ElementsPanel *elements_panel;
QToolBar *toolbar, *filter_toolbar;
@@ -51,7 +52,7 @@ class ElementsPanelWidget : public QWidget {
ElementsCollectionItem *dnd_item_src_, *dnd_item_dst_;
QProgressBar *progress_bar_;
// methodes
// methods
public:
inline ElementsPanel &elementsPanel() const;
@@ -110,7 +111,7 @@ class ElementsPanelWidget : public QWidget {
};
/**
@return Le panel d'elements imbrique dans ce widget
@return The elements panel embedded within this widget.
*/
inline ElementsPanel &ElementsPanelWidget::elementsPanel() const {
return(*elements_panel);