Source Code (Use browser search to find items of interest.)

Class Index

kformula'KFormulaApp (./koffice/kformula/notsoold/kformula_main.h:17)

class KFormulaApp : public OPApplication
{
    Q_OBJECT
public:
    KFormulaApp( int argc, char** argv );
    ~KFormulaApp();
    
    /**
     * Startup function.
     */
    virtual void start();
};

kformula'KFormulaApp::KFormulaApp() (./koffice/kformula/kformula_main.cc:18)

KFormulaApp::KFormulaApp( int &argc, char** argv ) : 
  KoApplication( argc, argv, "kformula" )
{
}


kformula'KFormulaApp::~KFormulaApp() (./koffice/kformula/kformula_main.cc:23)

KFormulaApp::~KFormulaApp()
{
}


kformula'KFormulaApp::createNewShell() (./koffice/kformula/kformula_main.h:17)

  KoMainWindow* createNewShell() { return new KFormulaShell; }
};

kformula'KFormulaApp::KFormulaApp() (./koffice/kformula/notsoold/kformula_main.cc:21)

KFormulaApp::KFormulaApp( int argc, char** argv ) : 
    OPApplication( argc, argv, "kformula" )
{
    getLocale()->insertCatalogue("koffice");
}


kformula'KFormulaApp::~KFormulaApp() (./koffice/kformula/notsoold/kformula_main.cc:27)

KFormulaApp::~KFormulaApp()
{
}


kformula'KFormulaApp::start() (./koffice/kformula/notsoold/kformula_main.cc:31)

void KFormulaApp::start()
{
    koScanParts();

    // Are we going to create a GUI ?
    if ( g_bWithGUI )
	{
	    KFormulaShell* m_pShell;
	    // Create a GUI
	    m_pShell = new KFormulaShell;
	    // Allow status/menu/toolbars
	    m_pShell->enableMenuBar();
	    m_pShell->PartShell_impl::enableStatusBar();
	    m_pShell->enableToolBars();
	    // Display
	    m_pShell->show();
	}
}