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.
piklab/src/libgui/new_dialogs.h

62 lines
1.7 KiB

/***************************************************************************
* Copyright (C) 2005-2007 Nicolas Hadacek <hadacek@kde.org> *
* Copyright (C) 2003-2004 Alain Gibaud <alain.gibaud@free.fr> *
* *
* 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 <tqlineedit.h>
#include <tqcheckbox.h>
#include <tqcombobox.h>
#include <tqlabel.h>
#include <tqlayout.h>
#include <kcombobox.h>
#include "common/global/purl.h"
#include "common/gui/dialog.h"
class Project;
//----------------------------------------------------------------------------
class NewDialog : public Dialog
{
Q_OBJECT
TQ_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
TQ_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