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.
ktechlab/src/gui/outputmethoddlg.h

100 lines
2.8 KiB

/***************************************************************************
* Copyright (C) 2003-2004 by David Saxton *
* david@bluehaze.org *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
***************************************************************************/
#ifndef OUTPUTMETHODDLG_H
#define OUTPUTMETHODDLG_H
#include <kdialogbase.h>
#include <kurl.h>
class TextDocument;
class KTechlab;
class MicroSelectWidget;
class OutputMethodDlg;
class OutputMethodWidget;
class OutputMethodInfo
{
public:
class Method
{
public:
enum Type
{
Direct,
SaveAndForget,
SaveAndLoad
};
};
OutputMethodInfo();
void initialize( OutputMethodDlg * dlg );
Method::Type method() const { return m_method; }
void setMethod( Method::Type method ) { m_method = method; }
bool addToProject() const { return m_bAddToProject; }
void setAddToProject( bool add ) { m_bAddToProject = add; }
TQString picID() const { return m_picID; }
void setPicID( const TQString & id ) { m_picID = id; }
KURL outputFile() const { return m_outputFile; }
void setOutputFile( const KURL & outputFile ) { m_outputFile = outputFile; }
protected:
Method::Type m_method;
bool m_bAddToProject;
TQString m_picID;
KURL m_outputFile;
};
/**
@author David Saxton
*/
class OutputMethodDlg : public KDialogBase
{
TQ_OBJECT
public:
/**
* @param Caption The caption of the dialog window
* @param inputURL Used for saving/restoring previous options the user has selected for this file; set this to null if temporary file
* @param showPICSelect Whether to show the combo boxes for selecting a PIC
*/
OutputMethodDlg( const TQString & caption, const KURL & inputURL, bool showPICSelect = false, TQWidget *parent = 0, const char *name = 0);
~OutputMethodDlg();
void setOutputExtension( const TQString & outputExtension );
void setFilter( const TQString &filter );
void setMethod( OutputMethodInfo::Method::Type m );
void setOutputFile( const KURL & out );
void setPicID( const TQString & id );
virtual void reject();
virtual void accept();
bool isAccepted() const { return m_bAccepted; }
OutputMethodInfo info() const { return m_outputMethodInfo; }
MicroSelectWidget * microSelect() const;
protected:
OutputMethodWidget *m_widget;
TQString m_outputExtension;
KURL m_inputURL;
OutputMethodInfo m_outputMethodInfo;
bool m_bAccepted;
friend class OutputMethodInfo;
};
#endif