Encapsulate some classes in namespaces
authorRafał Długołęcki <rafal@dlugolecki.net.pl>
Thu, 28 Jan 2016 20:45:12 +0000 (21:45 +0100)
committerRafał Długołęcki <rafal@dlugolecki.net.pl>
Thu, 28 Jan 2016 20:45:12 +0000 (21:45 +0100)
18 files changed:
src/edit/PreferencesDialog.cpp
src/edit/PreferencesDialog.h
src/edit/ProgramStructureDialog.cpp
src/edit/ProgramStructureDialog.h
src/edit/UnitStructureDialog.cpp
src/edit/UnitStructureDialog.h
src/edit/editor.cpp
src/edit/editor.h
src/kernel/connect_dialog.cpp
src/kernel/connect_dialog.h
src/kernel/kernel.cpp
src/kernel/kernel.h
src/kernel/kill_interpreter_dialog.cpp
src/kernel/kill_interpreter_dialog.h
src/kernel/lock.cpp
src/kernel/lock.h
src/kernel/options.cpp
src/kernel/options.h

index 4e7d3a002d6788ecf5b05490efdf289d0152ad07..ff355ce9f9efc65d92aac1cb7e34d14fb47c4862 100644 (file)
@@ -1,5 +1,8 @@
 #include "PreferencesDialog.h"
 
