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.
tdegraphics/kpovmodeler/pmfiledialog.h

62 lines
2.0 KiB

/*
**************************************************************************
description
--------------------
copyright : (C) 2003 by Andreas Zehender
email : zehender@kde.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 PMFILEDIALOG_H
#define PMFILEDIALOG_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include "pmiomanager.h"
#include <tdefiledialog.h>
class PMPart;
/**
* File dialog used for the import and export action.
*
* The filters will be set automatically dependent on the
* supported file formats
* @see PMIOManager
*/
class PMFileDialog : public KFileDialog
{
Q_OBJECT
public:
/**
* Default constructor, use the static methods
* @ref getImportFileName or @ref getExportFileName instead
*/
PMFileDialog( const TQString& startDir, const TQString& filter, TQWidget* parent, const char* name, bool modal );
/**
* Opens a modal file dialog and returns a selected file and the chosen
* file format.
*/
static TQString getImportFileName( TQWidget* parent, PMPart* part, PMIOFormat*& format );
/**
* Opens a modal file dialog and returns a selected file and the chosen
* file format and filter.
*/
static TQString getExportFileName( TQWidget* parent, PMPart* part,
PMIOFormat*& format, TQString& filter );
};
#endif