]> git.sur5r.net Git - bacula/bacula/blobdiff - bacula/src/qt-console/main.cpp
dhb forgot to remove a couple of debugging printf's
[bacula/bacula] / bacula / src / qt-console / main.cpp
index bc54f0551df282b9d7d65dee8dcb1e5529799b17..9c04b22997e29c878e990cd724a86e35d38bfaf9 100644 (file)
@@ -1,7 +1,7 @@
 /*
    Bacula® - The Network Backup Solution
 
-   Copyright (C) 2007 Free Software Foundation Europe e.V.
+   Copyright (C) 2007-2007 Free Software Foundation Europe e.V.
 
    The main author of Bacula is Kern Sibbald, with contributions from
    many others, a complete list can be found in the file AUTHORS.
    (FSFE), Fiduciary Program, Sumatrastrasse 25, 8006 Zürich,
    Switzerland, email:ftf@fsfeurope.org.
 */
+/*
+ *   Version $Id$
+ *
+ *  Main program for bat (qt-console)
+ *
+ *   Kern Sibbald, January MMVII
+ *
+ */ 
+
 
 #include <QApplication>
-#include "console.h"
+#include "bat.h"
 
+bool commDebug = false;
+MainWin *mainWin;
+QApplication *app;
 
-/* Imported functions */
-int authenticate_director(JCR *jcr, DIRRES *director, CONRES *cons);
 
 /* Forward referenced functions */
 void terminate_console(int sig);                                
@@ -43,8 +53,6 @@ static int check_resources();
 /* Static variables */
 static char *configfile = NULL;
 
-MainWindow *mainWin;
-
 int main(int argc, char *argv[])
 {
 
@@ -53,12 +61,9 @@ int main(int argc, char *argv[])
    bool test_config = false;
 
 
-   QApplication app(argc, argv);        
-   app.setQuitOnLastWindowClosed(true);
-
-   mainWin = new MainWindow;
+   app = new QApplication(argc, argv);        
+   app->setQuitOnLastWindowClosed(true);
 
-   mainWin->show();
 
 #ifdef ENABLE_NLS
    setlocale(LC_ALL, "");
@@ -122,7 +127,6 @@ int main(int argc, char *argv[])
    }
 
    parse_config(configfile);
-   set_text("Configuration read.\n");
 
    if (init_crypto() != 0) {
       Emsg0(M_ERROR_TERM, 0, _("Cryptography library initialization failed.\n"));
@@ -132,7 +136,10 @@ int main(int argc, char *argv[])
       Emsg1(M_ERROR_TERM, 0, _("Please correct configuration file: %s\n"), configfile);
    }
 
-   return app.exec();
+   mainWin = new MainWin;
+   mainWin->show();
+
+   return app->exec();
 }
 
 void terminate_console(int sig)
@@ -157,6 +164,7 @@ PROG_COPYRIGHT
    exit(1);
 }
 
+#ifdef xxx
 /*
  * Call-back for reading a passphrase for an encrypted PEM file
  * This function uses getpass(), which uses a static buffer and is NOT thread-safe.
@@ -175,6 +183,7 @@ static int tls_pem_callback(char *buf, int size, const void *userdata)
    return 0;
 #endif
 }
+#endif
 
 
 /*