+namespace loglan {
+namespace vlp {
+
 PreferencesDialog::PreferencesDialog(QWidget * parent)
        : QDialog(parent)
 {
@@ -42,3 +45,6 @@ void PreferencesDialog::setGenPath(QString path)
 {
        return genPath->setText(path);
 }
+
+}
+}
index 2cd02ba4391fe5f620a4d2315793d5376cc4542f..7311c659a8271eba95333d3ac01dfe895a03e8ff 100644 (file)
@@ -6,6 +6,9 @@
 
 #include "ui/dialogs/PreferencesDialog.h"
 
+namespace loglan {
+namespace vlp {
+
 /**
  * Program Unit Dialog class
  * Displays dialog for generating code template for unit structure
@@ -65,4 +68,7 @@ public:
        void setGenPath(QString path);
 };
 
+}
+}
+
 #endif /* _VLP_EDITOR_PREFERENCESDIALOG_H */
index 25750c887918c69ecec3bf026e48e1ceb1be86eb..623c6aef643d51b2d7096edf63433c5e188e90f3 100644 (file)
@@ -1,5 +1,8 @@
 #include "ProgramStructureDialog.h"
 
+namespace loglan {
+namespace vlp {
+
 
 ProgramStructureDialog::ProgramStructureDialog(QWidget * parent)
        : QDialog(parent)
@@ -25,3 +28,6 @@ QString ProgramStructureDialog::getCode()
        code.sprintf("PROGRAM %s\n\nBEGIN\n\nEND", getProgramName().toStdString().c_str());
        return code;
 }
+
+}
+}
index 35fbe04524914f62de101fdc9b7b4ed49521b002..854e3d9c9c8690cfa790f10a111079c2908a2440 100644 (file)
@@ -7,6 +7,9 @@
 
 #include "ui/dialogs/ProgramStructureDialog.h"
 
+namespace loglan {
+namespace vlp {
+
 /**
  * Program Structure Dialog class
  * Displays dialog for generating code template for program structure
@@ -38,4 +41,7 @@ public:
        QString getCode();
 };
 
+}
+}
+
 #endif /* _VLP_EDITOR_PROGRAMSTRUCTUREDIALOG_H */
index a947a129cc22f1418557407f9abf26d258ab78de..01db86b569e31cf14fae18e0ce88a5877439a990 100644 (file)
@@ -1,5 +1,8 @@
 #include "UnitStructureDialog.h"
 
+namespace loglan {
+namespace vlp {
+
 #define TYPENUM        5
 
 const char *UnitTypes[TYPENUM] = {
@@ -45,3 +48,6 @@ QString UnitStructureDialog::getCode()
        );
        return code;
 }
+
+}
+}
index 32fd7df77df1b88635222961cbdcd30b558be720..6dc5aac2d6e926ab7e60d53ceb55ad3783c29680 100644 (file)
@@ -6,6 +6,9 @@
 
 #include "ui/dialogs/UnitStructureDialog.h"
 
+namespace loglan {
+namespace vlp {
+
 /**
  * Program Unit Dialog class
  * Displays dialog for generating code template for unit structure
@@ -37,4 +40,7 @@ public:
        QString getCode();
 };
 
+}
+}
+
 #endif /* _VLP_EDITOR_PROGRAMSTRUCTUREDIALOG_H */
index b507a6fb6ee796149135d1c6dc044988657ce2fa..563a3e60cd18853ca6dfc0dc3e1e84bb394e6fd8 100644 (file)
@@ -20,6 +20,9 @@
 
 #include "editor.h"
 
+namespace loglan {
+namespace vlp {
+
 /**
  * Editor constructor. Initializes and sets variables of Loglan Editor.
  *
@@ -366,6 +369,9 @@ void Editor::on_actionUnit_structure_triggered()
        }
 }
 
+}
+}
+
 /**
  * Program main function.
  * argv[1] is mandatory and should be a path to the home directory of
@@ -377,7 +383,7 @@ void Editor::on_actionUnit_structure_triggered()
 int main(int argc, char **argv)
 {
        QApplication app(argc, argv);
-       Editor * editor = new Editor(argc, argv);
+       loglan::vlp::Editor * editor = new loglan::vlp::Editor(argc, argv);
        editor->show();
        return app.exec();
 }
index 42b2c2cf28ae43359def3e83b05b23014b5e7d5c..01e2e2a9918d994be3e086b2c69453b98f3781d9 100644 (file)
@@ -9,6 +9,9 @@
 
 #include "ui/editor.h"
 
+namespace loglan {
+namespace vlp {
+
 #define COMP_MODE      1
 #define GEN_MODE       2
 #define ALL_MODE       3
@@ -70,4 +73,7 @@ private slots:
        void on_editor_cursorPositionChanged();
 };
 
+}
+}
+
 #endif // QWERTY_H
index 9df1a65443b1f84e8381d29e4cf20b77889d3ec3..9484101bb6c3735569e38d4a2a010565071ef944 100644 (file)
@@ -2,6 +2,9 @@
 
 #include "connect_dialog.h"
 
+namespace loglan {
+namespace vlp {
+
 ConnectDialog::ConnectDialog(QWidget * parent)
        : QDialog(parent, Qt::Dialog)
 {
@@ -16,3 +19,6 @@ QString ConnectDialog::getAddress()
 {
        return address->text();
 }
+
+}
+}
index 99d1acef17e025195c9cd29730e4b3e45febd33c..4219d33a791ecf4656fcad9ec770da40cbfe6ba3 100644 (file)
@@ -6,6 +6,9 @@
 
 #include "ui/connect_dialog.h"
 
+namespace loglan {
+namespace vlp {
+
 /**
  * Kill Interpreter Dialog class
  */
@@ -17,4 +20,7 @@ public:
        QString getAddress();
 };
 
+}
+}
+
 #endif /* _VLP_KERNEL_CONNECTDIALOG_H */
index c943c48930500408c4d83df06927a861b9ead1e4..a37c89433931be1787eefdd19dcc09a426b5bfd5 100644 (file)
@@ -77,6 +77,9 @@
 #include "../../config.h"
 
 
+namespace loglan {
+namespace vlp {
+
 char CharLine[25] = "________________________";
 
 /**
@@ -1110,6 +1113,9 @@ void QKernel::on_actionInfo_triggered()
        wait_for_info = TRUE;
 }
 
+}
+}
+
 /**
  * Program main function
  * All program arguments but the first one (argv[0]: program name) are saved and
@@ -1122,8 +1128,8 @@ int main(int argc, char **argv)
        XInitThreads();
 
        QApplication * app = new QApplication(argc, argv);
-       QKernel kernel(argc, argv);
+       loglan::vlp::QKernel kernel(argc, argv);
        kernel.show();
        
        return app->exec();
-}
+}
\ No newline at end of file
index a07b55b91e24aaae7b530d785ce7bab0376a5638..7213b461a9a54d996923b19cfe45a4785b588cfb 100644 (file)
@@ -55,6 +55,9 @@
 #define NORM_COL       2
 
 
+namespace loglan {
+namespace vlp {
+
 /**
  * Interpreter slot
  */
@@ -187,4 +190,7 @@ private slots:
        void on_actionUnlock_console_triggered();
 };
 
+}
+}
+
 #endif /* VLP_KERNEL_H */
index 6f97a764bca4408c81bd6cd10062fa981a771cb5..409e191cf227a15deb84f3016fec0d0404c200a2 100644 (file)
@@ -2,6 +2,9 @@
 
 #include "kill_interpreter_dialog.h"
 
+namespace loglan {
+namespace vlp {
+
 KillInterpreterDialog::KillInterpreterDialog(QWidget * parent)
        : QDialog(parent, Qt::Dialog)
 {
@@ -16,3 +19,6 @@ int KillInterpreterDialog::getInterpreterId()
 {
        return interpreterId->text().toInt();
 }
+
+}
+}
index 5511d61206907141361fb4d9d6f4d5a492e07933..a7eabdffab8c2c94e9f906c819903ed4f912c6d5 100644 (file)
@@ -5,6 +5,9 @@
 
 #include "ui/kill_dialog.h"
 
+namespace loglan {
+namespace vlp {
+
 /**
  * Kill Interpreter Dialog class
  */
@@ -16,4 +19,7 @@ public:
        int getInterpreterId();
 };
 
+}
+}
+
 #endif /* _VLP_KERNEL_KILLINTERPRETERDIALOG_H */
index e4814e05603499e6d31b8dd5645ca978d4abb705..8f71c0a9ba84956273514ffe7512357ec95d5d38 100644 (file)
@@ -2,6 +2,9 @@
 
 #include "lock.h"
 
+namespace loglan {
+namespace vlp {
+
 LockDialog::LockDialog(QWidget * parent)
        : QDialog(parent, Qt::Dialog)
 {
@@ -22,3 +25,6 @@ void LockDialog::retype()
        label->setText("Retype");
        lineEdit->setText("");
 }
+
+}
+}
index 152137fee719f277a33db7375c2ff37b3332008e..2c29f0a779e2dc1eeb7d44a3ec1ecceaa69b9eb8 100644 (file)
@@ -5,6 +5,9 @@
 
 #include "ui/lock_dialog.h"
 
+namespace loglan {
+namespace vlp {
+
 /**
  * Lock Dialog class
  */
@@ -17,4 +20,7 @@ public:
        void retype();
 };
 
+}
+}
+
 #endif /* _VLP_KERNEL_LOCKDIALOG_H */
index 5830ca02b94c05d59802f75ac5a6ba0124453799..dc116520adf0b33506be1f87a55b1fa57eb98e65 100644 (file)
@@ -4,6 +4,9 @@
 #include "vlp/config.h"
 #include "options.h"
 
+namespace loglan {
+namespace vlp {
+
 OptionsDialog::OptionsDialog(QString configFilePath, QWidget * parent)
        : QDialog(parent)
 {
@@ -130,3 +133,6 @@ void OptionsDialog::saveConfig(const char * fname)
        }
        config_destroy(&cfg);
 }
+
+}
+}
index ecb73e317e0e505d58de1ab185f32820be2c85ee..cc73b04b9214034e7a733b67c311e95b2ae1775b 100644 (file)
@@ -5,6 +5,9 @@
 
 #include "ui/optionsdialog.h"
 
+namespace loglan {
+namespace vlp {
+
 /**
  * Options Dialog class
  */
@@ -27,4 +30,7 @@ private slots:
        void on_delConnectionButton_clicked();
 };
 
+}
+}
+
 #endif /* _VLP_KERNEL_OPTIONS_H */