Sophie

Sophie

distrib > Mandriva > 2011.0 > i586 > media > contrib-release-debug > by-pkgid > 762165ef07690bb9a218ccacf332a7fd > files > 44

birt-debug-1.2.2-4mdv2011.0.i586.rpm

#ifndef _OUTPUTOPTIONSWIDGET_H
#define _OUTPUTOPTIONSWIDGET_H

#include <qvbox.h>
#include <qstring.h>

class OutputOptionsWidget : public QVBox
{
	Q_OBJECT
	
	public:
		OutputOptionsWidget ( QWidget * parent = NULL, const char * name = NULL, WFlags flags = 0 );

		QString GetOutputDirectory ( ) const;
		QString GetOutputPrefix ( ) const;
		QString GetOutputSuffix ( ) const;

	signals:
		void DirectoryChanged ( const QString & );
		
	private:
		QWidget * m_output, * m_naming;
};

#endif