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.
134 lines
3.9 KiB
134 lines
3.9 KiB
/* This file is part of the KDE project
|
|
Copyright (C) 2003-2005 Jaroslaw Staniek <js@iidea.pl>
|
|
|
|
This library is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU Library General Public
|
|
License as published by the Free Software Foundation; either
|
|
version 2 of the License, or (at your option) any later version.
|
|
|
|
This library is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
Library General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Library General Public License
|
|
along with this library; see the file COPYING.LIB. If not, write to
|
|
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
* Boston, MA 02110-1301, USA.
|
|
*/
|
|
|
|
#ifndef _KexiStartupFileDialog_h_
|
|
#define _KexiStartupFileDialog_h_
|
|
|
|
#include <tdefiledialog.h>
|
|
|
|
#ifdef TQ_WS_WIN
|
|
# include "KexiStartupFileDialogBase_win.h"
|
|
#else
|
|
typedef KFileDialog KexiStartupFileDialogBase;
|
|
#endif
|
|
|
|
|
|
//! @short Widget for opening/saving files supported by Kexi
|
|
class KEXIMAIN_EXPORT KexiStartupFileDialog : public KexiStartupFileDialogBase
|
|
{
|
|
Q_OBJECT
|
|
|
|
|
|
public:
|
|
/*! Dialog mode:
|
|
- Opening opens existing database (or shortcut)
|
|
- SavingFileBasedDB saves file-based database file
|
|
- SavingServerBasedDB saves server-based (shortcut) file
|
|
- CustomOpening can be used for opening other files, like CSV
|
|
*/
|
|
enum Mode {
|
|
Opening = 1,
|
|
SavingFileBasedDB = 2,
|
|
SavingServerBasedDB = 4,
|
|
Custom = 256
|
|
};
|
|
|
|
KexiStartupFileDialog(
|
|
const TQString& startDirOrVariable, int mode, TQWidget *parent=0, const char *name=0);
|
|
|
|
virtual ~KexiStartupFileDialog();
|
|
|
|
/*! Helper. Displays "The file %1 already exists. Do you want to overwrite it?" yes/no message box.
|
|
\a parent is used as a parent of the KMessageBox.
|
|
\return true if \a filePath file does not exists or user has agreed on overwriting,
|
|
false in user do not want to overwrite. */
|
|
static bool askForOverwriting(const TQString& filePath, TQWidget *parent = 0);
|
|
|
|
void setMode(int mode);
|
|
|
|
TQStringList additionalFilters() const;
|
|
|
|
//! Sets additional filters list, e.g. "text/x-csv"
|
|
void setAdditionalFilters(const TQStringList &mimeTypes);
|
|
|
|
TQStringList excludedFilters() const;
|
|
|
|
//! Excludes filters list
|
|
void setExcludedFilters(const TQStringList &mimeTypes);
|
|
|
|
// KURL currentURL();
|
|
TQString currentFileName();
|
|
|
|
//#ifndef TQ_WS_WIN
|
|
// KURLComboBox *locationWidget() const;
|
|
//#endif
|
|
//! just sets locationWidget()->setCurrentText(fn)
|
|
//! (and something similar on win32)
|
|
void setLocationText(const TQString& fn);
|
|
|
|
//! Sets default extension which will be added after accepting
|
|
//! if user didn't provided one. This method is usable when there is
|
|
//! more than one filter so there is no rule what extension should be selected
|
|
//! (by default first one is selected).
|
|
void setDefaultExtension(const TQString& ext) { m_defaultExtension = ext; }
|
|
|
|
/*! \return true if the current URL meets requies constraints
|
|
(i.e. exists or doesn't exist);
|
|
shows appropriate message box if needed. */
|
|
bool checkFileName();
|
|
// bool checkURL();
|
|
|
|
/*! If true, user will be asked to accept overwriting existing file.
|
|
This is true by default. */
|
|
void setConfirmOverwrites(bool set) { m_confirmOverwrites = set; }
|
|
|
|
virtual bool eventFilter ( TQObject * watched, TQEvent * e );
|
|
|
|
public slots:
|
|
virtual void show();
|
|
|
|
virtual void setFocus();
|
|
|
|
// Typing a file that doesn't exist closes the file dialog, we have to
|
|
// handle this case better here.
|
|
virtual void accept();
|
|
|
|
signals:
|
|
//entered file name is accepted
|
|
void accepted();
|
|
void rejected();
|
|
|
|
protected slots:
|
|
virtual void reject();
|
|
|
|
private:
|
|
void updateFilters();
|
|
|
|
// KURL m_lastUrl;
|
|
TQString m_lastFileName;
|
|
int m_mode;
|
|
TQStringList m_additionalMimeTypes, m_excludedMimeTypes;
|
|
TQString m_defaultExtension;
|
|
bool m_confirmOverwrites : 1;
|
|
bool m_filtersUpdated : 1;
|
|
};
|
|
|
|
#endif
|
|
|