Translate documentation + Fix indentation

- Mod doc set style de same
- Fix indentation code
This commit is contained in:
Simon De Backer
2020-07-26 10:33:15 +02:00
parent 1f78196fa6
commit 0c62bf2b3b
2 changed files with 613 additions and 255 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -48,6 +48,7 @@ class QTextOrientationSpinBoxWidget;
class RecentFiles;
/**
@brief The QETApp class
This class represents the QElectroTech application.
*/
class QETApp : public QObject
@@ -112,26 +113,44 @@ class QETApp : public QObject
public:
static void overrideCommonElementsDir(const QString &);
private:
static QString common_elements_dir; ///< Directory containing the common elements collection
/**
@brief common_elements_dir
Directory containing the common elements collection
*/
static QString common_elements_dir;
#endif
#ifdef QET_ALLOW_OVERRIDE_CTBTD_OPTION
public:
static void overrideCommonTitleBlockTemplatesDir(const QString &);
private:
static QString common_tbt_dir_; ///< Directory containing the common title block templates collection
/**
@brief common_tbt_dir_
Directory containing
the common title block templates collection
*/
static QString common_tbt_dir_;
#endif
#ifdef QET_ALLOW_OVERRIDE_CD_OPTION
public:
static void overrideConfigDir(const QString &);
private:
static QString config_dir; ///< Directory containing the user configuration and the custom elements collection
/**
@brief config_dir
Directory containing the user configuration
and the custom elements collection
*/
static QString config_dir;
#endif
public:
static void overrideLangDir(const QString &);
static QString lang_dir; ///< Directory containing localization files.
/**
@brief lang_dir
Directory containing localization files.
*/
static QString lang_dir;
static QFont diagramTextsFont(qreal = -1.0);
static QFont diagramTextsItemFont(qreal = -1.0);
static QFont dynamicTextsItemFont(qreal = -1.0);
@@ -182,7 +201,12 @@ class QETApp : public QObject
bool every_template_visible;
QSignalMapper signal_map;
QETArguments qet_arguments_; ///< Comand-line arguments parser
bool non_interactive_execution_; ///< Whether the application will end without any user interaction
/**
@brief non_interactive_execution_
Whether the application will end
without any user interaction
*/
bool non_interactive_execution_;
QPalette initial_palette_; ///< System color palette
static TitleBlockTemplatesFilesCollection *m_common_tbt_collection;