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

Class Index

kgraph'KGraphShell (./koffice/kgraph/kgraph_shell.h:27)

class KGraphShell : public KoMainWindow {

    Q_OBJECT

public:
    KGraphShell(const char *name=0);
    ~KGraphShell();

    QString nativeFormatPattern() const { return "*.kgr"; }
    QString nativeFormatName() const { return "KGraph"; }

protected:
    virtual KoDocument *createDoc();
};

kgraph'KGraphShell::KGraphShell() (./koffice/kgraph/kgraph_shell.cc:26)

KGraphShell::KGraphShell(const char *name)
                         : KoMainWindow(KGraphFactory::global(), name) {
    resize(500, 350);
}


kgraph'KGraphShell::~KGraphShell() (./koffice/kgraph/kgraph_shell.cc:31)

KGraphShell::~KGraphShell() {
}


kgraph'KGraphShell::createDoc() (./koffice/kgraph/kgraph_shell.cc:34)

KoDocument *KGraphShell::createDoc() {
    return new KGraphPart;
}