fixes #484 - issues with ssl status indicator
[quassel.git] / src / qtui / monoapplication.h
index 59d3747..de7963e 100644 (file)
@@ -1,5 +1,5 @@
 /***************************************************************************
- *   Copyright (C) 2005-08 by the Quassel IRC Team                         *
+ *   Copyright (C) 2005-09 by the Quassel Project                          *
  *   devel@quassel-irc.org                                                 *
  *                                                                         *
  *   This program is free software; you can redistribute it and/or modify  *
 
 #include "qtuiapplication.h"
 
+class ClientSyncer;
 class CoreApplicationInternal;
 
 class MonolithicApplication : public QtUiApplication {
+  Q_OBJECT
+public:
+  MonolithicApplication(int &, char **);
+  ~MonolithicApplication();
 
-  public:
-    MonolithicApplication(int &, char **);
-    ~MonolithicApplication();
+  bool init();
 
-    bool init();
+private slots:
+  void newClientSyncer(ClientSyncer *syncer);
+  void startInternalCore(ClientSyncer *syncer);
 
-  private:
-    CoreApplicationInternal *_internal;
+private:
+  CoreApplicationInternal *_internal;
+  bool _internalInitDone;
 };
 
 #endif