/*************************************************************************** * Copyright (C) 2005-2007 Nicolas Hadacek * * Copyright (C) 2003-2004 Alain Gibaud * * * * 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 NEW_DIALOGS_H #define NEW_DIALOGS_H #include #include #include #include #include #include #include "common/global/purl.h" #include "common/gui/dialog.h" class Project; //---------------------------------------------------------------------------- class NewDialog : public Dialog { Q_OBJECT public: NewDialog(const TQString &caption, TQWidget *parent); protected: TQGridLayout *_top; TQLabel *_fLabel; TQLineEdit *_filename, *_dir; virtual TQString startDir() const = 0; private slots: void changed(); void browse(); }; //---------------------------------------------------------------------------- class NewFileDialog : public NewDialog { Q_OBJECT public: NewFileDialog(Project *project, TQWidget *parent); PURL::Url url() const; bool addToProject() const { return (_project ? _add->isChecked() : false); } private: Project *_project; TQCheckBox *_add; virtual TQString startDir() const; }; #endif