summaryrefslogtreecommitdiffstats
path: root/client/browser/src/mainwindow.h
diff options
context:
space:
mode:
Diffstat (limited to 'client/browser/src/mainwindow.h')
-rw-r--r--client/browser/src/mainwindow.h13
1 files changed, 9 insertions, 4 deletions
diff --git a/client/browser/src/mainwindow.h b/client/browser/src/mainwindow.h
index e4e02fa3..664d2f00 100644
--- a/client/browser/src/mainwindow.h
+++ b/client/browser/src/mainwindow.h
@@ -1,8 +1,12 @@
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
-#define COMMAND "command:"
-#define COMMAND_WITH_CONFIRMATION "commandwithconfirmation:"
+#define COMMAND "command"
+#define COMMAND_CONFIRM "command+confirm"
+#define COMMAND_WITH_CONFIRMATION "commandwithconfirmation" // Backwards compatibility
+#define COMMAND_OUTPUT "command+output"
+#define COMMAND_CONFIRM_OUTPUT "command+confirm+output"
+#define COMMAND_OUTPUT_CONFIRM "command+output+confirm"
#define ENVIRONMENT "OGLOGFILE,ogactiveadmin,DEFAULTSPEED"
#include <QWidget>
@@ -41,7 +45,7 @@ class MainWindow : public QMainWindow
void slotWebLoadStarted();
void slotWebLoadFinished(bool ok);
void slotWebLoadProgress(int progress);
- void slotSslErrors(QNetworkReply* reply);
+ void slotSslErrors(QNetworkReply* reply);
// Funciones que manejan cada vez que el proceso hace algo
void slotProcessStarted();
@@ -62,12 +66,13 @@ class MainWindow : public QMainWindow
protected:
int readEnvironmentValues();
void print(QString s);
+ void write(QString s);
void captureOutputForStatusBar(QString output);
void startProgressBar();
void finishProgressBar();
void executeCommand(QString &string);
QString readSpeed();
-
+ void showErrorMessage(QString string);
protected:
QWebView *m_web;