mirror of
https://github.com/qelectrotech/qelectrotech-source-mirror.git
synced 2025-12-20 16:20:52 +01:00
Translate documentation + Fix indentation
- Mod doc set style de same - Fix indentation code
This commit is contained in:
File diff suppressed because it is too large
Load Diff
@@ -48,6 +48,7 @@ class QTextOrientationSpinBoxWidget;
|
|||||||
class RecentFiles;
|
class RecentFiles;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@brief The QETApp class
|
||||||
This class represents the QElectroTech application.
|
This class represents the QElectroTech application.
|
||||||
*/
|
*/
|
||||||
class QETApp : public QObject
|
class QETApp : public QObject
|
||||||
@@ -112,26 +113,44 @@ class QETApp : public QObject
|
|||||||
public:
|
public:
|
||||||
static void overrideCommonElementsDir(const QString &);
|
static void overrideCommonElementsDir(const QString &);
|
||||||
private:
|
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
|
#endif
|
||||||
|
|
||||||
#ifdef QET_ALLOW_OVERRIDE_CTBTD_OPTION
|
#ifdef QET_ALLOW_OVERRIDE_CTBTD_OPTION
|
||||||
public:
|
public:
|
||||||
static void overrideCommonTitleBlockTemplatesDir(const QString &);
|
static void overrideCommonTitleBlockTemplatesDir(const QString &);
|
||||||
private:
|
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
|
#endif
|
||||||
|
|
||||||
#ifdef QET_ALLOW_OVERRIDE_CD_OPTION
|
#ifdef QET_ALLOW_OVERRIDE_CD_OPTION
|
||||||
public:
|
public:
|
||||||
static void overrideConfigDir(const QString &);
|
static void overrideConfigDir(const QString &);
|
||||||
private:
|
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
|
#endif
|
||||||
|
|
||||||
public:
|
public:
|
||||||
static void overrideLangDir(const QString &);
|
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 diagramTextsFont(qreal = -1.0);
|
||||||
static QFont diagramTextsItemFont(qreal = -1.0);
|
static QFont diagramTextsItemFont(qreal = -1.0);
|
||||||
static QFont dynamicTextsItemFont(qreal = -1.0);
|
static QFont dynamicTextsItemFont(qreal = -1.0);
|
||||||
@@ -181,9 +200,14 @@ class QETApp : public QObject
|
|||||||
bool every_template_reduced;
|
bool every_template_reduced;
|
||||||
bool every_template_visible;
|
bool every_template_visible;
|
||||||
QSignalMapper signal_map;
|
QSignalMapper signal_map;
|
||||||
QETArguments qet_arguments_; ///< Comand-line arguments parser
|
QETArguments qet_arguments_; ///< Comand-line arguments parser
|
||||||
bool non_interactive_execution_; ///< Whether the application will end without any user interaction
|
/**
|
||||||
QPalette initial_palette_; ///< System color palette
|
@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;
|
static TitleBlockTemplatesFilesCollection *m_common_tbt_collection;
|
||||||
static TitleBlockTemplatesFilesCollection *m_custom_tbt_collection;
|
static TitleBlockTemplatesFilesCollection *m_custom_tbt_collection;
|
||||||
|
|||||||
Reference in New Issue
Block a user