mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-05-01 08:19:51 -05:00
Cleanup Launcher config comments, unecessary changes, etc.
This commit is contained in:
@@ -23,8 +23,6 @@
|
||||
****************************************************************************************/
|
||||
|
||||
#include <QApplication>
|
||||
#include <QCommandLineParser>
|
||||
|
||||
#include <QFile>
|
||||
|
||||
#include "mainwindow.h"
|
||||
@@ -165,12 +163,11 @@ QScrollBar::add-page, QScrollBar::sub-page {
|
||||
}
|
||||
)style";
|
||||
|
||||
|
||||
int main(int argc, char** argv) {
|
||||
QApplication app(argc, argv);
|
||||
app.setStyleSheet(style);
|
||||
|
||||
MainWindow window;
|
||||
|
||||
MainWindow window;
|
||||
window.show();
|
||||
|
||||
return app.exec();
|
||||
|
||||
@@ -233,11 +233,6 @@ void MainWindow::configureLogging() {
|
||||
}
|
||||
#endif // GHOUL_LOGGING_ENABLE_TRACE
|
||||
|
||||
// printf("%d", _optionParser->value("d").toInt());
|
||||
// ghoul::logging::LogManager::initialize(static_cast<ghoul::logging::LogLevel>(_optionParser->value("d").toInt()));
|
||||
// LogMgr.addLog( std::make_unique< ghoul::logging::ConsoleLog >() );
|
||||
|
||||
|
||||
}
|
||||
|
||||
void MainWindow::initialize() {
|
||||
|
||||
@@ -82,40 +82,5 @@ private:
|
||||
QCommandLineParser* _optionParser;
|
||||
};
|
||||
|
||||
//class MainWindow : public QWidget {
|
||||
//Q_OBJECT
|
||||
//public:
|
||||
// MainWindow();
|
||||
// ~MainWindow();
|
||||
//
|
||||
// std::string nextTarget() const;
|
||||
//
|
||||
//public slots:
|
||||
// void sendScript(QString script);
|
||||
//
|
||||
//private slots:
|
||||
// void onConnect(QString host, QString port);
|
||||
// void onDisconnect();
|
||||
//
|
||||
// void onSocketConnected();
|
||||
// void onSocketDisconnected();
|
||||
//
|
||||
// void readTcpData();
|
||||
// void handleStatusMessage(QByteArray data);
|
||||
// void handlePlaybook(QByteArray data);
|
||||
//
|
||||
// void fullyConnected();
|
||||
//
|
||||
//private:
|
||||
// ConfigurationWidget* _configurationWidget;
|
||||
// ControlWidget* _timeControlWidget;
|
||||
// InformationWidget* _informationWidget;
|
||||
// TimelineWidget* _timelineWidget;
|
||||
//
|
||||
// QTcpSocket* _socket;
|
||||
//
|
||||
// bool _hasHongKangTimeline = false;
|
||||
// bool _hasLabelTimeline = false;
|
||||
//};
|
||||
|
||||
#endif // __OPENSPACE_APP_LAUNCHER___MAINWINDOW___H__
|
||||
|
||||
Reference in New Issue
Block a user