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

Class Index

killustrator'KIllustratorShell (./koffice/killustrator/koffice/KIllustrator_shell.h:25)

class KIllustratorShell : public KoMainWindow
{
    Q_OBJECT
public:
    KIllustratorShell( const char* name = 0 );
    ~KIllustratorShell();

    QString nativeFormatPattern() const { return "*.kil"; }
    QString nativeFormatName() const { return "killustrator"; }

 public slots:
    void slotFilePrint();
	
protected:
    virtual KoDocument* createDoc();
};

killustrator'KIllustratorShell::KIllustratorShell() (./koffice/killustrator/koffice/KIllustrator_shell.cc:27)

KIllustratorShell::KIllustratorShell( const char* name )
    : KoMainWindow( KIllustratorFactory::global(), name )
{
    resize( 800, 600 );
}


killustrator'KIllustratorShell::~KIllustratorShell() (./koffice/killustrator/koffice/KIllustrator_shell.cc:33)

KIllustratorShell::~KIllustratorShell()
{
}


killustrator'KIllustratorShell::createDoc() (./koffice/killustrator/koffice/KIllustrator_shell.cc:37)

KoDocument* KIllustratorShell::createDoc()
{
    return new KIllustratorDocument;
}


killustrator'KIllustratorShell::slotFilePrint() (./koffice/killustrator/koffice/KIllustrator_shell.cc:42)

void KIllustratorShell::slotFilePrint()
{
    ((KIllustratorView*)rootView())->printDlg();
}