You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
635 B
36 lines
635 B
15 years ago
|
#include <kxmlguiclient.h>
|
||
|
#include <kapplication.h>
|
||
|
#include <kconfig.h>
|
||
|
|
||
|
|
||
|
#include "toplevel.h"
|
||
|
#include "core.h"
|
||
|
|
||
|
#include "simplemainwindow.h"
|
||
|
|
||
|
KDevMainWindow *TopLevel::s_instance = 0;
|
||
|
|
||
|
bool TopLevel::mainWindowValid()
|
||
|
{
|
||
|
return s_instance != 0;
|
||
|
}
|
||
|
|
||
|
KDevMainWindow *TopLevel::getInstance()
|
||
|
{
|
||
|
if (!s_instance)
|
||
|
{
|
||
|
SimpleMainWindow *mainWindow = new SimpleMainWindow(0, "SimpleMainWindow");
|
||
|
s_instance = mainWindow;
|
||
|
mainWindow->init();
|
||
|
kapp->setMainWidget(mainWindow);
|
||
|
}
|
||
|
|
||
|
return s_instance;
|
||
|
}
|
||
|
|
||
|
void TopLevel::invalidateInstance(KDevMainWindow *instance)
|
||
|
{
|
||
|
if ( s_instance == instance )
|
||
|
s_instance = 0;
|
||
|
}
|